/* ==========================================================================
   MULTITECH CONSULTING SARL - Official Web Application Design System
   Color Palette grounded in brand logo: Ocean Tech Cyan (#0091ca), Deep Blue (#04527b)
   ========================================================================== */

:root {
    /* Brand Theme Colors — bleu ciel/océan, plus clair et lumineux */
    --primary: #0ea5d8; /* Bleu ciel lumineux */
    --primary-hover: #0c8fba;
    --primary-glow: rgba(14, 165, 216, 0.35);
    --secondary: #ffba08; /* Warm amber */
    --accent-cyan: #5fd3f0;
    --accent-gold: #e09f3e;
    --accent-red: #e63946;
    --success: #17b7c4;
    
    
    /* Dark Mode Defaults — bleu marine allégé, plus le noir-bleu d'origine */
    --bg-main: #0c2c48;
    --bg-surface: #123657;
    --bg-card: rgba(21, 62, 96, 0.7);
    --border-color: rgba(14, 165, 216, 0.25);
    --border-hover: rgba(95, 211, 240, 0.55);
    --text-main: #f0f6fc;
    --text-muted: #a9c1d6;
    --text-heading: #ffffff;
    --shadow-glow: 0 10px 30px -10px rgba(14, 165, 216, 0.35);

    /* Fonts & Radii */
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', var(--font-sans);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Theme Overrides */
[data-theme="light"] {
    --bg-main: #f4f9fc;
    --bg-surface: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.9);
    --border-color: rgba(14, 165, 216, 0.18);
    --border-hover: rgba(14, 165, 216, 0.42);
    --text-main: #24384a;
    --text-muted: #62798d;
    --text-heading: #0c2c48;
    --shadow-glow: 0 10px 25px -5px rgba(14, 165, 216, 0.18);
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    line-height: 1.25;
    font-weight: 700;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}

.glass-panel:hover {
    border-color: var(--border-hover);
}

/* Text Gradients & Helpers */
.text-gradient {
    color: #7dd3fc;
}

.text-accent { color: var(--accent-cyan); }
.text-warning { color: var(--accent-gold); }
.text-danger { color: var(--accent-red); }
.text-success { color: var(--success); }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-lg {
    padding: 1.1rem 2.2rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 8px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 145, 202, 0.5);
    background: var(--primary-hover);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.btn-emergency {
    background: #e11d48;
    color: #ffffff;
}

.btn-emergency:hover {
    background: #f43f5e;
}

.btn-light {
    background: #ffffff;
    color: #071828;
    font-weight: 700;
}

.btn-light:hover {
    background: #e2e8f0;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.5); }
    50% { box-shadow: 0 0 0 12px rgba(225, 29, 72, 0); }
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: rgba(12, 44, 72, 0.82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .navbar-header {
    background: rgba(255, 255, 255, 0.92);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 2.5rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 48px;
    width: 48px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 2px solid var(--primary);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-heading);
    line-height: 1;
}

.brand-sub {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 1.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    color: var(--text-heading);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    color: var(--text-heading);
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.theme-toggle:hover {
    background: rgba(0, 145, 202, 0.18);
    border-color: var(--primary);
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

[data-theme="light"] .theme-toggle {
    background: rgba(7, 24, 40, 0.06);
    border-color: rgba(4, 82, 123, 0.22);
    color: var(--text-heading);
    box-shadow: 0 4px 12px rgba(4, 82, 123, 0.12);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 130px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: auto;
    margin-bottom: 4rem;
}

.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 145, 202, 0.15);
    border: 1px solid var(--primary-glow);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 145, 202, 0.7);
    animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(0, 145, 202, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(0, 145, 202, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 145, 202, 0); }
}

.hero-title {
    color: #ffffff;
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1.2rem;
}

