/* ══════════════════════════════════════════════════════
   Jtech-Lab — Main CSS
   Toutes les variables de couleur sont injectées
   dynamiquement via le Customizer (functions.php)
══════════════════════════════════════════════════════ */

/* DEFAULTS (remplacés par le Customizer) */
:root {
    --blue:         #2166b0;
    --blue-mid:     #2166b0;
    --blue-light:   #3a8fd4;
    --orange:       #e8660a;
    --orange-light: #f58c2a;
    --dark:         #151c24;
    --dark-mid:     #1f2b38;
    --steel:        #2c3e52;
    --cream:        #f4f0ea;
    --warm-white:   #faf8f5;
    --text-dark:    #1a2330;
    --text-mid:     #4a5e72;
    --text-light:   #8a9db0;
    --border:       #d8dfe8;
    --font-head:    'Oswald', sans-serif;
    --font-body:    'Source Sans 3', sans-serif;
    --font-mono:    'Roboto Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--warm-white);
    color: var(--text-dark);
    font-family: var(--font-body);
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); }

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

/* ── NAVBAR ── */
#site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--dark);
    height: 68px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 4rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-logo {
    display: flex; align-items: center; gap: 0.8rem;
    text-decoration: none;
}

.logo-mark {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--blue-light), var(--orange));
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Custom logo image */
.nav-logo .custom-logo { height: 40px; width: auto; }

.logo-text {
    font-family: var(--font-head);
    font-size: 1.5rem; font-weight: 600;
    color: #fff; letter-spacing: 0.06em; text-transform: uppercase;
}
.logo-text span { color: var(--orange-light); }

.nav-links {
    display: flex; align-items: center;
    gap: 2.5rem; list-style: none;
    margin: 0; padding: 0;
}

.nav-links a {
    font-family: var(--font-head);
    font-size: 0.9rem; font-weight: 400;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.65); text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover,
.nav-links .current-menu-item > a { color: #fff; }

.nav-cta,
.nav-links .nav-cta a,
.nav-links li:last-child a {
    background: var(--orange) !important;
    color: #fff !important;
    padding: 0.5rem 1.4rem;
    border-radius: 3px;
    transition: background 0.2s !important;
}
.nav-cta:hover,
.nav-links li:last-child a:hover { background: var(--orange-light) !important; }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
    display: block; width: 24px; height: 2px;
    background: #fff; border-radius: 2px;
    transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    padding-top: 68px;
    position: relative; overflow: hidden;
}

/* Fond global : image d'atelier électronique (définie via Customizer ou CSS inline) */
.hero-bg-image {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    /* Image de fallback en SVG data-uri — atelier stylisé */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='800'%3E%3Crect fill='%230d1a25' width='1400' height='800'/%3E%3Crect fill='%23111f2e' x='0' y='400' width='1400' height='400'/%3E%3Crect fill='%231a2d42' x='50' y='440' width='500' height='20' rx='4'/%3E%3Crect fill='%231a2d42' x='50' y='490' width='400' height='20' rx='4'/%3E%3Crect fill='%230f1e30' x='60' y='470' width='480' height='15' rx='3'/%3E%3Ccircle fill='%2300d4ff' opacity='.15' cx='200' cy='350' r='120'/%3E%3Ccircle fill='%23e8660a' opacity='.12' cx='1100' cy='400' r='160'/%3E%3C/svg%3E");
}

.hero::after {
    content: '';
    position: absolute; top: 0; bottom: 0; left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, var(--blue-light), var(--orange));
    z-index: 3; transform: translateX(-50%);
}

/* Panneaux au-dessus du fond */
.hero-left,
.hero-right {
    position: relative;
    z-index: 2;
}

.hero-left {
    background: linear-gradient(160deg,
        rgba(21,28,36,0.92) 0%,
        rgba(33,102,176,0.82) 60%,
        rgba(33,102,176,0.88) 100%
    );
    backdrop-filter: blur(2px);
    padding: 6rem 4rem 5rem;
    display: flex; flex-direction: column; justify-content: center;
    overflow: hidden;
}
.hero-left::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(58,143,212,0.18); pointer-events: none;
}

