/* =========================================================
   JAYJOY XPLOIT — Light theme, teal brand system
   Brand colours deduced from logo: #008070 (deep teal) + #00b0b0 (turquoise)
   ========================================================= */

:root {
    --bg:        #ffffff;
    --bg-2:      #f2f8f7;   /* alt sections / footer */
    --card:      #ffffff;
    --card-2:    #f4faf9;
    --card-brd:  rgba(0, 80, 112, .12);
    --ink:       #0e2b28;   /* deep teal-tinted near-black */
    --muted:     #566d6a;
    --faint:     #8aa09d;

    --teal-deep: #008070;
    --teal:      #00b0b0;
    --teal-soft: #e6f6f4;

    --grad:      linear-gradient(135deg, #008070 0%, #00b0b0 100%);
    --grad-warm: linear-gradient(135deg, #0aa89a 0%, #4fd1b6 100%);

    --radius:    18px;
    --radius-sm: 12px;
    --maxw:      1180px;
    --shadow:    0 24px 50px -24px rgba(0, 80, 112, .28);
    --shadow-sm: 0 10px 26px -14px rgba(0, 80, 112, .22);
    --ease:      cubic-bezier(.22,.61,.36,1);

    --font:      'Inter', system-ui, sans-serif;
    --display:   'Space Grotesk', 'Inter', sans-serif;
    --script:    'Kaushan Script', 'Space Grotesk', cursive;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-family: var(--display); line-height: 1.1; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }
.icon { width: 22px; height: 22px; }
.ic { width: 16px; height: 16px; vertical-align: -2px; flex: none; }

/* ---------- animated background blobs (subtle on white) ---------- */
.bg-blobs { position: fixed; inset: 0; z-index: -2; overflow: hidden; }
.bg-blobs::after { content:''; position: absolute; inset: 0;
    background: radial-gradient(1100px 560px at 50% -10%, rgba(0,176,176,.08), transparent 70%); }
.blob { position: absolute; width: 42vw; height: 42vw; border-radius: 50%; filter: blur(90px); opacity: .16; }
.b1 { background: var(--teal-deep); top: -12%; left: -8%; animation: float1 18s var(--ease) infinite; }
.b2 { background: var(--teal);      bottom: -16%; right: -10%; animation: float2 22s var(--ease) infinite; }
.b3 { background: #4fd1b6;           top: 42%; left: 55%; animation: float3 26s var(--ease) infinite; }
@keyframes float1 { 50% { transform: translate(12%, 18%) scale(1.15); } }
@keyframes float2 { 50% { transform: translate(-14%, -12%) scale(1.1); } }
@keyframes float3 { 50% { transform: translate(-18%, 10%) scale(.9); } }

/* ---------- topbar (deep teal brand strip) ---------- */
.topbar { background: var(--teal-deep); color: rgba(255,255,255,.92); font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 40px; gap: 16px; }
.topbar a { color: rgba(255,255,255,.92); }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar span { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(14px);
    background: rgba(255,255,255,.82); border-bottom: 1px solid transparent; transition: all .3s var(--ease); }
.site-header.scrolled { background: rgba(255,255,255,.95); border-bottom-color: var(--card-brd); box-shadow: 0 8px 30px -20px rgba(0,80,112,.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo { height: 48px; width: auto; display: block; }
.footer-brand .brand-logo { height: 62px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav > a { padding: 9px 14px; border-radius: 10px; font-weight: 500; font-size: 15px; color: var(--muted); transition: .2s var(--ease); position: relative; }
.nav > a:hover { color: var(--ink); background: var(--teal-soft); }
.nav > a.active { color: var(--teal-deep); }
.nav > a.active::after { content:''; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 2px; background: var(--grad); border-radius: 2px; }
/* keep the nav CTA button white on its gradient (out-specifies .nav > a) */
.nav > a.btn-nav,
.nav > a.btn-nav:hover { color: #fff; background: var(--grad); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg);}
.nav-toggle.open span:nth-child(2){ opacity: 0;}
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg);}

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 12px;
    font-weight: 600; font-size: 15px; cursor: pointer; border: 0; transition: .25s var(--ease);
    background: var(--grad); color: #fff; box-shadow: 0 12px 24px -12px rgba(0,128,112,.7); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -12px rgba(0,128,112,.8); }
.btn-nav { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-ghost { background: #fff; color: var(--teal-deep); border: 1px solid var(--card-brd); box-shadow: none; }
.btn-ghost:hover { background: var(--teal-soft); border-color: var(--teal); box-shadow: none; }

/* ---------- section scaffolding ---------- */
section { position: relative; }
.section { padding: 96px 0; }
.section-alt { background: var(--bg-2); }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 600;
    font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-deep);
    padding: 6px 14px; border: 1px solid var(--card-brd); border-radius: 100px; background: var(--teal-soft); margin-bottom: 18px; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 17px; }
.text-grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-grad-warm { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- hero ---------- */
.hero { padding: 80px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: var(--muted);
    background: var(--card-2); border: 1px solid var(--card-brd); padding: 8px 16px; border-radius: 100px; margin-bottom: 26px; }
.hero-badge b { color: var(--teal-deep); }
.hero h1 { font-size: clamp(38px, 6vw, 68px); line-height: 1.02; }
.hero h1 span { display: block; }
.hero-sub { color: var(--muted); font-size: 19px; margin: 24px 0 34px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 40px; display: flex; align-items: center; gap: 18px; color: var(--faint); font-size: 14px; flex-wrap: wrap; }
.hero-trust b { color: var(--ink); }

/* hero visual panel */
.hero-visual { position: relative; }
.hero-photo { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow);
    border: 1px solid var(--card-brd); background: var(--card-2); }
.hero-photo img { width: 100%; height: 100%; max-height: 520px; object-fit: cover; display: block; }
.hero-card { background: var(--card); border: 1px solid var(--card-brd); border-radius: 24px; padding: 26px; box-shadow: var(--shadow); }
.hc-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--card-brd); }
.hc-row:last-child { border-bottom: 0; }
.hc-ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: #fff; flex: none; }
.hc-row h5 { font-family: var(--display); font-size: 15px; }
.hc-row p { font-size: 13px; color: var(--muted); }
.hero-float { position: absolute; background: #fff; border: 1px solid var(--card-brd); border-radius: 16px;
    padding: 14px 18px; box-shadow: var(--shadow); animation: bob 5s ease-in-out infinite; }
.hero-float.f1 { top: -24px; right: -10px; }
.hero-float.f2 { bottom: -26px; left: -20px; animation-delay: -2.5s; }
.hero-float .big { font-family: var(--display); font-size: 24px; font-weight: 700; }
.hero-float small { color: var(--muted); font-size: 12px; }
@keyframes bob { 50% { transform: translateY(-12px); } }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 30px 16px; background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.stat .num { font-family: var(--display); font-size: clamp(32px, 4vw, 46px); font-weight: 700; }
.stat .num span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .label { color: var(--muted); font-size: 14px; margin-top: 6px; }

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

.card { background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--radius);
    padding: 28px; transition: .3s var(--ease); position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.card::before { content:''; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
    background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: .3s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }

.svc-ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; color: #fff; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.svc-ic .icon { width: 26px; height: 26px; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }
.card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--teal-deep); font-weight: 600; font-size: 14px; }
.card:hover .more .ic { transform: translateX(4px); }
.card .more .ic { transition: .25s var(--ease); }

/* teal-family gradient tints for icons / avatars / media */
.g1 { background: linear-gradient(135deg,#008070,#00b0b0); }
.g2 { background: linear-gradient(135deg,#00a99d,#4fd1b6); }
.g3 { background: linear-gradient(135deg,#0b7a8c,#15b7c0); }
.g4 { background: linear-gradient(135deg,#0e8f6f,#43c79a); }

/* ---------- process / timeline ---------- */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { padding: 34px 28px; background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--radius); position: relative; box-shadow: var(--shadow-sm); }
.step .no { font-family: var(--display); font-size: 54px; font-weight: 700; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h3 { font-size: 21px; margin: 14px 0 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
/* .top aligns both columns to the same baseline instead of centring the shorter one */
.split.top { align-items: start; }
.split h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 18px; }
.split p { color: var(--muted); margin-bottom: 16px; }
.vm-card { background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.vm-card + .vm-card { margin-top: 18px; }
/* vision & mission as their own two-up row (not stacked under a photo) */
.vm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 56px; }
.vm-row .vm-card + .vm-card { margin-top: 0; }
@media (max-width: 760px) { .vm-row { grid-template-columns: 1fr; gap: 18px; margin-top: 40px; } }
.vm-card h4 { font-size: 15px; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 10px; }
.vm-card p { color: var(--ink); font-size: 17px; margin: 0; }
.check-list { list-style: none; display: grid; gap: 14px; margin-top: 22px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.check-list .ic { color: var(--teal-deep); width: 22px; height: 22px; margin-top: 2px; }

/* ---------- why choose ---------- */
.why-card { text-align: left; }
.why-card .svc-ic { width: 48px; height: 48px; }

/* ---------- testimonials ---------- */
.tst { background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.tst .qmark { color: var(--teal); width: 34px; height: 34px; margin-bottom: 8px; }
.tst blockquote { font-size: 17px; color: var(--ink); line-height: 1.6; }
.tst .who { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.tst .av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--display); font-weight: 700; }
.tst .who h5 { font-family: var(--display); font-size: 16px; }
.tst .who span { color: var(--muted); font-size: 13px; }

/* ---------- partners marquee ---------- */
.partners { border-top: 1px solid var(--card-brd); border-bottom: 1px solid var(--card-brd); padding: 34px 0; overflow: hidden; background: var(--bg-2); }
.marquee { display: flex; gap: 60px; animation: scrollx 22s linear infinite; width: max-content; }
.marquee span { font-family: var(--display); font-size: 26px; font-weight: 600; color: var(--faint); white-space: nowrap; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- portfolio slider ---------- */
.pf-slider-sec { padding: 20px 0 90px; }
.pf-slider { position: relative; width: 100%; max-width: 1460px; margin: 0 auto; padding: 0 64px; }
.pf-slider:focus-visible { outline: 3px solid var(--teal); outline-offset: -3px; border-radius: 26px; }
/* clipping happens here — no padding, so neighbouring slides never peek through */
.pf-viewport { overflow: hidden; border-radius: 20px; }
.pf-track { display: flex; transition: transform .65s var(--ease); will-change: transform; }
.pf-slide { flex: 0 0 100%; min-width: 100%; padding: 4px; }

.pf-slide-main { display: grid; grid-template-columns: 1.25fr .75fr; gap: 38px; align-items: center; }
.pf-slide.flipped .pf-slide-main { grid-template-columns: .75fr 1.25fr; }
.pf-slide.flipped .pf-media { order: 2; }
.pf-slide.flipped .pf-copy  { order: 1; }

/* collage */
.pf-media { display: grid; gap: 12px; height: 460px;
    grid-template-columns: 1.6fr 1fr; grid-template-rows: 1fr 1fr; }
.pf-media.mosaic-0, .pf-media.mosaic-3 { grid-template-columns: 1.6fr 1fr; }
.pf-media.mosaic-1 { grid-template-columns: 1fr; grid-template-rows: 1fr; }
.pf-media.mosaic-2 { grid-template-columns: 1.6fr 1fr; grid-template-rows: 1fr; }
.pf-media.mosaic-4 { grid-template-columns: 1.55fr 1fr; grid-template-rows: repeat(3, 1fr); }

.pf-tile { position: relative; overflow: hidden; border-radius: 16px; box-shadow: var(--shadow-sm);
    padding: 0; border: 0; font: inherit; cursor: zoom-in; display: block; }
.pf-tile:not(.pf-tile-empty) { background: var(--card-2); }
.pf-tile:focus-visible { outline: 3px solid var(--accent, var(--teal)); outline-offset: 3px; }
/* zoom affordance on hover */
.pf-zoom { position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border-radius: 50%;
    background: rgba(255,255,255,.92); color: #14322e; display: grid; place-items: center;
    font-size: 16px; font-weight: 700; opacity: 0; transform: scale(.8); transition: .25s var(--ease); }
.pf-tile:hover .pf-zoom { opacity: 1; transform: scale(1); }
.pf-tile img { width: 100%; height: 100%; object-fit: cover; object-position: top center;
    transition: transform .6s var(--ease); }
.pf-tile:hover img { transform: scale(1.05); }
.pf-media.mosaic-0 .t1, .pf-media.mosaic-3 .t1 { grid-row: span 2; }
.pf-media.mosaic-1 .t1 { grid-row: span 2; }
.pf-media.mosaic-2 .t1 { grid-row: span 1; }
.pf-media.mosaic-4 .t1 { grid-row: span 3; }

/* placeholder tiles (shown until real screenshots are added) */
.pf-tile-empty { display: grid; place-content: center; justify-items: center; gap: 12px; padding: 22px;
    color: #fff; text-align: center; }
.pf-tile-icon { width: 46px; height: 46px; opacity: .95; }
.pf-tile-empty figcaption { font-family: var(--display); font-weight: 700; font-size: 20px; line-height: 1.2; }
.pf-tile-empty.t2 .pf-tile-icon, .pf-tile-empty.t3 .pf-tile-icon { width: 30px; height: 30px; opacity: .7; }

/* copy side */
.pf-copy { padding: 10px 6px; }
/* script label + CTA pick up the project's own brand colour (falls back to teal) */
.pf-num { display: block; font-family: var(--script); font-size: clamp(46px, 5.6vw, 76px);
    line-height: .95; color: var(--accent, var(--teal-deep)); margin-bottom: 14px; }
.pf-slide .btn { background: linear-gradient(135deg, var(--accent, #008070), var(--accent-2, #00b0b0));
    box-shadow: 0 12px 24px -12px color-mix(in srgb, var(--accent, #008070) 70%, transparent); }
.pf-slide .eyebrow { color: var(--accent, var(--teal-deep));
    background: color-mix(in srgb, var(--accent, #00b0b0) 10%, #fff);
    border-color: color-mix(in srgb, var(--accent, #00b0b0) 28%, transparent); }
.pf-slide .pf-facts dt { color: var(--accent, var(--teal-deep)); }
.pf-slide .pf-facts a { color: var(--accent, var(--teal-deep)); }
.pf-copy .eyebrow { margin-bottom: 12px; }
.pf-copy h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 14px; }
.pf-copy p { color: var(--muted); font-size: 16px; margin-bottom: 24px; }

/* facts strip below each slide */
.pf-facts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px;
    border-top: 1px solid var(--card-brd); padding-top: 22px; }
.pf-facts > div { flex: 1 1 190px; background: var(--card); border: 1px solid var(--card-brd);
    border-radius: 14px; padding: 16px 18px; box-shadow: var(--shadow-sm); }
.pf-facts dt { font-family: var(--display); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--teal-deep); margin-bottom: 6px; }
.pf-facts dd { font-size: 15px; font-weight: 600; color: var(--ink); overflow-wrap: anywhere; }
.pf-facts a { color: var(--teal-deep); }
.pf-facts a:hover { text-decoration: underline; }

/* arrows */
.pf-nav { position: absolute; top: 230px; z-index: 3; width: 48px; height: 48px; border-radius: 50%;
    border: 1px solid var(--card-brd); background: rgba(255,255,255,.94); color: var(--teal-deep);
    font-size: 26px; line-height: 1; cursor: pointer; box-shadow: var(--shadow-sm); transition: .25s var(--ease); }
.pf-nav:hover { background: var(--grad); color: #fff; border-color: transparent; transform: scale(1.08); }
.pf-nav.prev { left: 6px; }
.pf-nav.next { right: 6px; }

/* dots + counter */
.pf-controls { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 34px; }
.pf-dots { display: flex; gap: 9px; }
.pf-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%;
    background: rgba(0,80,112,.22); cursor: pointer; transition: .25s var(--ease); }
.pf-dots button:hover { background: var(--teal); }
.pf-dots button.active { width: 30px; border-radius: 5px; background: var(--grad); }
.pf-progress { font-family: var(--display); font-weight: 600; color: var(--faint); font-size: 14px; }
.pf-progress span { color: var(--teal-deep); }

@media (max-width: 980px) {
    .pf-slider { padding: 0 20px; }
    .pf-slide-main, .pf-slide.flipped .pf-slide-main { grid-template-columns: 1fr; gap: 26px; }
    .pf-slide.flipped .pf-media { order: 1; }
    .pf-slide.flipped .pf-copy  { order: 2; }
    .pf-media { height: 300px; }
    .pf-nav { top: 130px; }
    .pf-nav.prev { left: -2px; }
    .pf-nav.next { right: -2px; }
}
@media (max-width: 620px) {
    .pf-media { height: 240px; gap: 8px; }
    .pf-facts > div { flex: 1 1 100%; }
}

/* ---------- blog ---------- */
.post { background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--radius); overflow: hidden; transition: .3s var(--ease); box-shadow: var(--shadow-sm); }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post .thumb { height: 168px; position: relative; background-size: cover; background-position: center; }
.post .thumb .tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); color: var(--teal-deep); padding: 5px 12px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.post .body { padding: 22px; }
.post .meta { color: var(--faint); font-size: 13px; }
.post h3 { font-size: 19px; margin: 8px 0 10px; }
.post p { color: var(--muted); font-size: 14px; }

/* ---------- service detail page ---------- */
.svc-hero { padding-bottom: 22px; }
.svc-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }

.svc-content { background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--radius);
    padding: 40px 38px; box-shadow: var(--shadow-sm); }
.svc-content p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
.svc-content > h2 { font-size: clamp(22px, 2.4vw, 28px); margin: 34px 0 14px; }

/* image sits beside the copy, text wraps around it */
.svc-figure { float: right; width: 42%; max-width: 360px; margin: 4px 0 22px 30px;
    border-radius: 14px; overflow: hidden; border: 1px solid var(--card-brd);
    background: var(--card-2); box-shadow: var(--shadow-sm); }
/* capped so a portrait shot never towers over a short intro */
.svc-figure img { width: 100%; height: 265px; object-fit: cover; object-position: top center;
    display: block; transition: transform .7s var(--ease); }
.svc-figure:hover img { transform: scale(1.04); }
.svc-figure figcaption { padding: 11px 14px; font-size: 13px; line-height: 1.5;
    color: var(--muted); background: var(--card-2); border-top: 1px solid var(--card-brd); }

/* complex blocks start on a clean line rather than squeezing beside the image */
.svc-tabs, .svc-features, .svc-foot { clear: both; }

.svc-list { list-style: none; display: grid; gap: 12px; margin: 0 0 22px; }
.svc-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--muted); font-size: 15.5px; }
.svc-list .ic { color: var(--teal-deep); width: 20px; height: 20px; margin-top: 3px; }

.svc-defs { display: grid; gap: 14px; margin-bottom: 24px; }
.svc-def { border-left: 3px solid var(--teal); background: var(--card-2); border-radius: 0 12px 12px 0; padding: 16px 20px; }
.svc-def h3 { font-size: 16px; margin-bottom: 6px; color: var(--teal-deep); }
.svc-def p { margin: 0; font-size: 15px; }

.svc-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 26px; }
.svc-feature { border: 1px solid var(--card-brd); border-radius: 14px; padding: 20px 22px; background: var(--card-2); }
.svc-feature h3 { font-size: 17px; margin-bottom: 10px; color: var(--teal-deep); }
.svc-feature p { margin: 0; font-size: 15px; }
.svc-feature ul { list-style: none; display: grid; gap: 7px; }
.svc-feature li { position: relative; padding-left: 16px; color: var(--muted); font-size: 15px; }
.svc-feature li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px;
    border-radius: 50%; background: var(--teal); }

/* tabs — pill style so they survive wrapping and stay legible at any width */
.svc-tabs { margin: 8px 0 26px; }
/* wraps instead of scrolling, so no tab is ever hidden off-screen */
.svc-tablist { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; padding: 6px;
    border-radius: 14px; background: var(--card-2); border: 1px solid var(--card-brd); }
.svc-tab { flex: 1 1 auto; min-width: max-content; text-align: center;
    padding: 11px 18px; border: 0; border-radius: 10px; background: transparent; cursor: pointer;
    font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--muted);
    transition: .2s var(--ease); }
.svc-tab:hover { color: var(--teal-deep); background: #fff; }
.svc-tab.active { color: #fff; background: var(--grad); box-shadow: 0 8px 18px -10px rgba(0,128,112,.8); }
.svc-tab:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
.svc-panel { display: none; animation: fadeIn .35s var(--ease); }
.svc-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.svc-cta { margin-top: 8px; }
.svc-foot { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
    border-top: 1px solid var(--card-brd); padding-top: 28px; margin-top: 34px; }

/* sidebar */
.svc-side { display: grid; gap: 20px; position: sticky; top: 100px; }
.side-card { background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--radius);
    padding: 24px; box-shadow: var(--shadow-sm); }
.side-card h4 { font-size: 17px; margin-bottom: 16px; }
.side-nav { display: grid; gap: 4px; }
.side-nav a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 10px;
    color: var(--muted); font-size: 14.5px; transition: .2s var(--ease); }
.side-nav a .ic { color: var(--teal-deep); flex: none; }
.side-nav a:hover { background: var(--teal-soft); color: var(--ink); }
.side-nav a.active { background: var(--grad); color: #fff; font-weight: 600; }
.side-nav a.active .ic { color: #fff; }
.side-contact p { display: flex; gap: 10px; align-items: flex-start; color: var(--muted);
    font-size: 14.5px; margin-bottom: 12px; line-height: 1.6; }
.side-contact .ic { color: var(--teal-deep); flex: none; margin-top: 4px; }
.side-contact a { color: var(--muted); }
.side-contact a:hover { color: var(--teal-deep); }
/* keep the sidebar CTA white on its gradient (out-specifies .side-contact a) */
.side-card a.btn, .side-card a.btn:hover { color: #fff; }

@media (max-width: 980px) {
    .svc-layout { grid-template-columns: 1fr; }
    .svc-side { position: static; }
    .svc-content { padding: 30px 24px; }
    .svc-figure { float: none; width: 100%; max-width: none; margin: 0 0 24px; }
    .svc-features { grid-template-columns: 1fr; }
}

/* ---------- photography ---------- */
.photo-frame { position: relative; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--card-brd); box-shadow: var(--shadow); background: var(--card-2); }
/* height:auto keeps the natural aspect — fixed heights are opt-in (see .photo-grid) */
.photo-frame img { width: 100%; height: auto; display: block;
    transition: transform .6s var(--ease); }
.photo-frame:hover img { transform: scale(1.04); }
.photo-frame figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 20px 16px;
    color: #fff; font-family: var(--display); font-weight: 600; font-size: 15px;
    background: linear-gradient(to top, rgba(4,40,36,.85), transparent); }

.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.photo-grid .photo-frame img { height: 260px; object-fit: cover; }

@media (max-width: 980px) { .photo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .photo-grid { grid-template-columns: 1fr; } }

/* ---------- author byline ---------- */
.byline { display: flex; align-items: center; gap: 11px; margin-top: 16px; }
.byline .av { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; flex: none;
    color: #fff; font-family: var(--display); font-weight: 700; font-size: 13px; }
.byline strong { display: block; font-family: var(--display); font-size: 14px; color: var(--ink); }
.byline span { font-size: 12.5px; color: var(--muted); }
.byline.sm { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--card-brd); }
.byline.sm .av { width: 30px; height: 30px; font-size: 11px; }
.byline.sm strong { font-size: 13px; }
.byline.lg { margin-top: 24px; justify-content: center; }
.byline.lg .av { width: 46px; height: 46px; font-size: 15px; }
.byline.lg div { text-align: left; }

/* ---------- featured (lead) post ---------- */
.post-lead { display: grid; grid-template-columns: 1fr 1fr; background: var(--card);
    border: 1px solid var(--card-brd); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: .3s var(--ease); }
.post-lead:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-lead-media { position: relative; min-height: 300px; background-size: cover; background-position: center; }
.post-lead-media .tag { position: absolute; top: 18px; left: 18px; background: rgba(255,255,255,.92);
    color: var(--teal-deep); padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.post-lead-body { padding: 38px 34px; }
.post-lead-body h2 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 12px; }
.post-lead-body p { color: var(--muted); font-size: 16px; }
.post-lead .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
    color: var(--teal-deep); font-weight: 600; font-size: 14px; }
.post-lead:hover .more .ic { transform: translateX(4px); }
.post-lead .more .ic { transition: .25s var(--ease); }

/* ---------- single article ---------- */
.container.narrow { max-width: 780px; }
.article-head { padding: 60px 0 26px; text-align: center; }
.article-head h1 { font-size: clamp(30px, 4.4vw, 48px); margin-top: 6px; }
.article-hero { height: 340px; max-width: 1180px; margin: 26px auto 40px; border-radius: 22px; box-shadow: var(--shadow);
    background-size: cover; background-position: center; }
.article-body { padding-bottom: 70px; }
.article-body p { color: #35514e; font-size: 17.5px; line-height: 1.85; margin-bottom: 24px; }
.article-body h2 { font-size: clamp(22px, 2.4vw, 28px); margin: 38px 0 16px; }
.article-body p:first-of-type::first-letter { float: left; font-family: var(--display); font-weight: 700;
    font-size: 62px; line-height: .82; padding: 6px 12px 0 0; color: var(--teal-deep); }
.article-foot { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
    border-top: 1px solid var(--card-brd); padding-top: 30px; margin-top: 10px; }

@media (max-width: 820px) {
    .post-lead { grid-template-columns: 1fr; }
    .post-lead-media { min-height: 190px; }
    .post-lead-body { padding: 28px 24px; }
    .article-hero { height: 170px; margin: 20px 24px 30px; border-radius: 18px; }
    .article-body p { font-size: 16.5px; }
}

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding: 70px 0 40px; text-align: center; }
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); }
.page-hero p { color: var(--muted); font-size: 18px; margin-top: 14px; }
.crumbs { color: var(--faint); font-size: 14px; margin-top: 16px; }
.crumbs a:hover { color: var(--teal-deep); }

/* ---------- numbered step flow (appointment page) ---------- */
.step-flow { list-style: none; counter-reset: none; margin: 26px 0 0; padding: 0; }
.step-flow li { position: relative; display: grid; grid-template-columns: 46px 1fr; gap: 18px;
    padding-bottom: 28px; }
.step-flow li:last-child { padding-bottom: 0; }
/* connecting line between the numbers */
.step-flow li:not(:last-child)::before { content: ''; position: absolute; left: 23px; top: 52px; bottom: 4px;
    width: 2px; background: linear-gradient(to bottom, var(--teal), rgba(0,176,176,.15)); border-radius: 2px; }
.step-flow-num { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
    background: var(--grad); color: #fff; font-family: var(--display); font-weight: 700; font-size: 16px;
    box-shadow: 0 10px 20px -10px rgba(0,128,112,.8); z-index: 1; }
.step-flow-body h3 { font-size: 18px; margin: 10px 0 6px; }
.step-flow-body p { color: var(--muted); font-size: 15.5px; line-height: 1.7; margin: 0; }

@media (max-width: 520px) {
    .step-flow li { grid-template-columns: 38px 1fr; gap: 14px; }
    .step-flow li:not(:last-child)::before { left: 19px; top: 44px; }
    .step-flow-num { width: 38px; height: 38px; font-size: 14px; }
}

/* ---------- contact + forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.info-card { background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--radius); padding: 26px; display: flex; gap: 16px; align-items: flex-start; box-shadow: var(--shadow-sm); }
.info-card + .info-card { margin-top: 16px; }
.info-card .svc-ic { width: 46px; height: 46px; margin: 0; }
.info-card h4 { font-size: 16px; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--muted); font-size: 15px; }
.info-card a:hover { color: var(--teal-deep); }

.form { background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; color: var(--ink); }
.field input, .field select, .field textarea {
    width: 100%; padding: 13px 16px; background: var(--card-2); border: 1px solid var(--card-brd);
    border-radius: 12px; color: var(--ink); font-family: inherit; font-size: 15px; transition: .2s var(--ease); }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,176,176,.18); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }

.alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 22px; font-size: 15px; display: flex; gap: 10px; align-items: center; }
.alert-ok { background: rgba(0,176,176,.10); border: 1px solid rgba(0,176,176,.4); color: var(--teal-deep); }
.alert-err { background: rgba(220,70,70,.08); border: 1px solid rgba(220,70,70,.35); color: #b3261e; }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--card-brd); margin-top: 40px; height: 340px; box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2); }

/* ---------- CTA strip ---------- */
.cta-strip { padding: 70px 0; }
.cta-inner { background: var(--grad); border-radius: 26px; padding: 48px 52px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; box-shadow: 0 30px 60px -24px rgba(0,128,112,.5); }
.cta-inner h2 { font-size: clamp(26px, 3vw, 36px); color: #fff; }
.cta-inner p { color: rgba(255,255,255,.9); margin-top: 8px; }
.cta-inner .btn { background: #fff; color: var(--teal-deep); box-shadow: none; }
.cta-inner .btn:hover { background: #f0fbfa; }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--card-brd); padding: 64px 0 0; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .7fr 1.05fr 1.9fr; gap: 30px; padding-bottom: 44px; }
.footer-brand p { color: var(--muted); font-size: 15px; margin-top: 16px; max-width: 300px; }
.footer-col h4 { font-size: 15px; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.footer-col a:hover { color: var(--teal-deep); }

/* contact lines: icon stays put, text wraps beside it instead of under it */
.footer-contact p { display: flex; align-items: flex-start; gap: 9px; line-height: 1.55; }
.footer-contact p .ic { flex: none; margin-top: 4px; color: var(--teal-deep); }
.footer-phones { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 10px; }
.footer-phones a { white-space: nowrap; }   /* never split a number across lines */
.footer-phones .sep { color: var(--faint); }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: #fff; border: 1px solid var(--card-brd); font-size: 13px; font-weight: 600; color: var(--muted); transition: .2s var(--ease); }
.socials a:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-2px); }
/* keep the container's 24px side padding — a bare `0` here pushed the
   copyright flush against the screen edge and out of line with the columns */
.footer-bottom { display: flex; justify-content: space-between; align-items: center;
    padding: 22px 24px; border-top: 1px solid var(--card-brd); color: var(--faint);
    font-size: 13px; flex-wrap: wrap; gap: 8px; }

/* ---------- whatsapp float ---------- */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg,#25d366,#128c7e); display: grid; place-items: center; color: #fff; z-index: 90;
    box-shadow: 0 14px 30px -10px rgba(37,211,102,.6); animation: bob 4s ease-in-out infinite; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float .ic { width: 26px; height: 26px; }

/* ---------- image lightbox ---------- */
.lb { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 24px;
    visibility: hidden; opacity: 0; transition: opacity .28s var(--ease), visibility .28s var(--ease); }
.lb.open { visibility: visible; opacity: 1; }
body.lb-open { overflow: hidden; }
.lb-overlay { position: absolute; inset: 0; background: rgba(6, 26, 24, .82); backdrop-filter: blur(6px); }
.lb-panel { position: relative; display: flex; align-items: center; gap: 10px; max-width: 1400px; width: 100%; }
.lb-figure { flex: 1; min-width: 0; text-align: center; transform: scale(.97); transition: transform .3s var(--ease); }
.lb.open .lb-figure { transform: none; }
.lb-figure img { max-width: 100%; max-height: 82vh; margin: 0 auto; border-radius: 12px;
    background: #fff; box-shadow: 0 40px 90px -30px rgba(0,0,0,.7); }
.lb-figure figcaption { color: rgba(255,255,255,.9); font-size: 14px; margin-top: 14px; font-family: var(--display); }
.lb-figure figcaption em { color: rgba(255,255,255,.6); font-style: normal; margin-left: 8px; }

.lb-close { position: absolute; top: -8px; right: 0; z-index: 2; width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.12); color: #fff;
    font-size: 26px; line-height: 1; cursor: pointer; transition: .2s var(--ease); }
.lb-close:hover { background: #fff; color: #0e2b28; transform: rotate(90deg); }
.lb-nav { flex: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.12); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; transition: .2s var(--ease); }
.lb-nav:hover { background: #fff; color: #0e2b28; }

@media (max-width: 760px) {
    .lb { padding: 14px; }
    .lb-panel { gap: 4px; }
    .lb-close { top: -6px; right: -4px; width: 38px; height: 38px; font-size: 22px; }
    .lb-nav { width: 34px; height: 34px; font-size: 20px; }
    .lb-figure img { max-height: 70vh; }
}

/* ---------- built-in security check (captcha) ---------- */
.syscap { border: 1px solid var(--card-brd); border-radius: 14px; background: var(--card-2); overflow: hidden; }
.syscap.verified { border-color: var(--teal); background: rgba(0,176,176,.06); }

.syscap-main { display: flex; align-items: center; gap: 14px; padding: 16px 18px; }
.syscap-box { position: relative; width: 28px; height: 28px; flex: none; border-radius: 6px;
    border: 2px solid #b9cfcb; background: #fff; cursor: pointer; padding: 0; transition: .2s var(--ease); }
.syscap-box:hover { border-color: var(--teal); }
.syscap.verified .syscap-box { border-color: var(--teal-deep); background: var(--teal-deep); }
.syscap-label { font-size: 15px; font-weight: 500; color: var(--ink); user-select: none; }
.syscap-brand { margin-left: auto; display: flex; align-items: center; gap: 8px; text-align: right;
    font-size: 11px; line-height: 1.3; color: var(--faint); font-family: var(--display); }
.syscap-logo { width: 26px; height: 26px; color: var(--teal-deep); }
.syscap-brand small { font-size: 9px; letter-spacing: .02em; }

/* tick + spinner inside the box */
.syscap-tick { position: absolute; inset: 0; margin: auto; width: 18px; height: 18px; color: #fff;
    opacity: 0; transform: scale(.4); transition: .25s var(--ease); }
.syscap.verified .syscap-tick { opacity: 1; transform: scale(1); }
.syscap-spinner { position: absolute; inset: -2px; border-radius: 50%; border: 2px solid transparent;
    border-top-color: var(--teal-deep); border-right-color: var(--teal-deep); opacity: 0; }
.syscap.checking .syscap-spinner { opacity: 1; animation: syscap-spin .7s linear infinite; }
.syscap.checking .syscap-box { border-color: transparent; }
@keyframes syscap-spin { to { transform: rotate(360deg); } }

/* challenge panel */
.syscap-challenge { border-top: 1px solid var(--card-brd); padding: 16px 18px; background: #fff;
    max-height: 320px; transition: max-height .35s var(--ease), padding .35s var(--ease), opacity .25s var(--ease); }
.syscap-challenge.collapsed { max-height: 0; padding-top: 0; padding-bottom: 0; opacity: 0; overflow: hidden; border-top-color: transparent; }
.syscap-hint { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.syscap-row { display: flex; align-items: center; gap: 10px; }
.syscap-img { border-radius: 8px; border: 1px solid var(--card-brd); }
.syscap-refresh { width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--card-brd);
    background: var(--card-2); color: var(--teal-deep); font-size: 17px; line-height: 1; cursor: pointer; transition: .2s var(--ease); }
.syscap-refresh:hover { background: var(--teal-soft); border-color: var(--teal); transform: rotate(90deg); }
.syscap-input { width: 100%; margin-top: 12px; padding: 11px 14px; border: 1px solid var(--card-brd);
    border-radius: 10px; background: var(--card-2); color: var(--ink); font-family: var(--display);
    font-size: 17px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase; }
.syscap-input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,176,176,.18); background: #fff; }
.syscap-msg { font-size: 13px; margin-top: 8px; min-height: 18px; }
.syscap-msg.ok  { color: var(--teal-deep); font-weight: 600; }
.syscap-msg.err { color: #b3261e; }
.syscap.shake { animation: syscap-shake .35s var(--ease); }
@keyframes syscap-shake { 25%{transform:translateX(-5px)} 50%{transform:translateX(5px)} 75%{transform:translateX(-3px)} }

/* ---------- custom animated cursor ---------- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none;
    z-index: 9999; transform: translate(-50%, -50%); opacity: 1; transition: opacity .25s var(--ease); }
.cursor-dot { width: 8px; height: 8px; background: var(--teal-deep); }
.cursor-ring { width: 34px; height: 34px; border: 1.6px solid rgba(0, 160, 157, .65);
    transition: width .25s var(--ease), height .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), opacity .25s var(--ease); }
.cursor-ring.hover { width: 54px; height: 54px; background: rgba(0, 176, 176, .10); border-color: var(--teal); }
.cursor-dot.click, .cursor-ring.click { transform: translate(-50%, -50%) scale(.7); }
.cursor-hidden { opacity: 0 !important; }

/* hide the native cursor only when the custom one is active (desktop pointers) */
body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor input,
body.has-custom-cursor select,
body.has-custom-cursor textarea,
body.has-custom-cursor label { cursor: none; }

@media (hover: none), (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none !important; }
}

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .blob, .hero-float, .whatsapp-float, .marquee { animation: none; }
    html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
    .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
    .hero-visual { order: -1; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .process { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .topbar { display: none; }
    .nav { position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px;
        background: rgba(255,255,255,.98); backdrop-filter: blur(16px); padding: 16px 20px 24px; border-bottom: 1px solid var(--card-brd); box-shadow: var(--shadow);
        transform: translateY(-130%); transition: transform .35s var(--ease); }
    .nav.open { transform: none; }
    .nav > a { padding: 13px 14px; font-size: 16px; }
    .nav > a.active::after { display: none; }
    .btn-nav { justify-content: center; margin-top: 8px; }
    .nav-toggle { display: flex; }
    /* stack + centre the copyright, and leave room for the floating WhatsApp button */
    .footer-bottom { flex-direction: column; justify-content: center; text-align: center;
        gap: 6px; padding: 20px 24px 112px; line-height: 1.6; }
    .section { padding: 68px 0; }
    .grid-2, .grid-3, .grid-4, .field-row { grid-template-columns: 1fr; }
    .cta-inner { padding: 34px 26px; }
    .footer-grid { grid-template-columns: 1fr; }
}