.hero-description {
    font-size: 1.15rem;
    color: #c1ced9;
    margin-bottom: 2rem;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-metrics {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
    background: rgba(11, 34, 56, 0.65);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 1.2rem 1.8rem;
    border-radius: var(--radius-md);
    margin-top: 2.5rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
}

.metric-number span { font-size: 1.3rem; color: var(--primary); }

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.cert-metrics {
    background: rgba(4, 82, 123, 0.06);
    border: 1px solid var(--border-color);
    margin-top: 2rem;
    margin-bottom: 0;
}

.hero-card {
    padding: 2.2rem;
}

.card-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 210, 255, 0.12);
    color: var(--accent-cyan);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.hero-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

.hero-checklist i {
    color: var(--primary);
    font-size: 1.1rem;
}

.quick-call-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(4, 82, 123, 0.35);
    border: 1px solid var(--primary-glow);
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
}

.call-icon {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.call-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.call-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

/* ==========================================================================
   Sections Common Layout
   ========================================================================== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto;
}

/* Section header size overrides */
.services-section .section-subtitle,
.portfolio-section .section-subtitle {
    font-size: 38px;
    font-family: var(--font-sans);
    font-weight: 800;
}

.services-section .section-title,
.portfolio-section .section-title {
    font-size: 18px;
}

.calculator-section .section-title {
    font-size: 38px;
    color: var(--primary);
    font-family: var(--font-sans);
    font-weight: 800;
}

.calculator-section .section-subtitle {
    font-size: 18px;
    margin-top: 1.5rem;
    color: #071828;
    font-family: var(--font-heading);
}

.contact-section .section-title {
    font-family: var(--font-sans);
    color: var(--primary);
    font-weight: 800;
}

.contact-section .section-desc {
    color: #071828;
    font-family: var(--font-heading);
}

/* ==========================================================================
   Services Tabs Section
   ========================================================================== */
.services-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.tab-btn {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.9rem 1.6rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

.service-image-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-glow);
}

.service-image-box img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image-box:hover img {
    transform: scale(1.04);
}