.hero-right {
    background: linear-gradient(160deg,
        rgba(232,102,10,0.88) 0%,
        rgba(196,82,8,0.84) 50%,
        rgba(21,28,36,0.92) 100%
    );
    backdrop-filter: blur(2px);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 4rem 3rem;
}
.hero-right::before {
    content: '';
    position: absolute; top: -60px; left: -60px;
    width: 250px; height: 250px; border-radius: 50%;
    background: rgba(245,140,42,0.2);
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2); border-radius: 3px;
    padding: 0.4rem 0.9rem;
    font-family: var(--font-mono); font-size: 0.7rem;
    color: rgba(255,255,255,0.8); letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 2rem; width: fit-content;
}
.badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--orange-light);
    animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.4rem,4vw,4rem);
    font-weight: 700; color: #fff;
    text-transform: uppercase; line-height: 1.08;
    letter-spacing: 0.02em; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--orange-light); }

.hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1rem; font-weight: 300; line-height: 1.75;
    max-width: 420px; margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-white {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: var(--font-head); font-size: 0.95rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--blue); background: #fff;
    padding: 0.8rem 1.8rem; border-radius: 3px; text-decoration: none;
    transition: all 0.25s;
}
.btn-white:hover { background: var(--cream); box-shadow: 0 4px 20px rgba(0,0,0,0.2); transform: translateY(-2px); }

.btn-outline-white {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: var(--font-head); font-size: 0.95rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(255,255,255,0.35);
    padding: 0.8rem 1.8rem; border-radius: 3px; text-decoration: none;
    transition: all 0.25s;
}
.btn-outline-white:hover { border-color:#fff; color:#fff; background: rgba(255,255,255,0.08); }

.hero-stats {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1px; margin-top: 3rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px; overflow: hidden;
}
.stat-block { background: rgba(0,0,0,0.2); padding: 1.2rem; text-align: center; }
.stat-num {
    font-family: var(--font-head); font-size: 2rem;
    font-weight: 700; color: #fff; display: block; line-height:1; margin-bottom: 0.3rem;
}
.stat-label {
    font-size: 0.72rem; color: rgba(255,255,255,0.55);
    text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-mono);
}

.hero-visual-content { position: relative; z-index: 2; width: 100%; max-width: 420px; }
.hero-feature-title {
    font-family: var(--font-head); font-size: 1.4rem; font-weight: 500;
    color: #fff; text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 2rem; text-align: center;
}
.feature-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item {
    display: flex; align-items: center; gap: 1rem;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 4px;
    padding: 1rem 1.2rem; transition: background 0.25s, border-color 0.25s;
}
.feature-item:hover { background: rgba(0,0,0,0.35); border-color: rgba(255,255,255,0.25); }
.feature-emoji { font-size: 1.8rem; flex-shrink: 0; }
.feature-text-title {
    font-family: var(--font-head); font-size: 1rem; font-weight: 500;
    color: #fff; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.2rem;
}
.feature-text-sub { font-size: 0.82rem; color: rgba(255,255,255,0.6); font-weight: 300; }

/* ── TICKER ── */
.ticker {
    background: var(--dark); border-top: 3px solid var(--orange);
    overflow: hidden; height: 44px;
    display: flex; align-items: center;
}
.ticker-track {
    display: flex; animation: ticker 35s linear infinite; white-space: nowrap;
}
.ticker-item {
    font-family: var(--font-mono); font-size: 0.7rem;
    color: rgba(255,255,255,0.6); letter-spacing: 0.12em;
    text-transform: uppercase; flex-shrink: 0;
    padding: 0 2rem; border-right: 1px solid rgba(255,255,255,0.1);
}
.ticker-item.accent { color: var(--orange-light); }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SECTION BASE ── */
.section-wrap { padding: 6rem 4rem; }
.section-inner { max-width: 1240px; margin: 0 auto; }

.eyebrow {
    display: flex; align-items: center; gap: 0.8rem;
    font-family: var(--font-mono); font-size: 0.72rem;
    color: var(--blue-mid); letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 0.8rem; font-weight: 500;
}
.eyebrow::before { content:''; display:block; width:24px; height:2px; background: var(--orange); }

.section-h2 {
    font-family: var(--font-head); font-size: clamp(1.9rem,3vw,2.8rem);
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em;
    line-height: 1.1; color: var(--text-dark); margin-bottom: 0.8rem;
}
.section-h2 span { color: var(--blue-mid); }
.section-sub {
    color: var(--text-mid); font-size: 1rem; font-weight: 300;
    line-height: 1.75; max-width: 520px; margin-bottom: 3.5rem;
}

