/* =====================================================================
   RAMA SCHOONMAAK — Design System
   Modern, premium, clean. Built mobile-first.
   ===================================================================== */

/* ---------- Reset ---------- */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }

/* ---------- Tokens ---------- */
:root{
    --navy:#0E1A3C;
    --navy-700:#16245A;
    --primary:#2440A0;
    --primary-600:#1D3488;
    --primary-300:#7C8FD6;
    --accent:#15B4E6;
    --accent-600:#0E97C4;
    --accent-soft:#E6F6FC;
    --ink:#131730;
    --body:#535970;
    --muted:#8A90A6;
    --line:#E7EBF3;
    --line-soft:#F0F3F9;
    --bg:#FFFFFF;
    --bg-soft:#F6F8FC;
    --bg-tint:#EEF2FB;
    --success:#16A96A;
    --success-soft:#E4F6EE;

    --r-xs:8px; --r-sm:12px; --r-md:16px; --r-lg:22px; --r-pill:999px;

    --shadow-sm:0 1px 2px rgba(16,24,48,.06), 0 1px 3px rgba(16,24,48,.04);
    --shadow-md:0 10px 30px -12px rgba(16,24,48,.18);
    --shadow-lg:0 30px 60px -20px rgba(16,24,48,.28);

    --maxw:1180px;
    --ease:cubic-bezier(.22,.61,.36,1);
}

/* ---------- Base ---------- */
body{
    font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
    color:var(--body);
    background:var(--bg);
    line-height:1.7;
    font-size:17px;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
}
h1,h2,h3,h4{ color:var(--ink); line-height:1.15; font-weight:700; letter-spacing:-.02em; }
h1{ font-size:clamp(2.2rem,5vw,3.6rem); font-weight:800; }
h2{ font-size:clamp(1.7rem,3.5vw,2.6rem); }
h3{ font-size:1.25rem; }
strong{ color:var(--ink); font-weight:600; }

.container{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 24px; }