.image-overlay-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(7, 24, 40, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--primary);
    color: var(--accent-cyan);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-details .service-category {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-details h3 {
    font-size: 2rem;
    margin: 0.4rem 0 1rem;
}

.service-details p {
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
}

.features-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-item i {
    font-size: 1.4rem;
    color: var(--accent-cyan);
    margin-top: 0.2rem;
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.feature-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

/* Services Section - Light Variant */
.services-section {
    background: var(--bg-main);
    color: #1e293b;
}

.services-section .section-title { color: #071828; font-family: var(--font-heading); }
.services-section .section-desc { color: #475569; }
.services-section .service-details h3 { color: #0f172a; }
.services-section .service-details p { color: #475569; }
.services-section .feature-item h4 { color: #0f172a; }
.services-section .feature-item p { color: #475569; }
.services-section .image-overlay-badge {
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    border-color: var(--primary);
}

.services-section .tab-btn {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #334155;
}

.services-section .tab-btn:hover,
.services-section .tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

/* ==========================================================================
   Calculator Section
   ========================================================================== */
.calculator-card {
    padding: 2.5rem;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

.calc-step-group {
    margin-bottom: 1.8rem;
}

.calc-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

.step-num {
    background: var(--primary);
    color: #ffffff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.calc-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.calc-chip {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.calc-chip i { font-size: 1.2rem; color: var(--primary); }

.calc-chip:hover, .calc-chip.active {
    border-color: var(--primary);
    background: rgba(0, 145, 202, 0.12);
    color: var(--accent-cyan);
}

.calc-chip.active i { color: var(--accent-cyan); }

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.urgency-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.radio-card {
    cursor: pointer;
}

.radio-card input { display: none; }

.radio-content {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 0.9rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.radio-content i { font-size: 1.3rem; color: var(--primary); }

.radio-content strong { font-size: 0.9rem; }

.radio-content span { font-size: 0.75rem; color: var(--text-muted); }

.radio-card input:checked + .radio-content, .radio-card.active .radio-content {
    border-color: var(--primary);
    background: rgba(0, 145, 202, 0.15);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    cursor: pointer;
}

.checkbox-item input { accent-color: var(--primary); width: 18px; height: 18px; }

.calc-summary-box {
    background: rgba(4, 82, 123, 0.25);
    border: 1px solid var(--primary-glow);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.summary-header i { font-size: 1.5rem; color: var(--accent-cyan); }

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
}

.summary-line span { color: var(--text-muted); }

.price-display-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-label { font-size: 0.82rem; color: var(--text-muted); }

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-cyan);
    margin: 0.3rem 0;
}

.price-note { font-size: 0.72rem; color: var(--text-muted); }

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.project-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-img-wrapper img {
    transform: scale(1.08);
}

.project-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(7, 24, 40, 0.85);
    backdrop-filter: blur(6px);
    color: var(--accent-cyan);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--primary);
}

.project-body {
    padding: 1.5rem;
}

.project-body h4 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.project-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 0.8rem;
}

.project-status-done { color: var(--success); font-weight: 600; }

/* ==========================================================================
   Certifications & Testimonials
   ========================================================================== */
.cert-grid {
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.cert-info h3 { font-size: 2rem; margin: 0.5rem 0 1rem; }

.cert-info p { color: var(--text-muted); margin-bottom: 1.8rem; }

.badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.cert-badge {
    background: rgba(0, 145, 202, 0.12);
    border: 1px solid var(--border-color);
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.partners-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.partners-intro p { color: var(--text-muted); margin-top: 0.8rem; }

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.partner-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.7rem;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(14, 165, 216, 0.12);
}

.partner-logo-box {
    width: 100%;
    height: 90px;
    background: rgba(14, 165, 216, 0.06);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
}

.partner-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-logo-box.placeholder-logo {
    border: 1px dashed var(--border-color);
    background: transparent;
}

.partner-logo-box.placeholder-logo span {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.partner-logo-box.placeholder-logo i {
    font-size: 1.4rem;
    color: var(--text-muted);
}

.partner-tag {
    background: rgba(14, 165, 216, 0.12);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-full);
}

.partner-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-heading);
    margin: 0;
}

.partner-card.partner-more {
    justify-content: center;
    border-style: dashed;
}

.partner-card.partner-more h4 {
    color: var(--text-muted);
    font-style: italic;
    font-weight: 600;
}

.testimonial-box {
    background: rgba(4, 82, 123, 0.2);
    border: 1px solid var(--primary-glow);
    padding: 2.2rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.quote-icon { font-size: 2.5rem; color: var(--primary); opacity: 0.4; }

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.testimonial-author strong { display: block; font-size: 1rem; }

.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Contact Info Panel (left, blue) */
.contact-info-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.2rem;
    padding: 2.5rem;
    background: linear-gradient(160deg, #0091ca 0%, #04527b 100%);
    color: #ffffff;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    overflow: hidden;
}

.contact-info-panel::before,
.contact-info-panel::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.contact-info-panel::before {
    width: 230px;
    height: 230px;
    right: -70px;
    bottom: -70px;
    background: rgba(140, 214, 255, 0.32);
}

.contact-info-panel::after {
    width: 140px;
    height: 140px;
    right: 25px;
    bottom: 35px;
    background: rgba(3, 60, 95, 0.5);
}

.info-panel-header h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.info-panel-header p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    position: relative;
    z-index: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: #ffffff;
}

.info-item strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.info-item span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
}

.info-socials {
    display: flex;
    gap: 0.7rem;
    position: relative;
    z-index: 1;
}

.social-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.social-circle:hover {
    background: #ffffff;
    color: #0091ca;
    transform: translateY(-3px);
}

/* Contact Form Card (right, white) */
.contact-form-card {
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.company-brand-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.8rem;
}

.contact-logo {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.company-brand-header h3 { font-size: 1.2rem; }

.company-brand-header span { font-size: 0.8rem; color: var(--primary); }

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 145, 202, 0.15);
    color: var(--accent-cyan);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }

.contact-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.4; }

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contact-form .form-group {
    margin-bottom: 1.4rem;
}

.contact-form .form-group label,
.contact-radio-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.35rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 0.7rem 0.2rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    border-radius: 0;
    color: #1e293b;
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #0091ca;
    box-shadow: none;
}

.contact-form .form-control::placeholder {
    color: #94a3b8;
}

.contact-form select.form-control {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230091ca' d='M1 0l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.3rem center;
    padding-right: 1.6rem;
}

/* Radio group (circular radios) */
.contact-radio-group {
    margin-bottom: 1.6rem;
}

.contact-radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    align-items: center;
}