/* ── SERVICES ── */
.services-bg { background: var(--warm-white); }
.services-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.service-card {
    background: #fff; border: 1px solid var(--border); border-radius: 6px;
    padding: 2rem 1.8rem; position: relative; overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.service-card:hover {
    box-shadow: 0 8px 32px rgba(33,102,176,0.12);
    transform: translateY(-4px); border-color: var(--blue-light);
}
.service-card-top-line {
    position: absolute; top:0; left:0; right:0; height:3px;
    background: linear-gradient(90deg, var(--blue), var(--orange));
    transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.service-card:hover .service-card-top-line { transform: scaleX(1); }
.service-num {
    font-family: var(--font-mono); font-size: 0.65rem;
    color: var(--text-light); letter-spacing: 0.15em; margin-bottom: 1.2rem;
}
.service-icon-wrap {
    width:54px; height:54px;
    background: linear-gradient(135deg, rgba(26,78,138,0.08), rgba(232,102,10,0.08));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 1.2rem;
    border: 1px solid rgba(26,78,138,0.1);
}
.service-title {
    font-family: var(--font-head); font-size: 1.15rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--text-dark); margin-bottom: 0.7rem;
}
.service-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.2rem; }
.tag {
    font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--blue-mid);
    background: rgba(33,102,176,0.08); border: 1px solid rgba(33,102,176,0.15);
    padding: 0.2rem 0.6rem; border-radius: 2px;
}

/* ── ABOUT ── */
.about-bg { background: var(--dark); }
.about-inner-grid {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 6rem; align-items: center;
}
.about-eyebrow { color: var(--orange-light) !important; }
.about-eyebrow::before { background: var(--orange-light) !important; }
.about-h2 { color: #fff !important; }
.about-h2 span { color: var(--orange-light) !important; }
.about-body { color: rgba(255,255,255,0.6); font-size:0.95rem; font-weight:300; line-height:1.8; margin-bottom:1.5rem; }

.process-steps { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.process-step { display: flex; gap: 1.2rem; align-items: flex-start; }
.step-num {
    font-family: var(--font-head); font-size: 1.8rem; font-weight: 700;
    color: var(--orange); line-height: 1; flex-shrink: 0; width: 36px; margin-top: 2px;
}
.step-body-title {
    font-family: var(--font-head); font-size: 1rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.06em; color: #fff; margin-bottom: 0.3rem;
}
.step-body-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.6; }

.skills-panel {
    background: var(--dark-mid); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 2.5rem;
}
.skills-title {
    font-family: var(--font-head); font-size: 1rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5); margin-bottom: 2rem;
    padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.skill-row { margin-bottom: 1.4rem; }
.skill-row:last-of-type { margin-bottom: 0; }
.skill-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.skill-name {
    font-family: var(--font-head); font-size: 0.9rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.07em; color: #fff;
}
.skill-pct { font-family: var(--font-mono); font-size: 0.7rem; color: var(--orange-light); }
.skill-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.skill-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--blue-light), var(--orange-light)); }

.tech-logos { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.tech-badge {
    font-family: var(--font-mono); font-size: 0.65rem; color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 3px; padding: 0.3rem 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ── CONTACT ── */
.contact-bg { background: var(--cream); }
.contact-inner-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 5rem; align-items: start; }

.contact-form-wrap {
    background: #fff; border: 1px solid var(--border); border-radius: 8px;
    padding: 2.5rem; box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.form-title {
    font-family: var(--font-head); font-size: 1.3rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-dark); margin-bottom: 0.4rem;
}
.form-subtitle { font-size: 0.85rem; color: var(--text-light); margin-bottom: 2rem; font-weight: 300; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1rem; }
.form-label { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-mid); font-weight: 500; }
.form-input,
.form-textarea,
.form-select {
    background: var(--warm-white); border: 1.5px solid var(--border); border-radius: 4px;
    padding: 0.8rem 1rem; color: var(--text-dark); font-family: var(--font-body);
    font-size: 0.9rem; font-weight: 400; outline: none;
    transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--blue-mid);
    box-shadow: 0 0 0 3px rgba(33,102,176,0.1); background: #fff;
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-select { appearance: none; cursor: pointer; }