/* ---------- Section rhythm ---------- */
.section{ padding:96px 0; }
.section--soft{ background:var(--bg-soft); }
.section--tint{ background:var(--bg-tint); }
.section--navy{ background:var(--navy); color:#C7CEE6; }
.section--navy h2,.section--navy h3{ color:#fff; }

.section-head{ max-width:680px; margin:0 auto 56px; text-align:center; }
.section-head.left{ margin-left:0; text-align:left; }
.eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-size:.8rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
    color:var(--primary); background:var(--accent-soft);
    padding:7px 14px; border-radius:var(--r-pill); margin-bottom:18px;
}
.section--navy .eyebrow{ background:rgba(255,255,255,.08); color:#7FE3FF; }
.section-head p{ font-size:1.1rem; margin-top:14px; color:var(--body); }
.section--navy .section-head p{ color:#AEB7D6; }

/* ---------- Buttons ---------- */
.btn{
    display:inline-flex; align-items:center; justify-content:center; gap:10px;
    font-weight:600; font-size:1rem; line-height:1;
    padding:16px 28px; border-radius:var(--r-pill);
    transition:transform .18s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease);
    white-space:nowrap;
}
.btn svg{ width:18px; height:18px; }
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--primary); color:#fff; box-shadow:0 10px 24px -10px rgba(36,64,160,.7); }
.btn-primary:hover{ background:var(--primary-600); box-shadow:0 14px 30px -10px rgba(36,64,160,.75); }
.btn-dark{ background:var(--navy); color:#fff; }
.btn-dark:hover{ background:var(--navy-700); }
.btn-ghost{ background:#fff; color:var(--ink); border:1.5px solid var(--line); }
.btn-ghost:hover{ border-color:var(--primary-300); color:var(--primary); }
.btn-light{ background:#fff; color:var(--primary); }
.btn-wa{ background:#25D366; color:#fff; box-shadow:0 10px 24px -10px rgba(37,211,102,.7); }
.btn-wa:hover{ background:#1eb959; }
.btn-lg{ padding:18px 36px; font-size:1.05rem; }
.btn-block{ width:100%; }

.linklike{ color:var(--primary); font-weight:600; display:inline-flex; align-items:center; gap:7px; transition:gap .2s var(--ease); }
.linklike:hover{ gap:11px; }

/* ---------- Header ---------- */
.site-header{
    position:sticky; top:0; z-index:200;
    background:rgba(255,255,255,.85);
    backdrop-filter:saturate(180%) blur(14px);
    -webkit-backdrop-filter:saturate(180%) blur(14px);
    border-bottom:1px solid transparent;
    transition:border-color .3s, box-shadow .3s;
}
.site-header.scrolled{ border-color:var(--line); box-shadow:var(--shadow-sm); }
.nav{ display:flex; align-items:center; justify-content:space-between; height:76px; }
.brand{ display:flex; align-items:center; gap:11px; font-weight:800; font-size:1.45rem; color:var(--navy); letter-spacing:-.03em; }
.brand-mark{
    width:38px; height:38px; border-radius:11px;
    background:linear-gradient(135deg,var(--primary),var(--accent));
    display:flex; align-items:center; justify-content:center; color:#fff; flex:none;
    box-shadow:0 6px 16px -6px rgba(36,64,160,.6);
}
.brand-mark svg{ width:20px; height:20px; }
.brand span small{ display:block; font-size:.62rem; font-weight:600; letter-spacing:.18em; color:var(--muted); text-transform:uppercase; margin-top:-2px; }

.nav-menu{ display:flex; align-items:center; gap:6px; }
.nav-menu a.nav-link{
    font-size:.95rem; font-weight:500; color:var(--body);
    padding:10px 14px; border-radius:var(--r-xs); transition:color .2s, background .2s;
}
.nav-menu a.nav-link:hover{ color:var(--primary); background:var(--bg-soft); }
.nav-cta{ display:flex; align-items:center; gap:14px; margin-left:10px; }
.nav-phone{ font-weight:600; color:var(--navy); font-size:.95rem; display:inline-flex; align-items:center; gap:7px; }
.nav-phone svg{ width:16px; height:16px; color:var(--primary); }

.menu-toggle{ display:none; flex-direction:column; gap:5px; padding:8px; }
.menu-toggle span{ width:24px; height:2px; background:var(--navy); border-radius:2px; transition:.3s; }

/* ---------- Hero ---------- */
.hero{ position:relative; padding:72px 0 90px; background:linear-gradient(180deg,var(--bg-tint) 0%, #fff 78%); overflow:hidden; }
.hero::before{
    content:""; position:absolute; top:-180px; right:-160px; width:520px; height:520px; border-radius:50%;
    background:radial-gradient(circle at center, rgba(21,180,230,.18), transparent 65%); z-index:0;
}
.hero .container{ position:relative; z-index:1; display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }
.hero-badge{
    display:inline-flex; align-items:center; gap:9px; background:#fff; border:1px solid var(--line);
    padding:8px 16px; border-radius:var(--r-pill); font-size:.85rem; font-weight:600; color:var(--navy);
    box-shadow:var(--shadow-sm); margin-bottom:24px;
}
.hero-badge .dot{ width:9px; height:9px; border-radius:50%; background:var(--success); box-shadow:0 0 0 4px var(--success-soft); }
.hero h1{ margin-bottom:22px; }
.hero h1 .grad{ background:linear-gradient(120deg,var(--primary),var(--accent)); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.hero-lead{ font-size:1.18rem; max-width:540px; margin-bottom:34px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:30px; }
.hero-trust{ display:flex; flex-wrap:wrap; gap:10px 26px; }
.hero-trust span{ display:inline-flex; align-items:center; gap:9px; font-size:.93rem; font-weight:500; color:var(--body); }
.hero-trust svg{ width:18px; height:18px; color:var(--success); flex:none; }

/* Hero visual card */
.hero-visual{ position:relative; }
.quote-card{
    background:#fff; border:1px solid var(--line); border-radius:var(--r-lg);
    box-shadow:var(--shadow-lg); padding:28px; position:relative; z-index:2;
}
.quote-card .qc-top{ display:flex; align-items:center; justify-content:space-between; padding-bottom:18px; border-bottom:1px solid var(--line-soft); margin-bottom:18px; }
.qc-logo{ display:flex; align-items:center; gap:10px; font-weight:800; color:var(--navy); }
.qc-logo .brand-mark{ width:30px; height:30px; border-radius:9px; }
.qc-pill{ font-size:.72rem; font-weight:700; color:var(--success); background:var(--success-soft); padding:6px 12px; border-radius:var(--r-pill); }
.qc-row{ display:flex; align-items:center; gap:13px; padding:11px 0; }
.qc-ic{ width:38px; height:38px; border-radius:10px; background:var(--accent-soft); color:var(--primary); display:flex; align-items:center; justify-content:center; flex:none; }
.qc-ic svg{ width:19px; height:19px; }
.qc-row .qc-label{ font-size:.8rem; color:var(--muted); font-weight:500; }
.qc-row .qc-val{ font-weight:700; color:var(--ink); font-size:1.02rem; line-height:1.3; }
.qc-foot{ margin-top:16px; padding-top:18px; border-top:1px solid var(--line-soft); display:flex; align-items:center; justify-content:space-between; }
.qc-foot .qc-price small{ color:var(--muted); font-weight:500; font-size:.8rem; display:block; }
.qc-foot .qc-price b{ font-size:1.5rem; color:var(--navy); }
.hero-float{
    position:absolute; z-index:3; background:#fff; border:1px solid var(--line); border-radius:var(--r-md);
    box-shadow:var(--shadow-md); padding:14px 18px; display:flex; align-items:center; gap:12px;
}
.hero-float .hf-ic{ width:40px; height:40px; border-radius:10px; display:flex; align-items:center; justify-content:center; color:#fff; flex:none; }
.hero-float .hf-num{ font-weight:800; color:var(--ink); font-size:1.15rem; line-height:1; }
.hero-float .hf-txt{ font-size:.78rem; color:var(--muted); font-weight:500; }
.hero-float.f1{ top:-26px; left:-26px; }
.hero-float.f1 .hf-ic{ background:var(--primary); }
.hero-float.f2{ bottom:-26px; right:-22px; }
.hero-float.f2 .hf-ic{ background:var(--accent); }

/* ---------- Stat strip ---------- */
.stat-strip{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.stat{ text-align:center; padding:8px; }
.stat .num{ font-size:clamp(2rem,3.5vw,2.7rem); font-weight:800; color:var(--navy); letter-spacing:-.03em; line-height:1; }
.stat .num .accent{ color:var(--accent); }
.stat .lab{ margin-top:8px; font-size:.95rem; color:var(--body); font-weight:500; }
.section--navy .stat .num{ color:#fff; }
.section--navy .stat .lab{ color:#AEB7D6; }

/* ---------- Generic grid ---------- */
.grid{ display:grid; gap:24px; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }

/* ---------- Cards ---------- */
.card{
    background:#fff; border:1px solid var(--line); border-radius:var(--r-md);
    padding:30px; transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
    height:100%;
}
.card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:transparent; }
.card-ic{
    width:54px; height:54px; border-radius:14px; display:flex; align-items:center; justify-content:center;
    background:var(--accent-soft); color:var(--primary); margin-bottom:20px;
}
.card-ic svg{ width:26px; height:26px; }
.card h3{ margin-bottom:10px; }
.card p{ font-size:.98rem; }
.card .price-tag{ display:inline-block; margin-top:18px; font-weight:700; color:var(--navy); background:var(--bg-soft); padding:8px 16px; border-radius:var(--r-pill); font-size:.95rem; }
.card .price-tag small{ font-weight:500; color:var(--muted); }

/* Service card with top accent */
.service-card{ position:relative; overflow:hidden; }
.service-card::before{ content:""; position:absolute; inset:0 0 auto 0; height:3px; background:linear-gradient(90deg,var(--primary),var(--accent)); transform:scaleX(0); transform-origin:left; transition:transform .3s var(--ease); }
.service-card:hover::before{ transform:scaleX(1); }

/* ---------- Feature / split ---------- */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.feature-list{ display:flex; flex-direction:column; gap:22px; margin-top:30px; }
.feature{ display:flex; gap:16px; }
.feature .f-ic{ width:46px; height:46px; border-radius:12px; background:var(--accent-soft); color:var(--primary); display:flex; align-items:center; justify-content:center; flex:none; }
.feature .f-ic svg{ width:22px; height:22px; }
.feature h4{ font-size:1.08rem; margin-bottom:3px; color:var(--ink); }
.feature p{ font-size:.97rem; margin:0; }

.media-card{
    background:linear-gradient(160deg,var(--navy),var(--primary-600));
    border-radius:var(--r-lg); padding:42px; color:#fff; box-shadow:var(--shadow-lg); position:relative; overflow:hidden;
}
.media-card::after{ content:""; position:absolute; bottom:-90px; right:-90px; width:280px; height:280px; border-radius:50%; background:radial-gradient(circle,rgba(21,180,230,.35),transparent 65%); }
.media-card h3{ color:#fff; font-size:1.5rem; margin-bottom:10px; position:relative; }
.media-card p{ color:#B9C2E2; position:relative; }
.media-stats{ display:grid; grid-template-columns:1fr 1fr; gap:22px; margin-top:30px; position:relative; }
.media-stats .num{ font-size:2rem; font-weight:800; color:#fff; line-height:1; }
.media-stats .lab{ font-size:.85rem; color:#A9B3D6; margin-top:6px; }

/* ---------- Process steps ---------- */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; position:relative; }
.step{ text-align:center; position:relative; }
.step-num{
    width:62px; height:62px; margin:0 auto 22px; border-radius:50%;
    background:#fff; border:2px solid var(--line); color:var(--primary); font-weight:800; font-size:1.3rem;
    display:flex; align-items:center; justify-content:center; position:relative; z-index:2;
    box-shadow:var(--shadow-sm); transition:background .25s, color .25s, border-color .25s;
}
.step:hover .step-num{ border-color:var(--primary); background:var(--primary); color:#fff; }
.step h4{ font-size:1.1rem; margin-bottom:7px; }
.step p{ font-size:.95rem; }
.steps .step:not(:last-child)::after{
    content:""; position:absolute; top:31px; left:62%; width:76%; height:2px;
    background:repeating-linear-gradient(90deg,var(--line) 0 8px,transparent 8px 16px); z-index:1;
}

/* ---------- Price table ---------- */
.price-wrap{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); box-shadow:var(--shadow-md); overflow:hidden; }
.price-table{ width:100%; border-collapse:collapse; }
.price-table th{ text-align:left; padding:20px 26px; font-size:.78rem; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); background:var(--bg-soft); font-weight:700; }
.price-table th:last-child,.price-table td:last-child{ text-align:right; }
.price-table td{ padding:20px 26px; border-top:1px solid var(--line-soft); }
.price-table tbody tr{ transition:background .2s; }
.price-table tbody tr:hover{ background:var(--accent-soft); }
.price-table .svc{ font-weight:700; color:var(--ink); }
.price-table .desc{ font-size:.92rem; color:var(--muted); }
.price-table .price-value{ font-weight:800; color:var(--navy); font-size:1.1rem; white-space:nowrap; }
.price-table .price-value small{ font-weight:500; color:var(--muted); font-size:.8rem; }

.note-card{ margin-top:32px; background:var(--bg-soft); border:1px solid var(--line); border-left:4px solid var(--primary); border-radius:var(--r-md); padding:28px 30px; }
.note-card h3{ font-size:1.15rem; margin-bottom:16px; display:flex; align-items:center; gap:10px; }
.note-card ul{ display:flex; flex-direction:column; gap:12px; }
.note-card li{ display:flex; gap:12px; font-size:.97rem; }
.note-card li svg{ width:20px; height:20px; color:var(--success); flex:none; margin-top:3px; }

/* ---------- FAQ ---------- */
.faq{ max-width:760px; margin:0 auto; }
.faq details{ background:#fff; border:1px solid var(--line); border-radius:var(--r-md); margin-bottom:14px; transition:box-shadow .2s, border-color .2s; }
.faq details[open]{ box-shadow:var(--shadow-md); border-color:transparent; }
.faq summary{ list-style:none; cursor:pointer; padding:22px 26px; font-weight:600; color:var(--ink); font-size:1.06rem; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary .chev{ width:26px; height:26px; border-radius:50%; background:var(--bg-soft); display:flex; align-items:center; justify-content:center; flex:none; transition:transform .25s, background .25s; }
.faq summary .chev svg{ width:15px; height:15px; color:var(--primary); }
.faq details[open] summary .chev{ transform:rotate(180deg); background:var(--accent-soft); }
.faq details p{ padding:0 26px 24px; font-size:.98rem; margin:0; }

/* ---------- CTA band ---------- */
.cta-band{ position:relative; background:linear-gradient(140deg,var(--navy) 0%,var(--primary-600) 100%); border-radius:var(--r-lg); padding:64px 56px; text-align:center; overflow:hidden; box-shadow:var(--shadow-lg); }
.cta-band::before{ content:""; position:absolute; top:-120px; left:-80px; width:360px; height:360px; border-radius:50%; background:radial-gradient(circle,rgba(21,180,230,.3),transparent 65%); }
.cta-band::after{ content:""; position:absolute; bottom:-140px; right:-60px; width:340px; height:340px; border-radius:50%; background:radial-gradient(circle,rgba(124,143,214,.25),transparent 65%); }
.cta-band > *{ position:relative; z-index:1; }
.cta-band h2{ color:#fff; margin-bottom:14px; }
.cta-band p{ color:#BFC8E6; font-size:1.12rem; max-width:560px; margin:0 auto 30px; }
.cta-band .hero-actions{ justify-content:center; margin:0; }

/* ---------- Forms ---------- */
.form-card{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); box-shadow:var(--shadow-md); padding:40px; max-width:720px; margin:0 auto; }
.form-group{ margin-bottom:20px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-group label{ display:block; font-weight:600; font-size:.92rem; color:var(--ink); margin-bottom:8px; }
.form-group input,.form-group select,.form-group textarea{
    width:100%; padding:14px 16px; font-family:inherit; font-size:1rem; color:var(--ink);
    background:var(--bg-soft); border:1.5px solid var(--line); border-radius:var(--r-sm); transition:border-color .2s, background .2s, box-shadow .2s;
}
.form-group input::placeholder,.form-group textarea::placeholder{ color:var(--muted); }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{ outline:none; border-color:var(--primary); background:#fff; box-shadow:0 0 0 4px rgba(36,64,160,.1); }
.form-group textarea{ min-height:130px; resize:vertical; }
.check-row{ display:flex; align-items:flex-start; gap:12px; }
.check-row input{ width:auto; margin-top:5px; accent-color:var(--primary); }
.check-row label{ margin:0; font-weight:500; color:var(--body); font-size:.95rem; }

.contact-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-bottom:18px; }
.contact-card{ background:#fff; border:1px solid var(--line); border-radius:var(--r-md); padding:28px; text-align:center; transition:transform .25s var(--ease),box-shadow .25s; }
.contact-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.contact-card .cc-ic{ width:54px; height:54px; border-radius:14px; margin:0 auto 16px; background:var(--accent-soft); color:var(--primary); display:flex; align-items:center; justify-content:center; }
.contact-card .cc-ic svg{ width:24px; height:24px; }
.contact-card .cc-val{ font-weight:700; color:var(--ink); font-size:1.1rem; word-break:break-word; }
.contact-card .cc-sub{ font-size:.88rem; color:var(--muted); margin-top:4px; }

.alert{ padding:16px 20px; border-radius:var(--r-sm); margin-bottom:20px; font-weight:600; }
.alert-success{ background:var(--success-soft); color:#0E7A4B; }
.alert-error{ background:#FDECEC; color:#C0392B; }

/* ---------- Job listing ---------- */
.job-card{ background:#fff; border:1px solid var(--line); border-radius:var(--r-md); padding:28px; transition:transform .25s var(--ease),box-shadow .25s,border-color .25s; }
.job-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:transparent; }
.job-meta{ display:flex; flex-wrap:wrap; gap:8px; margin:14px 0; }
.job-tag{ font-size:.8rem; font-weight:600; color:var(--primary); background:var(--accent-soft); padding:6px 12px; border-radius:var(--r-pill); }

/* ---------- Footer ---------- */
.site-footer{ background:var(--navy); color:#9AA4C6; padding:72px 0 28px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; }
.site-footer h4{ color:#fff; font-size:.95rem; letter-spacing:.04em; text-transform:uppercase; margin-bottom:18px; }
.site-footer .brand{ color:#fff; margin-bottom:16px; }
.site-footer .brand span small{ color:#7C86AB; }
.site-footer p{ font-size:.95rem; color:#9AA4C6; }
.site-footer ul li{ margin-bottom:11px; }
.site-footer ul a{ color:#9AA4C6; font-size:.95rem; transition:color .2s; }
.site-footer ul a:hover{ color:#fff; }
.foot-contact li{ display:flex; gap:11px; align-items:flex-start; margin-bottom:13px; font-size:.95rem; }
.foot-contact svg{ width:18px; height:18px; color:var(--accent); flex:none; margin-top:3px; }
.foot-contact a:hover{ color:#fff; }
.footer-bottom{ margin-top:48px; padding-top:24px; border-top:1px solid rgba(255,255,255,.1); display:flex; flex-wrap:wrap; gap:12px; justify-content:space-between; font-size:.88rem; color:#7C86AB; }

/* ---------- Floating WhatsApp ---------- */
.wa-fab{
    position:fixed; bottom:24px; right:24px; z-index:300;
    width:60px; height:60px; border-radius:50%; background:#25D366;
    display:flex; align-items:center; justify-content:center; color:#fff;
    box-shadow:0 12px 30px -8px rgba(37,211,102,.7); transition:transform .2s var(--ease);
}
.wa-fab:hover{ transform:scale(1.07); }
.wa-fab svg{ width:30px; height:30px; fill:#fff; }

/* ---------- Page hero (subpages) ---------- */
.page-hero{ background:linear-gradient(180deg,var(--bg-tint),#fff); padding:64px 0 56px; text-align:center; }
.page-hero .eyebrow{ margin-bottom:16px; }
.page-hero h1{ font-size:clamp(2rem,4vw,3rem); margin-bottom:16px; }
.page-hero p{ max-width:640px; margin:0 auto; font-size:1.12rem; }
.breadcrumb{ font-size:.85rem; color:var(--muted); margin-bottom:20px; }
.breadcrumb a:hover{ color:var(--primary); }

/* ---------- Service detail ---------- */
.svc-hero{ background:linear-gradient(180deg,var(--bg-tint),#fff); padding:48px 0 56px; }
.svc-hero .hero-lead{ margin-bottom:22px; }
.svc-price-row{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.svc-price{ font-size:1.6rem; font-weight:800; color:var(--navy); letter-spacing:-.02em; }
.svc-price small{ font-size:1rem; font-weight:600; color:var(--muted); }
.svc-note{ font-size:.85rem; font-weight:600; color:var(--primary); background:var(--accent-soft); padding:6px 14px; border-radius:var(--r-pill); }
.svc-visual{ position:relative; }
.svc-photo{ width:100%; height:100%; max-height:420px; object-fit:cover; border-radius:var(--r-lg); box-shadow:var(--shadow-lg); }
.svc-banner{
    aspect-ratio:4/3; border-radius:var(--r-lg); box-shadow:var(--shadow-lg);
    background:linear-gradient(150deg,var(--navy),var(--primary-600) 60%,var(--accent));
    display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden;
}
.svc-banner::after{ content:""; position:absolute; bottom:-80px; right:-80px; width:260px; height:260px; border-radius:50%; background:radial-gradient(circle,rgba(255,255,255,.18),transparent 65%); }
.svc-banner svg{ width:96px; height:96px; color:#fff; opacity:.95; stroke-width:1.4; position:relative; }
.incl-list{ display:flex; flex-direction:column; gap:14px; margin-top:8px; }
.incl-list li{ display:flex; gap:13px; align-items:flex-start; font-size:1rem; }
.incl-list li svg{ width:22px; height:22px; color:var(--success); flex:none; margin-top:3px; }

/* ---------- Utilities ---------- */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; } .mt-40{ margin-top:40px; } .mt-56{ margin-top:56px; }
.maxw-700{ max-width:700px; margin-left:auto; margin-right:auto; }
.highlight{ color:var(--primary); }

/* ---------- Responsive ---------- */
@media (max-width:980px){
    .hero .container{ grid-template-columns:1fr; gap:48px; }
    .hero-visual{ max-width:440px; margin:0 auto; width:100%; }
    .split{ grid-template-columns:1fr; gap:40px; }
    .grid-4{ grid-template-columns:repeat(2,1fr); }
    .steps{ grid-template-columns:repeat(2,1fr); row-gap:40px; }
    .steps .step::after{ display:none; }
    .footer-grid{ grid-template-columns:1fr 1fr; gap:32px; }
}
@media (max-width:760px){
    .section{ padding:64px 0; }
    .nav-menu{
        position:fixed; inset:76px 0 auto 0; flex-direction:column; align-items:stretch; gap:0;
        background:#fff; border-bottom:1px solid var(--line); padding:12px 24px 24px;
        transform:translateY(-130%); transition:transform .35s var(--ease); box-shadow:var(--shadow-md);
    }
    .nav-menu.active{ transform:translateY(0); }
    .nav-menu a.nav-link{ padding:14px 8px; border-bottom:1px solid var(--line-soft); border-radius:0; }
    .nav-cta{ flex-direction:column; align-items:stretch; margin:14px 0 0; gap:12px; }
    .nav-cta .btn{ width:100%; }
    .nav-phone{ justify-content:center; }
    .menu-toggle{ display:flex; }
    .stat-strip{ grid-template-columns:1fr 1fr; gap:30px 20px; }
    .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr; }
    .steps{ grid-template-columns:1fr; }
    .form-row{ grid-template-columns:1fr; }
    .contact-cards{ grid-template-columns:1fr; }
    .footer-grid{ grid-template-columns:1fr; gap:30px; }
    .cta-band{ padding:48px 26px; }
    .form-card{ padding:26px; }
    .hero-float{ display:none; }
    .media-card{ padding:30px; }
}