.contact-radio {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    cursor: pointer;
    font-size: 0.92rem;
    color: #475569;
    transition: color 0.3s ease;
}

.contact-radio:hover { color: #0091ca; }

.contact-radio input { display: none; }

.radio-dot {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    position: relative;
    transition: border-color 0.3s ease;
}

.contact-radio input:checked + .radio-dot {
    border-color: #0091ca;
}

.contact-radio input:checked + .radio-dot::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #0091ca;
}

/* Submit action row */
.contact-form-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.contact-submit-btn {
    background: #0091ca;
    border-radius: 10px;
    padding: 0.9rem 2rem;
}

.contact-submit-btn:hover {
    background: #007bb0;
    transform: translateY(-2px);
}

.contact-form .form-feedback {
    margin: 0;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(0, 145, 202, 0.1);
    border: 1px dashed var(--primary);
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--accent-cyan);
}

.file-input { display: none; }

.file-name-preview {
    font-size: 0.8rem;
    color: var(--success);
    margin-top: 0.4rem;
    display: block;
}

.form-feedback {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    display: none;
}

.form-feedback.success {
    display: block;
    background: rgba(0, 145, 202, 0.15);
    border: 1px solid var(--success);
    color: var(--success);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    position: relative;
    background: #0d2338;
    border-top: 1px solid var(--border-color);
    padding: 70px 0 30px;
    overflow: hidden;
}

/* Forme décorative débordant sur le coin supérieur droit */
.footer-decor {
    position: absolute;
    top: -120px;
    right: -100px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 145, 202, 0.22) 0%, rgba(0, 145, 202, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

/* Niveau 1 : Grille de navigation (5 colonnes) */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 2rem;
    padding-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.footer-brand-col {
    max-width: 280px;
}

.footer-brand-col .company-brand-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.2rem;
}

.footer-brand-col .contact-logo {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.footer-brand-col .company-brand-header h3 {
    font-size: 1.15rem;
    color: #ffffff;
}

.footer-brand-col .company-brand-header span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.5px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-col h4 {
    font-size: 1.05rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent-cyan);
}

/* Niveau 2 : Barre d'actions & réseaux */
.footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    position: relative;
    z-index: 1;
}

.footer-socials-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-socials-label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.78);
}

.footer-socials {
    display: flex;
    gap: 0.6rem;
}

.footer-socials .social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-socials .social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-tools {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-lang-select {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.footer-lang {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    color: #f0f6fc;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    padding: 0.4rem 1.5rem 0.4rem 0.2rem;
    cursor: pointer;
    outline: none;
}

.footer-lang option {
    background: #0b2238;
    color: #f0f6fc;
}

.footer-lang-chevron {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

.footer-tools-sep {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.15);
}

.footer-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-size: 0.88rem;
    font-weight: 600;
}

.footer-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
}

.footer-btn-solid {
    background: #ffffff;
    color: #071828;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-size: 0.88rem;
    font-weight: 700;
}

.footer-btn-solid:hover {
    background: #e2e8f0;
    color: #071828;
}

