/* ============================================================
   Vide Web Co. — Studio Stylesheet · Premium Minimal
   Palette: white #FFFFFF · ink #0C0C0D · surface #F5F5F5
            hairline #E7E7E7 · muted #6A6A6A · lime #00F592
   Fonts:   Inter Tight (headings) · Inter (body)
   Rules:   no gradients, no glass, no noise. Restraint is the flex.
   ============================================================ */

:root{
  --white:      #FFFFFF;
  --ink:        #0C0C0D;
  --surface:    #F5F5F5;
  --line:       #E7E7E7;
  --line-dark:  #2A2A2A;
  --muted:      #6A6A6A;
  --muted-dark: #9A9A9A;
  --lime:       #00F592;
  --font-head:  "Inter Tight","Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --font-body:  "Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --radius:     12px;
  --radius-btn: 8px;
  --header-h:   68px;
  --section-pad:clamp(4.5rem,9vw,7.5rem);
  --ease:       cubic-bezier(.2,.7,.3,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{
  scroll-behavior:smooth;scroll-padding-top:calc(var(--header-h) + 24px);
  -webkit-text-size-adjust:100%;
  /* `clip` (not `hidden`): hidden still creates a scroll container, so the
     page can be pushed sideways programmatically — by focus, hash links or
     scrollIntoView — and stay stuck there with blank space on the right.
     `clip` cannot be scrolled at all, on any device. */
  overflow-x:clip;
}
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  line-height:1.65;
  font-size:1rem;
  font-weight:400;
  max-width:100%;
  -webkit-font-smoothing:antialiased;
  /* NB: no overflow-x here. Setting it on <body> makes body a scroll
     container, which breaks `position:sticky` on the header. The clip on
     <html> above already stops all sideways movement. */
}
img,svg{display:block;max-width:100%}
a{color:var(--ink);text-decoration:none}
ul[class],ol[class]{list-style:none}
button{font:inherit;cursor:pointer;background:none;border:0}
::selection{background:var(--lime);color:var(--ink)}
:focus-visible{outline:2px solid var(--lime);outline-offset:3px;border-radius:2px}

/* Utility class: must win against any component rule that happens to match
   the same element (e.g. `.nav-toggle span`), so the sizing is !important
   too - a stretched "hidden" label silently breaks page width. */
.visually-hidden{
  position:absolute!important;width:1px!important;height:1px!important;
  overflow:hidden!important;clip:rect(0 0 0 0)!important;clip-path:inset(50%)!important;
  white-space:nowrap;border:0;padding:0;margin:-1px;
}
.skip-link{
  position:absolute;top:-48px;left:16px;z-index:200;
  background:var(--ink);color:#fff;padding:.6rem 1.1rem;border-radius:var(--radius-btn);
  font-weight:600;font-family:var(--font-head);transition:top .2s ease;
}
.skip-link:focus{top:12px}

/* ---------- Typography ---------- */
h1,h2,h3,h4{
  font-family:var(--font-head);
  color:var(--ink);
  line-height:1.08;
  letter-spacing:-0.02em;
  font-weight:700;
}
h1{font-size:clamp(2.5rem,5.5vw,4rem);letter-spacing:-0.025em}
h2{font-size:clamp(1.9rem,3.4vw,2.75rem)}
h3{font-size:1.15rem;line-height:1.3;font-weight:600}
p{max-width:65ch}
strong{color:var(--ink);font-weight:600}

/* Old gradient text → ink with a flat lime marker under the words */
.gradient-text{
  color:inherit;
  background-image:linear-gradient(var(--lime),var(--lime)); /* flat color, not a visual gradient */
  background-repeat:no-repeat;
  background-size:100% .18em;
  background-position:0 90%;
  padding:0 .04em;
  -webkit-text-fill-color:currentColor;
}
.section-dark .gradient-text,.cta-band .gradient-text{
  background-size:100% 2px;background-position:0 100%;padding-bottom:.08em;
}

.eyebrow{
  display:inline-flex;align-items:center;gap:.7rem;
  font-family:var(--font-head);
  font-size:.72rem;font-weight:600;letter-spacing:.16em;text-transform:uppercase;
  color:var(--muted);margin-bottom:1.4rem;
}
.eyebrow::before{content:"";width:22px;height:1px;background:var(--ink);flex:none}
.section-dark .eyebrow{color:var(--muted-dark)}
.section-dark .eyebrow::before{background:var(--lime)}

/* Swiss section label: "01 — Work" */
.section-label{
  display:flex;align-items:baseline;gap:.7rem;
  font-family:var(--font-head);
  font-size:.72rem;font-weight:600;letter-spacing:.16em;text-transform:uppercase;
  color:var(--ink);
  padding-top:1.5rem;border-top:1px solid var(--line);
  margin-bottom:clamp(2.5rem,6vw,4.5rem);
}
.section-label i{font-style:normal;color:var(--muted);font-variant-numeric:tabular-nums}
.section-dark .section-label{border-color:var(--line-dark);color:#fff}
.section-dark .section-label i{color:var(--lime)}

.lede{
  font-size:clamp(1.02rem,1.5vw,1.15rem);
  color:var(--muted);line-height:1.7;font-weight:400;
}
.section-dark .lede,.hero.section-dark .lede{color:var(--muted-dark)}

/* ---------- Layout ---------- */
.container{width:min(1160px,100% - 3rem);margin-inline:auto}
.container-wide{width:min(1280px,100% - 3rem);margin-inline:auto}

.section{padding-block:var(--section-pad)}
.section-paper{background:var(--surface)}
.section-dark{background:var(--ink);color:var(--muted-dark)}
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4{color:#fff}
.section-dark strong{color:#fff}

.section-head{max-width:720px;margin-bottom:clamp(2.5rem,5vw,3.75rem)}
.section-head.center{margin-inline:auto;text-align:center}
.section-head.center .lede{margin-inline:auto}
.section-head h2{margin-bottom:1rem}

/* ---------- Buttons ----------
   Hover: shade shift + a border that draws itself — a faint ring
   appears, then a solid line sweeps clockwise from the top until the
   border completes. Ring color = currentColor, so it adapts to every
   variant and theme automatically. */
@property --bdraw{syntax:"<angle>";inherits:false;initial-value:0deg}
.btn{
  position:relative;
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  font-family:var(--font-head);font-weight:600;font-size:.95rem;
  padding:.85rem 1.6rem;border-radius:var(--radius-btn);line-height:1.2;
  letter-spacing:-0.01em;white-space:nowrap;
  transition:transform .2s var(--ease),background-color .2s ease,border-color .2s ease,color .2s ease;
}
.btn::after{
  content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;
  padding:1px; /* ring thickness */
  background:conic-gradient(currentColor var(--bdraw),color-mix(in srgb,currentColor 22%,transparent) var(--bdraw));
  -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  mask-composite:exclude;
  opacity:0;
  transition:opacity .12s ease,--bdraw .6s cubic-bezier(.45,.05,.3,.95);
}
.btn:hover{transform:translateY(-1px)}
.btn:hover::after{opacity:1;--bdraw:360deg}
.btn:active{transform:translateY(0)}
.btn svg{flex:none;transition:transform .2s var(--ease)}
.btn:hover svg{transform:translateX(1px)}
.btn:focus-visible{outline:2px solid var(--ink);outline-offset:3px}
.btn-sm{padding:.55rem 1.1rem;font-size:.86rem}
.btn-lg{padding:1.05rem 2rem;font-size:1rem}

/* solid buttons invert on hover: bg flips, text flips, light-gray ring
   shows the edge, then the dark trace completes the border */
.btn-primary{background-color:var(--ink);color:#fff}
.btn-primary:hover{background-color:var(--white);color:var(--ink)}

.btn-accent{background-color:var(--lime);color:var(--ink)}
.btn-accent:hover{background-color:var(--white)}

.btn-ghost,.btn-ghost-dark{
  border:1px solid var(--ink);color:var(--ink);background-color:transparent;
}
/* outlined = white button: inverts to dark, border steps back to
   light gray, and the trace redraws the edge in the new text color */
.btn-ghost:hover,.btn-ghost-dark:hover{
  background-color:var(--ink);color:var(--white);
  border-color:color-mix(in srgb,var(--ink) 25%,transparent);
}
.btn-ghost::after,.btn-ghost-dark::after{inset:-1px}

.btn-whatsapp{background-color:var(--ink);color:#fff}
.btn-whatsapp:hover{background-color:var(--white);color:var(--ink)}

/* dark-context overrides — inversion dissolves into the dark band,
   the white trace redraws the edge */
.section-dark .btn-ghost,.cta-band .btn-ghost{border-color:rgba(255,255,255,.4);color:#fff;background-color:transparent}
.section-dark .btn-ghost:hover,.cta-band .btn-ghost:hover{background-color:#fff;color:#0C0C0D;border-color:rgba(255,255,255,.25)}
.section-dark .btn-primary,.cta-band .btn-primary{background-color:#fff;color:var(--ink)}
.section-dark .btn-primary:hover,.cta-band .btn-primary:hover{background-color:#0C0C0D;color:#fff}
.section-dark .btn-whatsapp,.cta-band .btn-whatsapp{background-color:var(--lime);color:var(--ink)}
.section-dark .btn-whatsapp:hover,.cta-band .btn-whatsapp:hover{background-color:#0C0C0D;color:#fff}

.text-link{
  display:inline-flex;align-items:center;gap:.45rem;
  font-family:var(--font-head);font-weight:600;font-size:.95rem;color:var(--ink);
  padding-bottom:3px;
  background-image:linear-gradient(var(--lime),var(--lime)); /* flat underline */
  background-repeat:no-repeat;background-position:0 100%;background-size:0 2px;
  transition:background-size .2s var(--ease);
}
.text-link:hover{background-size:100% 2px}
.text-link::after{content:"→";transition:transform .15s var(--ease)}
.text-link:hover::after{transform:translateX(4px)}
.text-link:focus-visible{outline:2px solid var(--ink);outline-offset:3px;border-radius:2px}
.section-dark .text-link{color:#fff}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:100;
  background:var(--white);
  border-bottom:1px solid var(--line);
}
.nav-wrap{
  display:flex;align-items:center;justify-content:space-between;
  height:var(--header-h);gap:1.5rem;
}
.logo{display:inline-flex;align-items:center;gap:.6rem}
.logo-img{
      border-radius: 5px;
    height: 30px;
}
.logo-text{
  font-family:var(--font-head);font-weight:700;font-size:1.05rem;
  color:var(--ink);letter-spacing:-0.02em;
}
/* .logo-text::after{
  content:"";display:inline-block;width:6px;height:6px;border-radius:50%;
  background:var(--lime);margin-left:5px;vertical-align:baseline;
} */
.site-nav{display:flex;align-items:center;gap:1.75rem}
.nav-links{display:flex;align-items:center;gap:1.5rem}
.nav-links a{
  color:var(--muted);font-family:var(--font-head);font-weight:500;font-size:.9rem;
  transition:color .15s ease;position:relative;padding-block:.35rem;
}
.nav-links a::after{
  content:"";position:absolute;left:0;bottom:0;height:2px;width:100%;
  background:var(--lime);transform:scaleX(0);transform-origin:right;
  transition:transform .3s cubic-bezier(.22,1,.36,1);
}
.nav-links a:hover{color:var(--ink)}
/* underline enters from the left, exits to the right — directional, not symmetric */
.nav-links a:hover::after{transform:scaleX(1);transform-origin:left}
.nav-links a:focus-visible{outline:2px solid var(--ink);outline-offset:3px;border-radius:2px}
.nav-links a[aria-current="page"]{color:var(--ink)}
.nav-links a[aria-current="page"]::after{transform:scaleX(1);height:2px;background:var(--lime)}

.nav-toggle{
  display:none;flex-direction:column;justify-content:center;gap:5px;
  width:44px;height:44px;padding:11px;border-radius:var(--radius-btn);
}
/* :not(.visually-hidden) is load-bearing — the button's last child is the
   screen-reader label "Toggle menu". Without the exclusion this rule (0,0,1,1)
   outranks .visually-hidden (0,0,1,0) and stretches that absolutely-positioned
   label to width:100%, pushing the document ~370px wider than the screen. */
.nav-toggle span:not(.visually-hidden){
  display:block;height:2px;width:100%;background:var(--ink);
  transition:transform .25s var(--ease),opacity .2s ease;
}
body.nav-open .nav-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
body.nav-open .nav-toggle span:nth-child(2){opacity:0}
body.nav-open .nav-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ---------- Hero ---------- */
.hero{background:var(--white);color:var(--ink)}
.hero-home{padding-block:clamp(5rem,10vw,8.5rem) clamp(3.5rem,6vw,5rem)}
.hero-home h1{
  font-size:clamp(2.9rem,6.5vw,5rem);
  line-height:1.02;letter-spacing:-0.03em;
  max-width:16ch;margin-bottom:1.6rem;
}
.hero h1{color:var(--ink)}
.hero .lede{max-width:52ch}
.hero-cta{display:flex;flex-wrap:wrap;gap:.9rem;margin-top:2.4rem}

/* sub-page hero */
.hero-sub{padding-block:clamp(4rem,8vw,6.5rem) clamp(3.25rem,6vw,5rem)}
.hero-sub .section-head{margin-bottom:0;max-width:780px}

/* trust facts row */
.trust-strip{
  display:flex;flex-wrap:wrap;gap:.7rem 2.4rem;align-items:center;
  margin-top:clamp(2.75rem,6vw,4.25rem);padding-top:1.4rem;
  border-top:1px solid var(--line);
  font-family:var(--font-head);font-size:.85rem;font-weight:500;color:var(--muted);
}
.trust-strip li{display:inline-flex;align-items:center;gap:.55rem}
.trust-strip li::before{
  content:"";width:5px;height:5px;border-radius:50%;
  background:var(--lime);flex:none;
}

/* ---------- Editorial insight ---------- */
.insight-grid{
  display:grid;grid-template-columns:1.05fr .95fr;
  gap:clamp(2rem,5vw,4.5rem);align-items:start;
}
.insight-grid h2{max-width:16ch}
.insight-copy p{color:var(--muted);font-size:1.05rem;line-height:1.75}
.insight-copy p+p{margin-top:1.1rem}
.pull-stat{
  font-family:var(--font-head);font-weight:700;
  font-size:clamp(1.5rem,3.2vw,2.4rem);letter-spacing:-0.02em;line-height:1.15;
  color:var(--ink);max-width:26ch;
  margin-top:clamp(2.5rem,5vw,4rem);padding-top:1.6rem;
  border-top:1px solid var(--line);
}

/* ---------- Chips (industries + demo tags) ---------- */
.chip-row{display:flex;flex-wrap:wrap;gap:.55rem;margin-bottom:clamp(2rem,4vw,3rem)}
.chip{
  display:inline-flex;align-items:center;gap:.45rem;
  font-family:var(--font-head);font-size:.7rem;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;
  padding:.5rem .85rem;border-radius:var(--radius-btn);
  background-color:var(--white);border:1px solid var(--line);color:var(--muted);
  background-image:linear-gradient(var(--lime),var(--lime));
  background-repeat:no-repeat;background-position:0 100%;background-size:0 2px;
  transition:transform .15s var(--ease),border-color .15s ease,color .15s ease,
    background-size .25s cubic-bezier(.22,1,.36,1);
}
a.chip:hover{transform:translateY(-1px);border-color:var(--ink);color:var(--ink);background-size:100% 2px}
a.chip:focus-visible{outline:2px solid var(--ink);outline-offset:2px}
.chip-tier{color:var(--muted)}
.chip-toggle::before{
  content:"";width:6px;height:6px;border-radius:50%;background:var(--lime);flex:none;
}

/* ---------- Cards (generic) ---------- */
.cards-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.cards-4{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.cards-2{display:grid;grid-template-columns:repeat(2,1fr);gap:clamp(1.5rem,4vw,3.5rem)}

.card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:1.9rem 1.7rem;
  transition:transform .2s var(--ease),border-color .2s ease;
}
.card:hover{transform:translateY(-2px);border-color:var(--ink)}
.card h3{margin:1rem 0 .5rem}
.card p{font-size:.95rem;color:var(--muted)}

/* Card hover: whisper of elevation to accompany the lift */
.card,.pkg-card,.demo-card,.post-card,.niche-card,.glass-card,.tl-card{
  transition-property:transform,border-color,box-shadow,background-color;
  transition-duration:.25s;
  transition-timing-function:var(--ease);
}
.card:hover,.pkg-card:hover,.demo-card:hover,.post-card:hover,
.niche-card:hover,.glass-card:hover,.tl-card:hover{
  box-shadow:0 10px 24px -18px rgba(12,12,13,.2);
}

.glass-card{
  background:transparent;border:1px solid var(--line-dark);
  border-radius:var(--radius);padding:1.9rem 1.7rem;
  transition:transform .2s var(--ease),border-color .2s ease;
}
.glass-card:hover{transform:translateY(-2px);border-color:var(--muted)}
.glass-card h3{color:#fff;margin:1rem 0 .5rem}
.glass-card p{font-size:.95rem;color:var(--muted-dark)}

.icon-chip{
  width:44px;height:44px;flex:none;border-radius:var(--radius-btn);display:grid;place-items:center;
  background:var(--surface);border:1px solid var(--line);color:var(--ink);
}
.section-dark .icon-chip,.glass-card .icon-chip{
  background:transparent;border-color:var(--line-dark);color:var(--lime);
}

/* ---------- Niche grid (legacy) ---------- */
.niche-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:.9rem}
.niche-card{
  display:flex;align-items:center;gap:.9rem;
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:1rem 1.15rem;color:var(--ink);font-weight:600;
  font-family:var(--font-head);font-size:.94rem;
  transition:transform .15s var(--ease),border-color .15s ease;
}
.niche-card svg{flex:none;color:var(--muted)}
.niche-card small{display:block;font-family:var(--font-body);font-weight:400;color:var(--muted);font-size:.78rem;margin-top:.1rem}
.niche-card:hover{transform:translateY(-1px);border-color:var(--ink)}
.niche-card.niche-cta{background:var(--ink);color:#fff;border-color:var(--ink)}
.niche-card.niche-cta svg{color:var(--lime)}
.niche-card.niche-cta small{color:var(--muted-dark)}

/* ---------- Steps (legacy) ---------- */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.steps-5{grid-template-columns:repeat(5,1fr)}
.step .step-num{
  font-family:var(--font-head);font-weight:600;font-size:.8rem;
  display:inline-grid;place-items:center;width:36px;height:36px;
  border:1px solid var(--line);border-radius:50%;
  color:var(--ink);margin-bottom:1rem;font-variant-numeric:tabular-nums;
}
.section-dark .step .step-num{border-color:var(--line-dark);color:var(--lime)}
.step h3{font-size:1.05rem;margin-bottom:.45rem}
.step p{font-size:.92rem;color:var(--muted)}
.section-dark .step p{color:var(--muted-dark)}
.step-connector{position:relative}
.step-connector::after{
  content:"";position:absolute;top:18px;left:48px;right:8px;height:1px;
  background:var(--line);
}

/* ---------- Why-us numbered swiss list ---------- */
.why-list{border-top:1px solid var(--line)}
.why-list li{
  display:grid;grid-template-columns:90px 1fr 1.5fr;
  gap:1rem 2.5rem;align-items:start;
  padding:clamp(1.6rem,3vw,2.2rem) 0;
  border-bottom:1px solid var(--line);
}
.why-list .wl-num{
  font-family:var(--font-head);font-weight:600;font-size:.8rem;
  color:var(--muted);font-variant-numeric:tabular-nums;padding-top:.35rem;
}
.why-list h3{font-size:1.35rem;letter-spacing:-0.02em}
.why-list p{color:var(--muted);font-size:1rem;line-height:1.7}

/* ---------- Compact process row ---------- */
.process-row{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:clamp(2rem,4vw,2.75rem) clamp(1.5rem,3vw,2.5rem);
}
.process-row li{border-top:1px solid var(--ink);padding-top:1.1rem}
.process-row .pr-num{
  display:block;font-family:var(--font-head);font-weight:600;font-size:.72rem;
  letter-spacing:.12em;color:var(--muted);margin-bottom:.9rem;
  font-variant-numeric:tabular-nums;
}
.process-row h3{font-size:1.05rem;margin-bottom:.4rem}
.process-row p{font-size:.92rem;color:var(--muted)}

/* ---------- Package cards ---------- */
.pkg-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;align-items:stretch}
.pkg-card{
  position:relative;display:flex;flex-direction:column;
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:2.1rem 1.8rem;
  transition:transform .2s var(--ease),border-color .2s ease;
}
.pkg-card:hover{transform:translateY(-2px);border-color:var(--ink)}
.pkg-name{
  font-family:var(--font-head);font-weight:600;font-size:.72rem;
  letter-spacing:.14em;text-transform:uppercase;color:var(--muted);
}
.pkg-price{
  font-family:var(--font-head);font-weight:700;font-size:2.35rem;color:var(--ink);
  letter-spacing:-0.03em;margin:.7rem 0 .2rem;font-variant-numeric:tabular-nums;
}
.pkg-price small{font-size:.85rem;font-weight:500;color:var(--muted);letter-spacing:0}
.pkg-tag{font-size:.92rem;color:var(--muted);margin-bottom:1.4rem}
.pkg-list{margin-bottom:1.8rem;flex:1}
.pkg-list li{
  display:flex;gap:.7rem;align-items:baseline;
  font-size:.93rem;padding-block:.5rem;color:var(--ink);
  border-bottom:1px solid var(--line);
}
.pkg-list li:last-child{border-bottom:0}
.pkg-list li::before{content:"✓";flex:none;font-weight:600;font-size:.8rem;color:var(--ink)}
.pkg-popular{border-color:var(--ink)}
.pkg-badge{
  position:absolute;top:-12px;left:1.8rem;
  background:var(--lime);color:var(--ink);font-family:var(--font-head);
  font-size:.65rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  padding:.35rem .8rem;border-radius:6px;white-space:nowrap;
}
/* dark variant — homepage packages section */
.section-dark .pkg-card{background:var(--ink);border-color:var(--line-dark)}
.section-dark .pkg-card:hover{border-color:var(--muted)}
.section-dark .pkg-price{color:var(--lime)}
.section-dark .pkg-name{color:var(--muted-dark)}
.section-dark .pkg-tag{color:var(--muted-dark)}
.section-dark .pkg-list li{color:#E9E9E9;border-color:var(--line-dark)}
.section-dark .pkg-list li::before{color:var(--lime)}
.section-dark .pkg-popular{border-color:var(--lime)}
.section-dark .pkg-popular:hover{border-color:var(--lime)}

/* ---------- Demo / portfolio cards ---------- */
.demo-group{margin-bottom:clamp(2.8rem,5vw,4.5rem)}
.demo-group-title{
  display:flex;align-items:center;gap:1rem;
  font-family:var(--font-head);font-size:.78rem;font-weight:600;
  letter-spacing:.16em;text-transform:uppercase;color:var(--ink);
  margin-bottom:1.5rem;
}
.demo-group-title::after{content:"";flex:1;height:1px;background:var(--line)}
.demo-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}

.demo-card{
  display:flex;flex-direction:column;overflow:hidden;
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  transition:transform .2s var(--ease),border-color .2s ease;
}
.demo-card:hover{transform:translateY(-2px);border-color:var(--ink)}
.demo-thumb{
  --sw:#6A6A6A;
  position:relative;padding:1rem 1rem 0;
  background:var(--ink);
}
.demo-thumb-window{
  background:rgba(255,255,255,.04);border:1px solid var(--line-dark);
  border-bottom:0;border-radius:8px 8px 0 0;padding:1rem 1rem .9rem;
  transition:transform .25s var(--ease);
}
.demo-card:hover .demo-thumb-window{transform:translateY(-3px)}
.demo-dots{display:flex;gap:5px;margin-bottom:.85rem}
.demo-dots i{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,.25)}
.demo-line{height:11px;border-radius:3px;background:var(--sw);width:70%;margin-bottom:.55rem}
.demo-line-2{height:7px;border-radius:3px;background:rgba(255,255,255,.2);width:88%;margin-bottom:.4rem}
.demo-line-3{height:7px;border-radius:3px;background:rgba(255,255,255,.12);width:56%}
.demo-blocks{display:flex;gap:.5rem;margin-top:.85rem}
.demo-blocks i{flex:1;height:24px;border-radius:4px;background:rgba(255,255,255,.08)}
.demo-blocks i:first-child{background:color-mix(in srgb,var(--sw) 55%,transparent)}
.demo-body{padding:1.4rem 1.5rem 1.5rem;display:flex;flex-direction:column;flex:1}
.demo-chips{display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:.9rem}
.demo-chips .chip{padding:.35rem .65rem;font-size:.64rem}
.demo-body h3{font-size:1.2rem;margin-bottom:.4rem;letter-spacing:-0.02em}
.demo-body p{font-size:.92rem;color:var(--muted);margin-bottom:1.2rem;flex:1}
.demo-meta{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.swatches{display:flex;gap:.35rem}
.swatches i{
  width:13px;height:13px;border-radius:50%;
  box-shadow:inset 0 0 0 1px rgba(12,12,13,.08);
}

/* ---------- Comparison table ---------- */
.table-scroll{
  overflow-x:auto;border:1px solid var(--line);border-radius:var(--radius);
  background:var(--white);
  -webkit-overflow-scrolling:touch;
}
.compare{width:100%;border-collapse:collapse;min-width:760px;font-size:.93rem}
.compare caption{padding:1rem;font-weight:600;text-align:left}
.compare th,.compare td{padding:.85rem 1.1rem;text-align:center;border-bottom:1px solid var(--line)}
.compare thead th{
  font-family:var(--font-head);font-size:.95rem;color:var(--ink);
  padding-top:1.6rem;padding-bottom:1.2rem;vertical-align:top;
}
.compare thead .th-price{
  display:block;font-size:1.6rem;font-weight:700;letter-spacing:-0.03em;margin-top:.3rem;
  font-variant-numeric:tabular-nums;
}
.compare thead .th-note{display:block;font-family:var(--font-body);font-weight:400;font-size:.76rem;color:var(--muted);margin-top:.2rem}
.compare tbody th{text-align:left;font-weight:500;color:var(--ink);font-size:.9rem}
.compare .row-group th{
  font-family:var(--font-head);font-size:.68rem;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted);background:var(--surface);
  padding-block:.65rem;font-weight:600;
}
.compare .row-group td{background:var(--surface)}
.compare .col-popular{background:#FAFAFA}
.compare thead .col-popular{border-top:2px solid var(--ink)}
.compare .pop-flag{
  display:inline-block;background:var(--lime);color:var(--ink);font-size:.6rem;
  font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  font-family:var(--font-head);
  padding:.25rem .6rem;border-radius:6px;margin-bottom:.5rem;
}
.tick{color:var(--ink);font-weight:600;font-size:1rem}
.no{color:#C2C2C2;font-weight:500}
.compare tfoot td{padding-block:1.3rem;border-bottom:0}

/* ---------- Add-ons ---------- */
.addons{width:100%;border-collapse:collapse;font-size:.95rem;background:var(--white)}
.addons th,.addons td{padding:1.05rem 1.2rem;text-align:left;border-bottom:1px solid var(--line)}
.addons thead th{
  font-family:var(--font-head);font-size:.68rem;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted);font-weight:600;
}
.addons td:last-child,.addons th:last-child{text-align:right;white-space:nowrap}
.addons .addon-price{font-family:var(--font-head);font-weight:700;color:var(--ink);font-size:1.05rem}
.addons tbody tr:last-child th,.addons tbody tr:last-child td{border-bottom:0}
.addons tbody th{font-weight:600;color:var(--ink)}
.addons tbody td{color:var(--muted);font-size:.9rem}

/* ---------- Renewal band ---------- */
.renewal-band{
  display:grid;grid-template-columns:1fr 1.2fr;gap:clamp(2rem,5vw,4rem);
  align-items:center;
}
.renewal-price{
  font-family:var(--font-head);font-weight:700;font-size:clamp(2.4rem,5vw,3.4rem);
  color:var(--lime);letter-spacing:-0.03em;line-height:1;font-variant-numeric:tabular-nums;
}
.renewal-price small{font-size:1rem;font-weight:500;color:var(--muted-dark)}
.renewal-list{display:grid;grid-template-columns:1fr 1fr;gap:.8rem}
.renewal-list li{
  display:flex;gap:.7rem;align-items:baseline;
  border:1px solid var(--line-dark);border-radius:var(--radius-btn);
  padding:.9rem 1.05rem;font-size:.9rem;color:var(--muted-dark);
}
.renewal-list li::before{content:"✓";flex:none;color:var(--lime);font-weight:600;font-size:.8rem}

/* ---------- FAQ ---------- */
.faq{max-width:780px;margin-inline:auto;display:grid;gap:.75rem}
.faq details{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;transition:border-color .2s ease;
}
.faq details[open]{border-color:var(--ink)}
.faq summary{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  cursor:pointer;list-style:none;
  font-family:var(--font-head);font-weight:600;color:var(--ink);
  padding:1.15rem 1.4rem;font-size:1rem;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"+";flex:none;width:26px;height:26px;border-radius:50%;
  display:grid;place-items:center;font-weight:400;font-size:1.15rem;
  border:1px solid var(--line);color:var(--ink);
  transition:transform .2s var(--ease),background-color .2s ease,color .2s ease;
}
.faq details[open] summary::after{transform:rotate(45deg);background:var(--ink);color:var(--lime);border-color:var(--ink)}
.faq .faq-body{padding:0 1.4rem 1.3rem;color:var(--muted);font-size:.95rem}
.faq .faq-body p+p{margin-top:.6rem}

/* ---------- Timeline (process) ---------- */
.timeline{position:relative;max-width:820px;margin-inline:auto}
.timeline::before{
  content:"";position:absolute;left:23px;top:12px;bottom:12px;width:1px;
  background:var(--line);
}
.tl-step{position:relative;padding:0 0 clamp(2rem,4vw,2.75rem) 76px}
.tl-step:last-child{padding-bottom:0}
.tl-num{
  position:absolute;left:0;top:0;width:48px;height:48px;border-radius:50%;
  display:grid;place-items:center;
  font-family:var(--font-head);font-weight:600;font-size:1rem;color:var(--ink);
  background:var(--white);border:1px solid var(--ink);
  font-variant-numeric:tabular-nums;
}
.tl-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:1.6rem 1.7rem;
  transition:transform .2s var(--ease),border-color .2s ease;
}
.tl-card:hover{transform:translateX(2px);border-color:var(--ink)}
.tl-card h3{margin-bottom:.5rem;font-size:1.2rem}
.tl-card p{color:var(--muted);font-size:.95rem}
.tl-tag{
  display:inline-block;margin-top:1rem;
  font-family:var(--font-head);font-size:.66rem;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--muted);border:1px solid var(--line);
  padding:.35rem .75rem;border-radius:6px;
}

/* ---------- Checklist ---------- */
.check-list{display:grid;gap:.7rem}
.check-list li{
  display:flex;gap:.8rem;align-items:baseline;
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius-btn);
  padding:1rem 1.2rem;font-size:.95rem;color:var(--muted);
}
.check-list li::before{content:"✓";flex:none;color:var(--ink);font-weight:600;font-size:.85rem}
.check-list li strong{color:var(--ink)}

/* ---------- Stats strip ---------- */
.stat-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.stat-strip .stat{border-top:1px solid var(--line-dark);padding-top:1.4rem}
.stat-strip .stat b{
  display:block;font-family:var(--font-head);font-weight:700;
  font-size:clamp(2.1rem,4vw,3rem);letter-spacing:-0.03em;color:#fff;
  font-variant-numeric:tabular-nums;
}
.stat-strip .stat span{font-size:.9rem;color:var(--muted-dark);font-weight:400}
.stat-strip .stat small{display:block;font-size:.72rem;color:var(--muted);margin-top:.15rem}

/* ---------- Founder / about ---------- */
.founder-grid{
  display:grid;grid-template-columns:.85fr 1.15fr;gap:clamp(2.5rem,5vw,4.5rem);
  align-items:start;
}
.portrait-ph{
  position:relative;aspect-ratio:4/5;border-radius:var(--radius);
  background:var(--white);border:1px solid var(--line);
  display:grid;place-items:center;overflow:hidden;
}
.portrait-ph svg{stroke:#C2C2C2}
.portrait-ph figcaption{
  position:absolute;bottom:1rem;left:1rem;right:1rem;
  background:var(--white);border:1px solid var(--line);
  border-radius:var(--radius-btn);padding:.8rem 1.05rem;
}
.portrait-ph figcaption strong{display:block;color:var(--ink);font-family:var(--font-head);font-size:.95rem}
.portrait-ph figcaption span{font-size:.78rem;color:var(--muted)}
.prose p{margin-bottom:1.1rem;color:#3D3D40}
.section-dark .prose p{color:var(--muted-dark)}
.prose p strong{color:var(--ink)}
.section-dark .prose p strong{color:#fff}
.pull-quote{
  border-left:2px solid var(--lime);
  padding:.4rem 0 .4rem 1.4rem;margin:1.6rem 0;
  font-family:var(--font-head);font-weight:600;font-size:1.2rem;
  color:var(--ink);line-height:1.45;letter-spacing:-0.01em;
}
.section-dark .pull-quote{color:#fff}

/* ---------- CTA band (inner pages) ---------- */
.cta-band{
  background:var(--ink);border-radius:var(--radius);
  padding:clamp(2.8rem,6vw,4.5rem) clamp(1.6rem,5vw,4rem);
  text-align:center;color:var(--muted-dark);
}
.cta-band h2{color:#fff;margin-bottom:1rem;font-size:clamp(1.8rem,3.6vw,2.6rem)}
.cta-band p{margin:0 auto 2.2rem;max-width:56ch;color:var(--muted-dark)}
.cta-actions{display:flex;flex-wrap:wrap;gap:.9rem;justify-content:center}
.cta-note{margin-top:1.5rem;font-size:.85rem;color:var(--muted)}
.cta-note a{color:var(--muted-dark);text-decoration:underline;text-underline-offset:3px}
.cta-note a:hover{color:#fff}
.cta-band .badge-soft{color:var(--muted-dark)}

/* homepage final CTA — white, big */
.cta-final{text-align:left;max-width:820px}
.cta-final h2{font-size:clamp(2.2rem,4.6vw,3.4rem);letter-spacing:-0.03em;margin-bottom:1.2rem}
.cta-final p{color:var(--muted);font-size:1.05rem;margin-bottom:2.2rem;max-width:56ch}
.cta-final .cta-actions{justify-content:flex-start}
.cta-final .cta-note{color:var(--muted)}
.cta-final .cta-note a{color:var(--ink);text-decoration:underline;text-underline-offset:3px}

/* ---------- Forms ---------- */
.form-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:clamp(1.6rem,3.5vw,2.4rem);
}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.1rem}
.form-field{display:flex;flex-direction:column;gap:.45rem}
.form-field.full{grid-column:1/-1}
.form-field label{
  font-family:var(--font-head);font-weight:600;font-size:.85rem;color:var(--ink);
}
.form-field label small{font-weight:400;color:var(--muted)}
.form-field input,.form-field select,.form-field textarea{
  font:inherit;font-size:.95rem;color:var(--ink);
  border:1px solid var(--line);border-radius:var(--radius-btn);
  padding:.8rem 1rem;background:var(--white);
  transition:border-color .15s ease,box-shadow .15s ease;
  width:100%;
}
.form-field textarea{resize:vertical;min-height:120px}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{
  outline:none;border-color:var(--ink);
  box-shadow:0 0 0 3px rgba(0,245,146,.4);
}
.form-hint{font-size:.83rem;color:var(--muted);margin-top:1rem}

.contact-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:1.5rem;align-items:start}
.contact-aside{display:grid;gap:.9rem;align-content:start}
.contact-tile{
  display:flex;gap:1.1rem;align-items:flex-start;
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:1.4rem 1.5rem;
  transition:transform .2s var(--ease),border-color .2s ease;
}
.contact-tile:hover{transform:translateY(-1px);border-color:var(--ink)}
.contact-tile h3{font-size:1.02rem;margin-bottom:.3rem}
.contact-tile p{font-size:.9rem;color:var(--muted)}
.contact-tile a.big{
  font-family:var(--font-head);font-weight:600;color:var(--ink);font-size:1rem;
  background-image:linear-gradient(var(--lime),var(--lime));
  background-repeat:no-repeat;background-position:0 100%;background-size:0 2px;
  transition:background-size .2s var(--ease);padding-bottom:2px;
}
.contact-tile a.big:hover{background-size:100% 2px}
.tile-wa .icon-chip{background:var(--ink);border-color:var(--ink);color:var(--lime)}

/* ---------- Footer ---------- */
.site-footer{
  background:var(--white);color:var(--muted);
  border-top:1px solid var(--line);
  padding:clamp(3.5rem,6vw,5rem) 0 2rem;
}
.footer-grid{
  display:grid;grid-template-columns:1.5fr 1fr 1.1fr 1.1fr;
  gap:2.5rem;padding-bottom:2.75rem;
  border-bottom:1px solid var(--line);
}
.footer-brand p{font-size:.9rem;margin:1.1rem 0 1.4rem;max-width:32ch;color:var(--muted)}
.footer-grid h4{
  color:var(--ink);font-size:.7rem;letter-spacing:.16em;text-transform:uppercase;
  margin-bottom:1.2rem;font-weight:600;
}
.site-footer ul{list-style:none;margin:0;padding:0}
.site-footer li::marker{content:""}
.footer-grid ul{display:grid;gap:.5rem}
.footer-grid ul a{color:var(--muted);font-size:.88rem;transition:color .15s ease}
.footer-grid ul a:hover{color:var(--ink)}
.footer-niches ul{
  display:flex;flex-wrap:wrap;gap:.45rem;
  grid-template-columns:none;
}
.footer-niches ul li{display:inline-flex}
.footer-niches ul a{
  display:inline-block;white-space:nowrap;
  font-size:.78rem;color:var(--muted);
  border:1px solid var(--line);border-radius:6px;
  padding:.3rem .6rem;
  transition:color .15s ease,border-color .15s ease;
}
.footer-niches ul a:hover{color:var(--ink);border-color:var(--ink)}
.footer-contact li{display:flex;gap:.6rem;align-items:center;font-size:.88rem;color:var(--muted)}
.footer-contact svg{flex:none;color:var(--ink)}
.footer-bottom{
  display:flex;flex-wrap:wrap;gap:.8rem 2rem;justify-content:space-between;
  padding-top:1.8rem;font-size:.8rem;color:var(--muted);
}
.footer-bottom a{color:var(--ink)}
.footer-bottom a:hover{text-decoration:underline;text-underline-offset:3px}

/* ---------- WhatsApp float ---------- */
.wa-float{
  position:fixed;right:1.4rem;bottom:1.4rem;z-index:90;
  width:54px;height:54px;border-radius:50%;
  background:var(--ink);display:grid;place-items:center;
  border:1px solid var(--ink);
  transition:transform .15s var(--ease),background-color .15s ease;
}
.wa-float svg{width:24px;height:24px;fill:#fff;transition:fill .15s ease}
.wa-float:hover{transform:translateY(-2px);background:var(--lime);border-color:var(--lime)}
.wa-float:hover svg{fill:var(--ink)}

/* ---------- Reveal animations ----------
   Hidden state only applies when JS adds .js-anim to <html>,
   so content is never invisible without JS. */
@media (prefers-reduced-motion:no-preference){
  .reveal-load{animation:rise .5s var(--ease) both}
  .d1{animation-delay:.06s}.d2{animation-delay:.12s}.d3{animation-delay:.18s}.d4{animation-delay:.24s}
  @keyframes rise{
    from{opacity:0;transform:translateY(12px)}
    to{opacity:1;transform:translateY(0)}
  }
  html.js-anim .reveal{
    opacity:0;transform:translateY(38px);
    transition:opacity .85s cubic-bezier(.16,1,.3,1),transform .85s cubic-bezier(.16,1,.3,1);
  }
  html.js-anim .reveal.is-in{opacity:1;transform:none}
  html.js-anim [data-plx]{will-change:transform}
}

/* ---------- GSAP kinetic hero (js/hero.js) ----------
   When GSAP takes over, the CSS `rise` animation is disabled on the
   hero so the timeline controls every entrance. */
html.gsap-hero .hero-home .reveal-load{animation:none}
.h1-word{
  display:inline-block;overflow:hidden;vertical-align:top;
  padding-bottom:.09em;margin-bottom:-.09em; /* keep descenders inside the mask */
}
.h1-char{display:inline-block;will-change:transform}
/* split accent words inherit the lime-marker look of .gradient-text */
.h1-word-accent{
  background-image:linear-gradient(var(--lime),var(--lime));
  background-repeat:no-repeat;
  background-size:100% .18em;
  background-position:0 82%;
  padding-left:.04em;padding-right:.04em;
}

/* ---------- Misc ---------- */
.badge-soft{
  display:inline-flex;align-items:center;gap:.55rem;
  font-family:var(--font-head);font-weight:600;font-size:.72rem;
  letter-spacing:.14em;text-transform:uppercase;
  color:var(--muted);margin-bottom:1.5rem;
}
.badge-soft::before{content:"";width:5px;height:5px;border-radius:50%;background:var(--lime)}
.badge-soft b{color:var(--ink);font-weight:600}
.note-strip{
  display:flex;gap:.8rem;align-items:flex-start;
  background:var(--white);border:1px solid var(--line);
  border-radius:var(--radius-btn);padding:1rem 1.2rem;font-size:.9rem;color:var(--muted);
  max-width:820px;
}
.section-paper .note-strip{background:var(--white)}
.note-strip svg{flex:none;color:var(--ink);margin-top:.15rem}
.own-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}

/* ---------- Section-end action row (left-aligned, swiss) ---------- */
.section-more{margin-top:clamp(2.2rem,4vw,3rem)}

/* ---------- Hero split + desktop visual ---------- */
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(2rem,5vw,4.5rem);align-items:center}
.hero-visual{position:relative;min-height:420px}
.hv-frame{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:0 24px 48px -32px rgba(12,12,13,.18);overflow:hidden;
}
.hv-bar{display:flex;align-items:center;gap:6px;padding:.65rem .9rem;border-bottom:1px solid var(--line)}
.hv-bar i{width:8px;height:8px;border-radius:50%;background:var(--line)}
.hv-bar span{
  margin-left:.6rem;flex:1;height:20px;border-radius:5px;background:var(--surface);
  font-family:var(--font-head);font-size:.62rem;color:var(--muted);
  display:flex;align-items:center;padding:0 .6rem;
}
.hv-body{padding:1.1rem}
.hv-line{height:12px;border-radius:4px;background:var(--ink);width:62%;margin-bottom:.6rem}
.hv-line.thin{height:7px;background:var(--line);width:84%;margin-bottom:.45rem}
.hv-line.thin2{height:7px;background:var(--line);width:48%;margin-bottom:1rem}
.hv-btns{display:flex;gap:.5rem;margin-bottom:1rem}
.hv-btns i{width:92px;height:28px;border-radius:6px;background:var(--ink)}
.hv-btns i:last-child{background:var(--lime);width:76px}
.hv-blocks{display:grid;grid-template-columns:repeat(3,1fr);gap:.5rem}
.hv-blocks i{height:52px;border-radius:6px;background:var(--surface);border:1px solid var(--line)}
.hv-stack{position:relative;max-width:480px;margin-left:auto;padding:2.2rem 0 2.6rem 2rem}
/* dotted craft-mat behind the scene */
.hv-stack::before{
  content:"";position:absolute;top:0;right:-16px;bottom:0;left:24%;z-index:0;
  background-image:radial-gradient(#DADADA 1.3px,transparent 1.3px);
  background-size:17px 17px;border-radius:var(--radius);
}
/* lime chip peeking behind the back card */
.hv-stack::after{
  content:"";position:absolute;top:52px;right:-10px;width:54px;height:54px;z-index:0;
  background:var(--lime);border-radius:14px;
}
.hv-main{position:relative;z-index:2;max-width:440px}
.hv-back{position:absolute;top:11%;right:-4px;z-index:1;width:62%;opacity:.55;transform:rotate(2deg)}
/* WhatsApp enquiry toast — overlapping the card's bottom-right corner */
.wa-toast{
  position:absolute;z-index:3;right:-14px;bottom:14px;
  display:flex;align-items:center;gap:.7rem;
  background:var(--white);border:1px solid var(--line);border-radius:12px;
  padding:.7rem .95rem;
  box-shadow:0 20px 44px -22px rgba(12,12,13,.35);
}
.wa-toast-ic{
  position:relative;
  width:34px;height:34px;border-radius:50%;flex:none;
  background:var(--ink);display:grid;place-items:center;color:var(--lime);
}
.wa-toast-ic svg{width:16px;height:16px}
.type-line{display:block;min-width:212px}
#type-target{
  display:inline-block;
  border-right:2px solid var(--ink);
  padding-right:3px;
  white-space:nowrap;
  min-height:1em;
}
@media (prefers-reduced-motion:no-preference){
  #type-target{animation:caretblink 1.1s steps(1) infinite}
  @keyframes caretblink{0%,55%{border-right-color:var(--ink)}56%,100%{border-right-color:transparent}}
}
/* "Live in 7 days" tag pinned to the card's top-left */
.hv-badge{
  position:absolute;z-index:3;top:calc(2.2rem - 22px);left:calc(2rem - 14px);
  background:var(--lime);color:var(--ink);
  font-family:var(--font-head);font-weight:600;font-size:.72rem;
  letter-spacing:.06em;text-transform:uppercase;
  padding:.45rem .8rem;border-radius:8px;
  box-shadow:0 12px 24px -14px rgba(12,12,13,.4);
}
.wa-toast b{display:block;font-family:var(--font-head);font-weight:600;font-size:.86rem;letter-spacing:-0.01em;color:var(--ink);line-height:1.3}
.wa-toast .t-cap{display:block;font-size:.72rem;color:var(--muted)}
@media (prefers-reduced-motion:no-preference){
  .wa-toast{animation:toastfloat 5s ease-in-out infinite}
  @keyframes toastfloat{0%,100%{translate:0 0}50%{translate:0 -6px}}
}
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr}
  .hero-visual{display:none}
}

/* ---------- Budget rescue strip ---------- */
.budget-strip{
  margin-top:2.75rem;display:flex;flex-wrap:wrap;align-items:center;gap:1rem 2rem;
  border:1px dashed #C6C6C6;border-radius:var(--radius);padding:1.4rem 1.6rem;
}
.budget-strip p{flex:1;min-width:260px;font-size:.95rem;color:var(--muted);margin:0;max-width:none;line-height:1.6}
.budget-strip p strong{color:var(--ink)}
.section-dark .budget-strip{border-color:var(--line-dark)}
.section-dark .budget-strip p{color:var(--muted-dark)}
.section-dark .budget-strip p strong{color:#fff}

/* ---------- WhatsApp chat widget ---------- */
.wa-float{cursor:pointer}
.chat-panel{
  position:fixed;right:1.4rem;bottom:calc(1.4rem + 68px);z-index:95;
  width:min(360px,calc(100vw - 2rem));
  background:var(--white);border:1px solid var(--line);border-radius:16px;
  box-shadow:0 30px 60px -30px rgba(12,12,13,.35);overflow:hidden;
  opacity:0;visibility:hidden;transform:translateY(10px);
  transition:opacity .22s var(--ease),transform .22s var(--ease),visibility .22s;
}
body.chat-open .chat-panel{opacity:1;visibility:visible;transform:none}
.chat-head{display:flex;align-items:center;gap:.8rem;background:var(--ink);color:#fff;padding:1rem 1.1rem}
.chat-head .icon-dot{
  width:38px;height:38px;border-radius:50%;flex:none;
  background:var(--lime);display:grid;place-items:center;
  color:var(--ink);font-family:var(--font-head);font-weight:700;font-size:1rem;
}
.chat-head b{font-family:var(--font-head);font-size:.98rem;display:block;line-height:1.2}
.chat-head span{font-size:.74rem;color:var(--muted-dark);display:block}
.chat-close{margin-left:auto;color:#fff;font-size:1.35rem;padding:.2rem .4rem;line-height:1}
.chat-close:hover{color:var(--lime)}
.chat-body{padding:1rem 1.1rem 1.2rem;background:var(--surface)}
.chat-msg{
  background:var(--white);border:1px solid var(--line);border-radius:12px 12px 12px 4px;
  padding:.8rem 1rem;font-size:.9rem;color:var(--ink);max-width:92%;margin-bottom:1rem;line-height:1.55;
}
.chat-options{display:grid;gap:.5rem}
.chat-opt{
  text-align:left;background:var(--white);border:1px solid var(--line);border-radius:10px;
  padding:.75rem 1rem;font-size:.9rem;font-weight:500;color:var(--ink);
  font-family:var(--font-head);width:100%;
  display:flex;align-items:center;justify-content:space-between;gap:.6rem;
  transition:border-color .15s ease,transform .15s var(--ease);
}
.chat-opt:hover{border-color:var(--ink);transform:translateY(-1px)}
.chat-opt::after{content:"→";color:var(--muted);flex:none}
.chat-back{background:transparent;border:0;font-size:.8rem;color:var(--muted);font-family:var(--font-head);font-weight:600;margin-bottom:.6rem;display:inline-flex;align-items:center;gap:.35rem}
.chat-back:hover{color:var(--ink)}
.chat-note{font-size:.72rem;color:var(--muted);margin-top:.9rem;text-align:center;max-width:none}
@media (max-width:460px){.chat-panel{right:1rem;bottom:calc(1rem + 64px)}}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width:1020px){
  .cards-4{grid-template-columns:repeat(2,1fr)}
  .niche-grid{grid-template-columns:repeat(3,1fr)}
  .steps-5{grid-template-columns:repeat(3,1fr);row-gap:2.2rem}
  .step-connector::after{display:none}
  .demo-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .stat-strip{grid-template-columns:repeat(2,1fr);row-gap:2.2rem}
  .renewal-band{grid-template-columns:1fr;gap:2rem}
  .insight-grid{grid-template-columns:1fr;gap:1.75rem}
  .why-list li{grid-template-columns:60px 1fr 1.4fr;gap:1rem 1.75rem}
  .contact-grid{grid-template-columns:1fr}
}
@media (max-width:860px){
  .nav-toggle{display:flex}
  /* Auto-hide header: slides away as you read down, returns the moment you
     scroll up. Toggled by js/chat.js. */
  .site-header{transition:transform .3s var(--ease)}
  body.header-hidden .site-header{transform:translateY(-100%)}
  /* never hide it while the menu is open, or the panel goes with it */
  body.nav-open .site-header{transform:none}
  @media (prefers-reduced-motion:reduce){
    .site-header{transition:none}
  }
  .site-nav{
    /* Anchored to the header itself, so it inherits the header's exact width
       (position:fixed here resolves against a containing block that can be
       wider than the screen, which pushed the panel off the right edge).
       The header is position:sticky, so the panel travels with it and opens
       at the visitor's current scroll position. */
    position:absolute;top:100%;left:0;right:0;z-index:99;
    box-sizing:border-box;margin:0;
    max-height:calc(100vh - var(--header-h));
    max-height:calc(100dvh - var(--header-h));
    flex-direction:column;align-items:stretch;gap:0;
    background:var(--white);
    border-bottom:1px solid var(--line);
    box-shadow:0 24px 40px -24px rgba(12,12,13,.25);
    padding:.5rem 1.5rem 2rem;
    overflow-y:auto;overscroll-behavior:contain;
    opacity:0;visibility:hidden;transform:translateY(-6px);
    transition:opacity .22s var(--ease),transform .22s var(--ease),visibility .22s;
  }
  body.nav-open .site-nav{opacity:1;visibility:visible;transform:none}
  /* No scroll lock: freezing the scrollport (overflow:hidden on html/body)
     stops `position:sticky` working, which drops the header off-screen the
     moment the menu opens. The panel is position:fixed, so it stays put on
     its own. */
  /* Tap-anywhere-to-close backdrop, drawn from the header so no extra
     markup is needed on any page. Sits under the panel (99), over the page. */
  body.nav-open .site-header::after{
    content:"";position:fixed;inset:var(--header-h) 0 0 0;z-index:98;
    background:rgba(12,12,13,.38);
    animation:navfade .22s var(--ease) both;
  }
  @keyframes navfade{from{opacity:0}to{opacity:1}}
  .nav-links{flex-direction:column;align-items:stretch;gap:0;margin-bottom:1.4rem}
  .nav-links a{
    display:block;padding:1rem .2rem;font-size:1.05rem;color:var(--ink);
    border-bottom:1px solid var(--line);
  }
  .nav-links a::after{display:none}
  .nav-cta{width:100%;justify-content:center}
  .process-row{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:760px){
  :root{--section-pad:clamp(4rem,12vw,4.5rem)}
  .cards-3,.cards-2,.pkg-grid,.own-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr;gap:1.2rem}
  .steps-5{grid-template-columns:1fr}
  .niche-grid{grid-template-columns:repeat(2,1fr)}
  .demo-grid{grid-template-columns:1fr}
  .founder-grid{grid-template-columns:1fr}
  .portrait-ph{max-width:420px}
  .form-grid{grid-template-columns:1fr}
  .renewal-list{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:2.2rem}
  .hero-cta .btn{flex:1 1 100%;justify-content:center}
  .why-list li{grid-template-columns:48px 1fr;gap:.4rem 1.25rem}
  .why-list li p{grid-column:2}
  .process-row{grid-template-columns:1fr;gap:1.75rem}
  .timeline::before{left:19px}
  .tl-num{width:40px;height:40px;font-size:.9rem}
  .tl-step{padding-left:60px}
  /* mobile: "How we work" cards stack in one column */
  .cards-4{grid-template-columns:1fr}
  /* mobile: all CTA-band buttons equal, full width */
  .cta-actions .btn{flex:1 1 100%}
  /* mobile: breathing room above the "Or call ..." line */
  .cta-note{margin-top:2.25rem}
  /* Buttons default to white-space:nowrap. As a flex/grid item that also
     means min-width:auto = the full label width, so a long label ("Message
     the founder on WhatsApp") forces its container wider than the screen.
     On phones let labels wrap instead. */
  .btn{white-space:normal}
  /* Nothing in a grid/flex track may refuse to shrink below the viewport */
  .cards-3,.cards-2,.cards-4,.pkg-grid,.demo-grid,.steps,.steps-5,
  .own-grid,.niche-grid,.form-grid,.contact-grid,.footer-grid,.hero-grid{
    min-width:0;
  }
  .cards-3>*,.cards-2>*,.cards-4>*,.pkg-grid>*,.demo-grid>*,.steps>*,
  .steps-5>*,.own-grid>*,.niche-grid>*,.form-grid>*,.contact-grid>*,
  .footer-grid>*,.hero-grid>*{min-width:0}
}
@media (max-width:460px){
  .niche-grid{grid-template-columns:1fr}
  .stat-strip{grid-template-columns:1fr 1fr}
  .wa-float{right:1rem;bottom:1rem}
}


/* ---------- Comparison table -> stacked feature cards on phones ---------- */
@media (max-width:760px){
  .table-scroll{overflow:visible;border:0;border-radius:0;background:transparent}
  .compare{min-width:0;width:100%}
  .compare thead{display:none}
  .compare tbody,.compare tfoot,.compare tr,.compare tbody th,.compare td{display:block;width:100%}
  .compare tbody tr{
    background:var(--white);border:1px solid var(--line);border-radius:var(--radius-btn);
    padding:.3rem 1rem .55rem;margin-bottom:.6rem;
  }
  .compare tbody th{
    text-align:left;border:0;padding:.55rem 0 .3rem;
    font-family:var(--font-head);font-weight:600;color:var(--ink);font-size:.95rem;
  }
  .compare tbody td{
    display:flex;align-items:center;justify-content:space-between;gap:1rem;
    border:0;border-top:1px solid var(--surface);
    padding:.4rem 0;text-align:right;
  }
  .compare tbody td::before{
    content:attr(data-label);
    font-family:var(--font-head);font-size:.68rem;font-weight:600;
    letter-spacing:.1em;text-transform:uppercase;color:var(--muted);
  }
  .compare td.col-popular{background:transparent}
  .compare tbody td.col-popular::before{color:var(--ink)}
  .compare tbody tr.row-group{background:transparent;border:0;padding:0;margin:1.3rem 0 .55rem}
  .compare tbody tr.row-group th{
    background:transparent;padding:0;
    font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);
  }
  .compare tfoot tr{display:grid;gap:.55rem;padding:.5rem 0 0;background:transparent;border:0}
  .compare tfoot td{border:0;padding:0;text-align:center}
  .compare tfoot td:first-child{display:none}
  .compare tfoot td .btn{width:100%}
}

/* ---------- Print ---------- */
@media print{
  .site-header,.wa-float,.cta-band,.site-footer{display:none}
  body{color:#000}
}

/* ============================================================
   Dark theme (html[data-theme="dark"]) - variable swap + fixes
   ============================================================ */
html[data-theme="dark"]{
  --white:#0F1013;
  --ink:#F2F2F0;
  --surface:#17181B;
  --line:#26272B;
  --line-dark:#3A3C41;
  --muted:#9EA0A3;
  --muted-dark:#85878A;
  color-scheme:dark;
}
html[data-theme] body,html[data-theme] .site-header,html[data-theme] .site-footer{
  transition:background-color .3s ease,color .3s ease,border-color .3s ease;
}
/* anything sitting on the green accent keeps dark text in both themes */
html[data-theme="dark"] .btn-accent,
html[data-theme="dark"] .hv-badge,
html[data-theme="dark"] .pkg-badge,
html[data-theme="dark"] .pop-flag,
html[data-theme="dark"] .chat-head .icon-dot{color:#0C0C0D}
html[data-theme="dark"] ::selection{color:#0C0C0D}
/* buttons built on literal #fff/#000 */
html[data-theme="dark"] .skip-link{color:#0F1013}
html[data-theme="dark"] .btn-primary{color:#0F1013}
html[data-theme="dark"] .btn-primary:hover{background-color:var(--white);color:var(--ink)}
html[data-theme="dark"] .btn-whatsapp{color:#0F1013}
html[data-theme="dark"] .btn-whatsapp:hover{background-color:var(--white);color:var(--ink)}
html[data-theme="dark"] .btn-accent:hover{color:var(--ink)}
html[data-theme="dark"] .niche-card.niche-cta{color:#0F1013}
/* dark bands go deeper than the page */
html[data-theme="dark"] .section-dark,html[data-theme="dark"] .cta-band{background:#060708}
html[data-theme="dark"] .section-dark .pkg-card{background:#0F1013}
html[data-theme="dark"] .section-dark .btn-primary,html[data-theme="dark"] .cta-band .btn-primary{background:#FFFFFF;color:#0C0C0D}
html[data-theme="dark"] .section-dark .btn-primary:hover,html[data-theme="dark"] .cta-band .btn-primary:hover{background-color:#0C0C0D;color:#fff}
html[data-theme="dark"] .section-dark .btn-whatsapp,html[data-theme="dark"] .cta-band .btn-whatsapp{color:#0C0C0D}
html[data-theme="dark"] .section-dark .btn-whatsapp:hover,html[data-theme="dark"] .cta-band .btn-whatsapp:hover{background-color:#0C0C0D;color:#fff}
/* keep-their-look components */
html[data-theme="dark"] .demo-thumb{background:#08090B}
html[data-theme="dark"] .chat-head{background:#000000}
html[data-theme="dark"] .compare .col-popular{background:#1A1B1F}
html[data-theme="dark"] .budget-strip{border-color:#3A3C41}
html[data-theme="dark"] .hv-stack::before{background-image:radial-gradient(#2E3034 1.3px,transparent 1.3px)}
html[data-theme="dark"] .wa-float svg{fill:#0F1013}
html[data-theme="dark"] .wa-float:hover svg{fill:#0C0C0D}

/* ---------- Theme toggle button ---------- */
.theme-toggle{
  width:40px;height:40px;flex:none;border-radius:50%;
  background:var(--surface);
  border:1px solid #C9C9C9;color:var(--ink);
  display:grid;place-items:center;
  transition:border-color .15s ease,background-color .15s ease,transform .15s var(--ease);
}
.theme-toggle:hover{border-color:var(--ink);background:var(--white);transform:translateY(-1px)}
.theme-toggle svg{width:18px;height:18px;overflow:visible}
html[data-theme="dark"] .theme-toggle{border-color:#4A4C52}

/* Animated sun ⇄ moon morph.
   Light: full disc + 8 rays. Dark: disc grows while a masked "bite"
   slides in to carve the crescent; rays spin out with a stagger. */
.tt-icon{transition:transform .6s cubic-bezier(.34,1.56,.5,1)}
.tt-core{transition:r .45s cubic-bezier(.34,1.4,.5,1) .1s}
.tt-bite-c{transition:cx .5s cubic-bezier(.3,1.2,.4,1) .12s,cy .5s cubic-bezier(.3,1.2,.4,1) .12s}
.tt-rays{transform-origin:12px 12px;transition:transform .55s cubic-bezier(.5,0,.15,1)}
.tt-rays line{transform-origin:12px 12px;transition:transform .4s var(--ease),opacity .3s ease}
.tt-rays line:nth-child(1){transition-delay:.12s}
.tt-rays line:nth-child(2){transition-delay:.15s}
.tt-rays line:nth-child(3){transition-delay:.18s}
.tt-rays line:nth-child(4){transition-delay:.21s}
.tt-rays line:nth-child(5){transition-delay:.14s}
.tt-rays line:nth-child(6){transition-delay:.2s}
.tt-rays line:nth-child(7){transition-delay:.16s}
.tt-rays line:nth-child(8){transition-delay:.13s}
.theme-toggle:hover .tt-rays{transform:rotate(22deg)}
html[data-theme="dark"] .tt-icon{transform:rotate(-25deg)}
html[data-theme="dark"] .tt-core{r:8}
html[data-theme="dark"] .tt-bite-c{cx:17.5;cy:6.5}
html[data-theme="dark"] .tt-rays{transform:rotate(-100deg)}
html[data-theme="dark"] .tt-rays line{transform:scale(.2);opacity:0;transition-delay:0s}
html[data-theme="dark"] .theme-toggle:hover .tt-icon{transform:rotate(-5deg)}
@media (prefers-reduced-motion:reduce){
  .tt-icon,.tt-core,.tt-bite-c,.tt-rays,.tt-rays line{transition:none}
}

/* ---------- Header order: logo left | nav pushed right | toggle extreme right ----------
   Scoped to desktop: this rule sits after the 860px block, so unscoped it
   would re-apply margin-left:auto to the off-canvas mobile nav and undo the
   `margin:0` set there. */
@media (min-width:861px){
  .site-nav{margin-left:auto}
}
@media (max-width:860px){
  /* nav is off-canvas here, so push the theme toggle right, just left of the hamburger */
  .theme-toggle{margin-left:auto}
  /* floating WhatsApp stays visible on mobile too */
  .wa-float{display:grid}
  /* belt-and-braces: the off-canvas panel can never be wider than the header */
  .site-nav{max-width:100%}
}

/* ---------- Inner-page hero: abstract page scenes (ph-* / pv-*) ---------- */
.ph-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.ph-grid .section-head{margin-bottom:0}
.ph-visual{position:relative;width:100%}
.pv-scene{position:relative;max-width:380px;min-height:300px;margin-left:auto;display:flex;align-items:center;justify-content:center}
.pv-scene::before{content:"";position:absolute;inset:10% 4% 12% 14%;background-image:radial-gradient(#DADADA 1.3px,transparent 1.3px);background-size:16px 16px}

/* Process - checklist card */
.pv-card{position:relative;background:var(--white);border:1px solid var(--line);border-radius:16px;padding:1.3rem;width:280px;display:grid;gap:1rem;box-shadow:0 30px 70px rgba(12,12,13,.08);z-index:1}
.pv-row{display:flex;gap:.8rem;align-items:center}
.pv-dot{width:26px;height:26px;border-radius:50%;border:2px solid var(--line);flex:none;position:relative}
.pv-row.done .pv-dot{background:var(--lime);border-color:var(--lime)}
.pv-row.done .pv-dot::after{content:"";position:absolute;left:8px;top:4px;width:6px;height:11px;border:solid #0C0C0D;border-width:0 2px 2px 0;transform:rotate(45deg)}
.pv-row.now .pv-dot{border-color:var(--ink);animation:pvpulse 1.8s ease-in-out infinite}
.pv-lines{flex:1;display:grid;gap:.45rem}
.pv-lines i{display:block;height:8px;border-radius:99px;background:var(--surface)}
.pv-row.done .pv-lines i{opacity:.55}
@keyframes pvpulse{0%,100%{box-shadow:0 0 0 0 rgba(0,245,146,.55)}50%{box-shadow:0 0 0 9px rgba(0,245,146,0)}}

/* Packages - tier bars */
.pv-tiers{position:relative;display:flex;align-items:flex-end;gap:1.4rem;padding:0 .5rem;border-bottom:2px solid var(--ink);z-index:1}
.pv-tiers i{display:block;width:64px;border-radius:12px 12px 0 0;background:var(--white);border:1px solid var(--line);border-bottom:none;box-shadow:0 20px 50px rgba(12,12,13,.07)}
.pv-tiers .t1{height:88px}
.pv-tiers .t2{height:150px;background:var(--lime);border-color:var(--lime)}
.pv-tiers .t3{height:118px}

/* Portfolio - fanned screens */
.pv-fan{position:relative;width:290px;height:265px;z-index:1}
.pv-shot{position:absolute;width:190px;border-radius:14px;background:var(--white);border:1px solid var(--line);padding:1rem;box-shadow:0 24px 60px rgba(12,12,13,.09)}
.pv-shot span{display:block;width:34%;height:9px;border-radius:99px;background:var(--ink);margin-bottom:.7rem;opacity:.85}
.pv-shot i{display:block;height:8px;border-radius:99px;background:var(--surface);margin-top:.5rem}
.pv-shot b{display:block;width:44%;height:10px;border-radius:99px;background:var(--lime);margin-top:.8rem}
.pv-shot.s1{top:6px;left:0;transform:rotate(-7deg);opacity:.55}
.pv-shot.s2{top:26px;left:50px;transform:rotate(3deg);opacity:.8}
.pv-shot.s3{top:56px;left:92px;transform:rotate(-2deg)}

/* About - founder id card */
.pv-id{position:relative;background:var(--white);border:1px solid var(--line);border-radius:16px;padding:1.6rem 1.4rem 1.4rem;width:250px;text-align:center;box-shadow:0 30px 70px rgba(12,12,13,.08);z-index:1}
.pv-ava{position:relative;display:inline-block;width:72px;height:72px;border-radius:50%;background:var(--surface);border:1px solid var(--line)}
.pv-ava b{position:absolute;right:2px;bottom:2px;width:18px;height:18px;border-radius:50%;background:var(--lime);border:2px solid var(--white)}
.pv-id i{display:block;height:9px;border-radius:99px;background:var(--surface);margin:.6rem auto 0}
.pv-id .l1{width:64%;margin-top:1.1rem}
.pv-id .l2{width:42%}
.pv-sig{display:block;width:88px;height:14px;margin:1.1rem auto 0;border-bottom:3px solid var(--lime);border-radius:0 0 60% 40%;transform:rotate(-3deg)}

/* Contact - chat bubbles */
.pv-chat{position:relative;display:grid;gap:.8rem;width:260px;z-index:1}
.pv-bub{border-radius:16px;padding:.9rem 1rem;box-shadow:0 20px 50px rgba(12,12,13,.07);width:fit-content}
.pv-bub.in{background:var(--white);border:1px solid var(--line);border-bottom-left-radius:4px}
.pv-bub.out{background:var(--ink);border-bottom-right-radius:4px;justify-self:end}
.pv-bub i{display:block;height:8px;border-radius:99px;background:var(--surface);margin-top:.5rem}
.pv-bub i:first-child{margin-top:0}
.pv-typing{display:flex;gap:5px}
.pv-typing b{width:7px;height:7px;border-radius:50%;background:var(--lime);animation:pvblink 1.2s infinite}
.pv-typing b:nth-child(2){animation-delay:.2s}
.pv-typing b:nth-child(3){animation-delay:.4s}
@keyframes pvblink{0%,80%,100%{opacity:.25}40%{opacity:1}}

@media (max-width:980px){.ph-grid{grid-template-columns:1fr}.ph-visual{display:none}}

/* dark theme fixes for pv scenes */
html[data-theme="dark"] .pv-scene::before{background-image:radial-gradient(#2E3034 1.3px,transparent 1.3px)}
html[data-theme="dark"] .pv-card,
html[data-theme="dark"] .pv-id,
html[data-theme="dark"] .pv-shot,
html[data-theme="dark"] .pv-bub.in{background:#0F1013;box-shadow:none}
html[data-theme="dark"] .pv-tiers i{background:#0F1013;box-shadow:none}
html[data-theme="dark"] .pv-tiers .t2{background:var(--lime)}
html[data-theme="dark"] .pv-ava b{border-color:#0F1013}

/* ---------- Ad landing page (lp-*) ---------- */
.lp-head{position:sticky;top:0;z-index:60;background:var(--white);border-bottom:1px solid var(--line)}
.lp-head-in{display:flex;align-items:center;justify-content:space-between;height:64px}
.lp-head .logo{display:inline-flex;align-items:center;gap:.6rem;text-decoration:none;color:var(--ink);font-family:var(--font-head);font-weight:700;font-size:1.05rem}
.lp-head-cta{display:flex;align-items:center;gap:.7rem}
.lp-head-cta .lp-call{font-family:var(--font-head);font-weight:600;font-size:.9rem;color:var(--ink);text-decoration:none}
.lp-offer{position:relative;background:var(--white);border:1px solid var(--line);border-radius:18px;padding:1.6rem;max-width:360px;margin-left:auto;box-shadow:0 30px 70px rgba(12,12,13,.09);z-index:1}
.lp-offer-tag{font-family:var(--font-head);font-size:.68rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);margin-bottom:.6rem}
.lp-price{font-family:var(--font-head);font-weight:700;font-size:2.1rem;color:var(--ink);line-height:1}
.lp-price span{font-size:.85rem;font-weight:500;color:var(--muted);margin-left:.35rem}
.lp-list{list-style:none;margin:1.2rem 0;padding:0;display:grid;gap:.55rem}
.lp-list li{position:relative;padding-left:1.6rem;font-size:.92rem;color:var(--ink)}
.lp-list li::before{content:"";position:absolute;left:0;top:4px;width:13px;height:13px;border-radius:50%;background:var(--lime)}
.lp-list li::after{content:"";position:absolute;left:4px;top:7px;width:4px;height:6px;border:solid #0C0C0D;border-width:0 2px 2px 0;transform:rotate(45deg)}
.lp-offer .btn{width:100%;justify-content:center}
.lp-note{margin-top:.8rem;font-size:.78rem;color:var(--muted);text-align:center}
.lp-grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.lp-tile{border:1px solid var(--line);border-radius:16px;padding:1.5rem;background:var(--white)}
.lp-tile h3{font-size:1.05rem;margin-bottom:.5rem}
.lp-tile p{font-size:.92rem;color:var(--muted);margin:0}
.lp-tile .num{display:inline-grid;place-items:center;width:30px;height:30px;border-radius:50%;background:var(--lime);color:#0C0C0D;font-family:var(--font-head);font-weight:700;font-size:.85rem;margin-bottom:.9rem}
.lp-faq{max-width:760px;margin:0 auto;display:grid;gap:.8rem}
.lp-faq details{border:1px solid var(--line);border-radius:14px;background:var(--white);overflow:hidden}
.lp-faq summary{list-style:none;cursor:pointer;padding:1rem 1.2rem;font-family:var(--font-head);font-weight:600;font-size:.98rem;color:var(--ink);display:flex;justify-content:space-between;align-items:center;gap:1rem}
.lp-faq summary::-webkit-details-marker{display:none}
.lp-faq summary::after{content:"+";font-size:1.2rem;color:var(--muted);flex:none}
.lp-faq details[open] summary::after{content:"-"}
.lp-faq .a{padding:0 1.2rem 1.1rem;font-size:.92rem;color:var(--muted);line-height:1.65}
.lp-sticky{display:none}
@media (max-width:980px){.lp-grid3{grid-template-columns:1fr}}
@media (max-width:760px){
  .lp-sticky{position:fixed;left:0;right:0;bottom:0;z-index:70;display:grid;grid-template-columns:1fr 1fr;gap:.6rem;padding:.6rem .8rem calc(.6rem + env(safe-area-inset-bottom));background:var(--white);border-top:1px solid var(--line)}
  .lp-sticky .btn{justify-content:center}
  body.lp .wa-float{display:none}
  body.lp{padding-bottom:70px}
}
html[data-theme="dark"] .lp-head{background:#0C0C0D}
html[data-theme="dark"] .lp-offer,
html[data-theme="dark"] .lp-tile,
html[data-theme="dark"] .lp-faq details,
html[data-theme="dark"] .lp-sticky{background:#0F1013;box-shadow:none}

/* ---------- Blog ---------- */
.blog-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.6rem}
.post-card{border:1px solid var(--line);border-radius:16px;padding:1.8rem;background:var(--white);display:flex;flex-direction:column;gap:.8rem;text-decoration:none;color:var(--ink);transition:border-color .25s ease,transform .25s ease}
.post-card:hover{border-color:var(--ink);transform:translateY(-4px)}
.post-tag{font-family:var(--font-head);font-size:.68rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--muted)}
.post-card h2{font-size:1.22rem;line-height:1.35}
.post-card>p{color:var(--muted);font-size:.94rem}
.post-meta{font-size:.8rem;color:var(--muted);margin-top:auto;padding-top:.6rem}
.article{max-width:760px;margin:0 auto}
.article-head .eyebrow{margin-bottom:.9rem}
.article h1{font-size:clamp(1.9rem,4.4vw,2.9rem);line-height:1.2;margin-bottom:.9rem}
.article-meta{font-size:.85rem;color:var(--muted);margin-bottom:2.4rem}
.article-body{font-size:1.02rem;line-height:1.75}
.article-body h2{font-size:1.5rem;margin:2.4rem 0 .9rem}
.article-body h3{font-size:1.15rem;margin:1.8rem 0 .6rem}
.article-body p{margin-bottom:1rem}
.article-body ul,.article-body ol{margin:0 0 1rem 1.4rem}
.article-body li{margin-bottom:.45rem}
.article-body table{width:100%;border-collapse:collapse;margin:1.2rem 0;font-size:.95rem}
.article-body th,.article-body td{border:1px solid var(--line);padding:.65rem .8rem;text-align:left;vertical-align:top}
.article-body th{background:var(--surface);font-family:var(--font-head);font-size:.85rem}
.article-body a{color:var(--ink)}
.cta-box{border:1px solid var(--ink);border-radius:16px;padding:1.6rem;margin:2.2rem 0;background:var(--surface)}
.cta-box h3{margin:0 0 .5rem}
.cta-box p{margin-bottom:1.1rem}
.author-box{display:flex;gap:1rem;align-items:center;border-top:1px solid var(--line);margin-top:3rem;padding-top:1.6rem}
.author-box .a-ava{width:52px;height:52px;border-radius:50%;background:var(--ink);color:var(--white);display:grid;place-items:center;font-family:var(--font-head);font-weight:700;flex:none}
.author-box p{font-size:.88rem;color:var(--muted);margin:0}
.author-box b{color:var(--ink)}
.related{margin-top:3rem;border-top:1px solid var(--line);padding-top:1.6rem}
.related h3{margin-bottom:1rem}
.related ul{list-style:none;margin:0;padding:0;display:grid;gap:.6rem}
.related a{color:var(--ink);font-weight:500}
@media (max-width:760px){.blog-grid{grid-template-columns:1fr}}
html[data-theme="dark"] .post-card,
html[data-theme="dark"] .cta-box{background:#0F1013}
html[data-theme="dark"] .article-body th{background:#17181B}

/* ---------- Value stack + comparison (packages page) ---------- */
.vs-stack{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.vs-item{border:1px solid var(--line);border-radius:14px;padding:1.1rem 1.2rem;background:var(--white)}
.vs-item b{display:block;font-family:var(--font-head);font-size:.95rem;margin-bottom:.35rem;color:var(--ink)}
.vs-item span{font-size:.82rem;color:var(--muted)}
.vs-table-wrap{overflow-x:auto}
.vs-table{width:100%;border-collapse:collapse;font-size:.95rem;min-width:560px}
.vs-table th,.vs-table td{border:1px solid var(--line);padding:.75rem .9rem;text-align:left;vertical-align:top}
.vs-table th{background:var(--surface);font-family:var(--font-head);font-size:.82rem;letter-spacing:.05em;text-transform:uppercase}
.vs-table td:first-child{font-weight:600;width:24%}
.vs-table tr td:nth-child(2){color:var(--muted)}
@media (max-width:980px){.vs-stack{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.vs-stack{grid-template-columns:1fr}}
html[data-theme="dark"] .vs-item{background:#0F1013}
html[data-theme="dark"] .vs-table th{background:#17181B}
.pkg-worth{font-size:.78rem;color:var(--muted);margin:.15rem 0 .8rem;display:flex;align-items:center;gap:.45rem}
.pkg-worth::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--lime);flex:none}

/* ---------- Care plan / rescue / international strips (packages) ---------- */
.care-strip{display:flex;justify-content:space-between;align-items:center;gap:2rem;flex-wrap:wrap;border:1px solid var(--line-dark);border-radius:16px;padding:1.6rem 1.8rem;margin-top:2.6rem}
.care-strip h3{color:#FFFFFF;font-size:1.2rem;margin-bottom:.5rem}
.care-strip p{color:var(--muted-dark);font-size:.95rem;max-width:56ch;margin:0}
.care-price{display:flex;align-items:center;gap:1.4rem;flex-wrap:wrap}
.cp-amt{font-family:var(--font-head);font-weight:700;font-size:1.7rem;color:var(--lime);white-space:nowrap}
.cp-amt small{font-size:.85rem;font-weight:500;color:var(--muted-dark)}
.rescue-strip{display:flex;justify-content:space-between;align-items:center;gap:2rem;flex-wrap:wrap;border:1px solid var(--line);border-left:4px solid var(--lime);border-radius:16px;padding:1.5rem 1.8rem;margin:2.4rem 0 0;background:var(--white);max-width:860px}
.rescue-strip h3{font-size:1.15rem;margin-bottom:.5rem}
.rescue-strip p{color:var(--muted);font-size:.93rem;max-width:58ch;margin:0}
.rescue-strip .btn{flex:none}
.intl-strip{border:1px dashed var(--line);border-radius:14px;padding:1rem 1.4rem;margin:1.2rem 0 0;max-width:860px}
.intl-strip p{font-size:.9rem;color:var(--muted);margin:0}
.intl-strip strong{color:var(--ink)}
.intl-strip a{color:var(--ink)}
html[data-theme="dark"] .rescue-strip{background:#0F1013}