.form-status {
    border-radius: 4px; padding: 0; font-size: 0.9rem;
    font-weight: 500; transition: all 0.3s;
}
.form-status.success { background: #e8f5e9; color: #2e7d32; padding: 0.8rem 1rem; margin-bottom: 0.5rem; border: 1px solid #a5d6a7; }
.form-status.error   { background: #fce4ec; color: #c62828; padding: 0.8rem 1rem; margin-bottom: 0.5rem; border: 1px solid #ef9a9a; }

.form-submit {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: var(--font-head); font-size: 1rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #fff; background: var(--orange); border: none;
    padding: 0.9rem 2.2rem; cursor: pointer; border-radius: 4px;
    transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
    width: 100%; justify-content: center; margin-top: 0.5rem;
}
.form-submit:hover { background: var(--orange-light); box-shadow: 0 6px 24px rgba(232,102,10,0.3); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-sidebar-title {
    font-family: var(--font-head); font-size: 1.5rem; font-weight: 600;
    text-transform: uppercase; color: var(--text-dark); letter-spacing: 0.04em;
    line-height: 1.2; margin-bottom: 0.3rem;
}
.contact-sidebar-sub { font-size: 0.9rem; color: var(--text-mid); font-weight: 300; line-height: 1.7; margin-bottom: 1.5rem; }

.contact-card {
    display: flex; align-items: center; gap: 1rem;
    background: #fff; border: 1px solid var(--border); border-radius: 6px;
    padding: 1.2rem 1.4rem; transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-card:hover { border-color: var(--blue-light); box-shadow: 0 4px 16px rgba(33,102,176,0.1); }
.contact-card-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, rgba(26,78,138,0.1), rgba(232,102,10,0.1));
    border-radius: 6px; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.contact-card-label { font-family: var(--font-mono); font-size: 0.62rem; color: var(--text-light); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.2rem; }
.contact-card-value { font-family: var(--font-head); font-size: 0.95rem; font-weight: 500; color: var(--text-dark); letter-spacing: 0.02em; }
.contact-card-value a { text-decoration: none; color: inherit; }
.contact-card-value a:hover { color: var(--blue-mid); }

.promise-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.8rem; margin-top: 1rem; }
.promise-item {
    background: linear-gradient(135deg, var(--blue), var(--orange));
    border-radius: 5px; padding: 1rem; text-align: center;
}
.promise-icon { font-size: 1.3rem; margin-bottom: 0.4rem; }
.promise-text { font-family: var(--font-head); font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em; color: #fff; line-height: 1.3; }

/* ── FOOTER ── */
#site-footer {
    background: var(--dark);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--blue), var(--orange)) 1;
    padding: 3rem 4rem;
}
.footer-inner {
    max-width: 1240px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: #fff; }
.footer-logo span { color: var(--orange-light); }
.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-family: var(--font-mono); font-size: 0.68rem; color: rgba(255,255,255,0.4); text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-family: var(--font-mono); font-size: 0.63rem; color: rgba(255,255,255,0.25); letter-spacing: 0.05em; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .about-inner-grid { gap: 3.5rem; }
}

@media (max-width: 900px) {
    #site-nav { padding: 0 1.5rem; }
    .nav-hamburger { display: flex; }

    .nav-links {
        display: none; flex-direction: column;
        position: absolute; top: 68px; left: 0; right: 0;
        background: var(--dark); padding: 1.5rem;
        gap: 1.2rem; border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1rem; }

    .hero { grid-template-columns: 1fr; }
    .hero::after { display: none; }
    .hero-left { padding: 4rem 1.5rem 3rem; }
    .hero-right { padding: 3rem 1.5rem; }

    .services-grid { grid-template-columns: 1fr; }
    .about-inner-grid { grid-template-columns: 1fr; }
    .contact-inner-grid { grid-template-columns: 1fr; }

    .section-wrap { padding: 4rem 1.5rem; }
    #site-footer { padding: 2rem 1.5rem; }
    .footer-inner { flex-direction: column; text-align: center; gap: 1.2rem; }
    .footer-links { justify-content: center; }

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

@media (max-width: 480px) {
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .promise-strip { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
}