/* Niveau 3 : Mentions légales */
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    position: relative;
    z-index: 1;
}

.footer-legal a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent-cyan);
}

/* ==========================================================================
   Modal
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-backdrop.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
}

.modal-close:hover { color: #ffffff; }

.modal-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.modal-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container, .service-grid, .calculator-grid, .cert-grid, .contact-grid, .footer-grid, .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }
    
    .hero-title { font-size: 2.4rem; }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-main);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-menu.active { left: 0; }
    
    .mobile-toggle { display: block; }

    .urgency-selector { grid-template-columns: 1fr; }
    
    .form-row { grid-template-columns: 1fr; }

    .contact-info-panel {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .contact-form-card {
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-actions {
        justify-content: center;
        text-align: center;
    }

    .footer-socials-block {
        flex-direction: column;
        align-items: center;
    }

    .footer-tools {
        justify-content: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* Dark Mode Section Header Fixes */
:root:not([data-theme="light"]) .connect-section .section-desc {
    color: #ffffff;
}

:root:not([data-theme="light"]) .services-section .section-title {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   CONNECT SECTION — uniquement des logos de réseaux sociaux
   ========================================================================== */
.connect-section {
    text-align: center;
}

.connect-social-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.4rem;
}

.social-platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    width: 112px;
    padding: 1.4rem 0.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-main);
    font-size: 0.78rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-glow);
}

.social-platform-link i {
    font-size: 1.7rem;
}

.social-platform-link:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.social-platform-link.wa i { color: #25d366; }
.social-platform-link.fb i { color: #3f7ae0; }
.social-platform-link.li i { color: var(--primary); }
.social-platform-link.ig i { color: #d9679a; }
.social-platform-link.x  i { color: var(--text-heading); }
.social-platform-link.tel i, .social-platform-link.mail i { color: var(--success); }

/* ==========================================================================
   PROCESS SECTION — "Comment se déroule une intervention"
   ========================================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.4rem;
    text-align: left;
}
.process-num {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.7;
    margin-bottom: 0.6rem;
}
.process-step i { font-size: 1.4rem; color: var(--primary); margin-bottom: 0.8rem; display: block; }
.process-step h4 { font-size: 1.02rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.88rem; color: var(--text-muted); }

/* ==========================================================================
   COMMITMENTS ROW (remplace les statistiques invérifiables)
   ========================================================================== */
.commitments-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.6rem;
}
.commitment-item { display: flex; align-items: flex-start; gap: 0.9rem; }
.commitment-item i { color: var(--primary); font-size: 1.15rem; margin-top: 0.2rem; width: 22px; text-align: center; }
.commitment-item strong { display: block; font-size: 0.96rem; color: var(--text-heading); margin-bottom: 0.15rem; }
.commitment-item span { font-size: 0.85rem; color: var(--text-muted); }

.testimonial-placeholder { border-style: dashed; }
.testimonial-placeholder .testimonial-text { font-style: normal; }

/* ==========================================================================
   PAGES LÉGALES (mentions, confidentialité, CGV)
   ========================================================================== */
.legal-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 8rem 0 5rem;
}
.legal-content h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.legal-content .legal-updated { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 2.5rem; }
.legal-content h2 { font-size: 1.2rem; margin: 2.2rem 0 0.8rem; }
.legal-content p, .legal-content li { color: var(--text-muted); font-size: 0.96rem; margin-bottom: 0.9rem; }
.legal-content ul { padding-left: 1.3rem; }
.legal-content a { color: var(--primary); }
.legal-back { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 2rem; font-weight: 600; color: var(--primary); }
.legal-placeholder { background: rgba(255,186,8,0.1); border: 1px dashed var(--secondary); border-radius: var(--radius-md); padding: 1rem 1.2rem; font-size: 0.88rem; color: var(--text-main); margin-bottom: 2rem; }
