/* =========================================================
   BeeSmart PRO Services — Design System
   "Charcoal & Steel"  ·  dark · cool-neutral · minimal · elegant
   -----------------------------------------------------------
   Ground : charcoal grey (a true neutral — no navy, no brown, no black)
   Text   : off-white → soft grey
   Accent : the logo's own blue — a calm steel-blue, used sparingly
            (links, one button, the eyebrow rule, marks). Never a flood.
   Type   : Schibsted Grotesk, one family, generous spacing
   Tagline: B BIZ SMART  (set in letter-spaced caps, as on the mark)
   ========================================================= */

:root {
  /* ---- Ground & surfaces (charcoal grey) ---- */
  --pearl:     #24272D;   /* page ground */
  --pearl-2:   #2A2D34;   /* alternating section */
  --white:     #30343C;   /* raised card */
  --line:      #3A3E47;   /* hairline */
  --line-2:    #4A4F5A;   /* stronger hairline */
  --silver:    #6B6F79;   /* decorative metal */

  /* ---- Text ---- */
  --ink:       #ECEEF1;   /* headings + emphasis */
  --ink-soft:  #B2B7BF;   /* secondary text */
  --ink-faint: #7C818B;   /* captions / meta */

  /* ---- Accent (the logo's blue, calmed for a dark ground) ---- */
  --blue:      #5AAAD0;
  --blue-deep: #8CC7E1;
  --blue-wash: #28343B;
  --danger:    #E08A5C;

  /* ---- Spacing ---- */
  --sp-1: .25rem; --sp-2: .5rem; --sp-3: .75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem;  --sp-7: 3rem;   --sp-8: 4.5rem;
  --sp-section: clamp(5.5rem, 4rem + 8vw, 11rem);

  --shadow-1: 0 1px 2px rgba(0, 0, 0, .3);
  --shadow-2: 0 26px 60px -22px rgba(0, 0, 0, .55);

  --radius: 2px;
  --maxw: 1120px;
  --header-h: 84px;

  --font: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.68;
  color: var(--ink-soft);
  background: var(--pearl);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.1; color: var(--ink); letter-spacing: -0.02em; }
p { margin: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
summary { cursor: pointer; }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}


/* ============ Layout ============ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(22px, 5vw, 48px); }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; background: var(--ink); color: #fff; padding: 12px 20px; font-weight: 600; font-size: .8rem; }
.skip-link:focus { left: 0; }

/* ============ Type components ============ */
.eyebrow {
  display: inline-flex; align-items: center; gap: .9em;
  font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: var(--sp-5);
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--blue); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 24px; height: 1px; background: var(--blue); }

.h-xl {
  font-size: clamp(1.9rem, 1.45rem + 2.3vw, 3rem);
  line-height: 1.08; letter-spacing: -0.03em; color: var(--ink); text-wrap: balance; font-weight: 500;
}
.h-xl .accent, .section-title .accent { color: var(--blue); }
.section-title {
  font-size: clamp(1.9rem, 1.4rem + 2.4vw, 2.9rem);
  line-height: 1.08; letter-spacing: -0.03em; color: var(--ink); margin-bottom: var(--sp-4);
  text-wrap: balance; font-weight: 500;
}
.section-title.center { text-align: center; }
.section-sub { font-size: 1.08rem; color: var(--ink-soft); max-width: 56ch; }
.section-sub.center { margin-inline: auto; text-align: center; }
.section-head { margin-bottom: var(--sp-8); }
.section-head.center { text-align: center; }
.mono-tag { font-size: .66rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); }

.tagline { font-size: .62rem; font-weight: 600; letter-spacing: .42em; text-transform: uppercase; color: var(--silver); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  padding: 16px 34px; border-radius: var(--radius); border: 1px solid transparent;
  font-weight: 600; font-size: .74rem; letter-spacing: .11em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  transition: transform .2s cubic-bezier(.2,.8,.2,1), background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-primary, .btn-accent { background: var(--ink); color: var(--pearl); border-color: var(--ink); }
.btn-primary:hover, .btn-accent:hover { background: #FFFFFF; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-whatsapp { background: #1FA855; color: #fff; border-color: #1FA855; }
.btn-whatsapp:hover { transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: .66rem; }
.btn-lg { padding: 18px 40px; font-size: .78rem; }

/* ============ Header — floating pill ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 150;
  padding-block: clamp(10px, 1.4vw, 18px);
  pointer-events: none;
  transition: padding-block .3s cubic-bezier(.2,.8,.2,1);
}
.header-inner {
  pointer-events: auto;
  width: calc(100% - 2 * clamp(12px, 3.5vw, 40px));
  max-width: calc(var(--maxw) - 32px);
  margin-inline: auto;
  height: 62px; padding-inline: clamp(16px, 2vw, 24px);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5);
  background: rgba(36, 39, 45, .68);
  backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 40px -18px rgba(0,0,0,.55);
  transition: background .25s ease, box-shadow .25s ease, height .25s ease, border-color .25s ease;
}
.site-header.scrolled { padding-block: clamp(6px, 1vw, 10px); }
.site-header.scrolled .header-inner {
  height: 58px;
  background: rgba(29, 32, 37, .9);
  border-color: var(--line-2);
  box-shadow: 0 18px 46px -16px rgba(0,0,0,.66);
}

.brand { display: flex; align-items: center; gap: .75rem; min-width: 0; flex-shrink: 0; }
.brand-mark { width: 40px; height: 44px; flex-shrink: 0; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.brand-name { font-weight: 700; font-size: 1.05rem; letter-spacing: -0.02em; color: var(--ink); white-space: nowrap; }
.brand-name b { color: var(--blue); font-weight: 700; }
.brand-sub { font-size: .53rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-faint); white-space: nowrap; margin-top: 3px; }

.main-nav { display: none; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.main-nav > a, .nav-group > button { color: var(--ink-soft); padding: 8px 0; cursor: pointer; background: none; border: none; display: inline-flex; align-items: center; gap: .4em; position: relative; transition: color .16s ease; }
.main-nav > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 1px; background: var(--blue); transition: right .24s cubic-bezier(.2,.8,.2,1); }
.main-nav > a:hover, .nav-group > button:hover, .main-nav > a[aria-current="page"] { color: var(--ink); }
.main-nav > a:hover::after, .main-nav > a[aria-current="page"]::after { right: 0; }

.nav-group { position: relative; }
.nav-group > button::after { content: ""; width: 5px; height: 5px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s ease; }
.nav-group:hover > button::after, .nav-group:focus-within > button::after { transform: rotate(225deg) translateY(-1px); }
.nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 300px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-2); padding: 8px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-group:hover .nav-dropdown, .nav-group:focus-within .nav-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dropdown a { display: block; padding: 12px 14px; border-radius: 2px; font-size: .84rem; font-weight: 500; letter-spacing: -0.01em; text-transform: none; color: var(--ink); transition: background .14s ease; }
.nav-dropdown a small { display: block; font-size: .6rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-top: 4px; }
.nav-dropdown a:hover { background: var(--pearl-2); }

.header-actions { display: flex; align-items: center; gap: var(--sp-4); flex-shrink: 0; }
.header-actions .btn { display: none; }
.nav-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; cursor: pointer; background: none; border: none; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; margin-inline: auto; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  pointer-events: auto;
  display: flex; flex-direction: column; gap: var(--sp-1);
  margin: 10px clamp(16px, 5vw, 48px) 0; padding-inline: clamp(18px, 4vw, 26px);
  background: rgba(31, 34, 39, .96);
  backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid var(--line); border-radius: 16px;
  max-height: 0; overflow: hidden; opacity: 0;
  box-shadow: 0 18px 46px -18px rgba(0,0,0,.6);
  transition: max-height .34s cubic-bezier(.2,.8,.2,1), padding .34s ease, opacity .24s ease;
}
.mobile-nav.open { max-height: 70vh; padding-block: var(--sp-4) var(--sp-6); opacity: 1; }
.mobile-nav a { padding: 14px 2px; font-size: 1rem; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-nav a.sub { padding-left: 1rem; font-size: .92rem; color: var(--ink-soft); }
.mobile-nav .btn { margin-top: var(--sp-5); align-self: flex-start; }

/* ============ Hero ============ */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  padding-block: clamp(7rem, 5rem + 7vw, 11rem) clamp(5rem, 4rem + 7vw, 10rem);
  background: linear-gradient(180deg, #2B2F36 0%, var(--pearl) 75%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; will-change: transform; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 72% 50%;
  opacity: .32;
  animation: kenburns 34s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.05); }
  to { transform: scale(1.13); }
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(98deg, #24272D 0%, rgba(36,39,45,.97) 40%, rgba(36,39,45,.75) 68%, rgba(36,39,45,.5) 100%),
    linear-gradient(180deg, rgba(36,39,45,.35), rgba(36,39,45,.8));
}
@media (prefers-reduced-motion: reduce) { .hero-bg img { animation: none; transform: scale(1.05); } }
.hero-inner { position: relative; z-index: 2; max-width: 900px; }
.btn svg { flex-shrink: 0; }

/* ---- Hero: the name is the whole point ---- */
.hero-brand { margin-bottom: clamp(1.8rem, 1rem + 3vw, 3rem); }
.hero-logo-xl {
  width: clamp(78px, 6vw + 44px, 132px); height: auto;
  margin-bottom: clamp(1rem, 2.2vw, 1.7rem);
  opacity: 0; transform: translateY(16px);
}
.hero-name {
  font-family: var(--font); font-weight: 500;
  font-size: clamp(2.7rem, 1.3rem + 7vw, 6.2rem);
  line-height: 0.95; letter-spacing: -0.045em; color: var(--ink);
  opacity: 0; transform: translateY(22px); filter: blur(12px);
}
.hero-name b { color: var(--blue); font-weight: 500; }
.hero-name .pro {
  display: block; margin-top: 0.14em;
  font-size: 0.42em; font-weight: 400; letter-spacing: -0.02em; color: var(--ink-soft);
}
.hero-tag {
  margin-top: clamp(0.9rem, 1.8vw, 1.4rem);
  font-size: clamp(0.6rem, 0.5rem + 0.3vw, 0.78rem); font-weight: 600;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--silver);
  opacity: 0; transform: translateY(16px);
}
.hero-line {
  font-size: clamp(0.95rem, 0.88rem + 0.3vw, 1.1rem); color: var(--ink-soft);
  max-width: 52ch; margin-bottom: var(--sp-6);
  opacity: 0; transform: translateY(16px);
}
.hero-actions {
  opacity: 0; transform: translateY(16px);
  display: flex; flex-wrap: wrap; gap: var(--sp-4) var(--sp-5); align-items: center;
}
.hero-actions .plain { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); border-bottom: 1px solid var(--line-2); padding-bottom: 3px; }
.hero-actions .plain:hover { color: var(--blue); border-color: var(--blue); }

.hero-ready .hero-logo-xl, .hero-ready .hero-name, .hero-ready .hero-tag,
.hero-ready .hero-line, .hero-ready .hero-actions {
  opacity: 1; transform: none; filter: none;
  transition: opacity .85s cubic-bezier(.2,.8,.2,1), transform .85s cubic-bezier(.2,.8,.2,1), filter 1s cubic-bezier(.2,.8,.2,1);
}
.hero-ready .hero-logo-xl { transition-delay: 40ms; }
.hero-ready .hero-name { transition-delay: 180ms; }
.hero-ready .hero-tag { transition-delay: 420ms; }
.hero-ready .hero-line { transition-delay: 540ms; }
.hero-ready .hero-actions { transition-delay: 640ms; }

/* inner-page hero (404) */
.hero .hero-inner > h1 {
  font-size: clamp(2.2rem, 1.5rem + 3vw, 3.6rem);
  line-height: 1.04; letter-spacing: -0.035em; color: var(--ink); font-weight: 500;
  margin-bottom: var(--sp-5);
}
.hero .hero-inner > h1 .accent { color: var(--blue); }
.hero .hero-inner > .hero-sub { font-size: 1.1rem; color: var(--ink-soft); max-width: 52ch; margin-bottom: var(--sp-6); }
.no-js .hero-logo-xl, .no-js .hero-name, .no-js .hero-tag, .no-js .hero-line, .no-js .hero-actions { opacity: 1; transform: none; filter: none; }

/* ============ Section base ============ */
.section { padding-block: var(--sp-section); position: relative; }
.section.alt { background: var(--pearl-2); border-block: 1px solid var(--line); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 90ms; }
.reveal[data-d="2"] { transition-delay: 180ms; }
.reveal[data-d="3"] { transition-delay: 270ms; }
.no-js .reveal { opacity: 1; transform: none; }
.no-js .hero .eyebrow, .no-js .hero h1, .no-js .hero-sub,
.no-js .hero-actions, .no-js .hero-lockup { opacity: 1; transform: none; filter: none; }

/* ============ Services (a quiet list) ============ */
.svc-list { border-top: 1px solid var(--line-2); }
.svc-item {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: var(--sp-3);
  padding: var(--sp-7) var(--sp-5);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease;
}
.svc-item::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--blue); transform: scaleY(0); transform-origin: 0 100%;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.svc-item:hover { background: var(--white); }
.svc-item:hover::before { transform: scaleY(1); transform-origin: 0 0; }
.svc-item .svc-ix { font-size: .64rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); }
.svc-item h3 { font-size: clamp(1.45rem, 1.1rem + 1.4vw, 2rem); color: var(--ink); line-height: 1.1; }
.svc-item p { font-size: 1rem; color: var(--ink-soft); max-width: 60ch; }
.svc-item .svc-foot { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-3) var(--sp-5); margin-top: var(--sp-2); }
.svc-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.svc-tags span { font-size: .58rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); padding: 4px 9px; border: 1px solid var(--line-2); border-radius: 999px; }
.svc-link { display: inline-flex; align-items: center; gap: .55em; font-size: .66rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.svc-link svg { width: 13px; height: 13px; transition: transform .2s ease; }
.svc-item:hover .svc-link svg { transform: translateX(6px); }
@media (min-width: 820px) {
  .svc-item { grid-template-columns: 15ch 1fr; column-gap: var(--sp-7); align-items: start; }
  .svc-item .svc-ix { padding-top: .5rem; }
}

/* breadth strip under the three areas */
.cap-block { margin-top: var(--sp-7); padding-top: var(--sp-6); border-top: 1px solid var(--line); }
.cap-lead { font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: var(--sp-4); }
.cap-strip { display: flex; flex-wrap: wrap; gap: .5rem; }
.cap-strip li {
  font-size: .78rem; font-weight: 500; letter-spacing: -0.005em;
  color: var(--ink-soft); padding: 7px 13px;
  border: 1px solid var(--line-2); border-radius: 999px;
  transition: color .18s ease, border-color .18s ease;
}
.cap-strip li:hover { color: var(--ink); border-color: var(--blue); }

/* ============ Services ledger (inner pages) ============ */
.ledger { border-top: 1px solid var(--line-2); }
.ledger-row { display: grid; grid-template-columns: auto 1fr auto; gap: var(--sp-5) var(--sp-6); align-items: start; padding-block: var(--sp-7); border-bottom: 1px solid var(--line); }
.ledger-num { font-size: .74rem; font-weight: 600; letter-spacing: .1em; color: var(--blue); padding-top: .5rem; }
.ledger-body h3 { font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2rem); color: var(--ink); margin-bottom: .5rem; }
.ledger-body p { font-size: 1rem; color: var(--ink-soft); max-width: 58ch; }
.ledger-body .tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: var(--sp-4); }
.tags span { font-size: .6rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); padding: 5px 10px; border: 1px solid var(--line-2); border-radius: 999px; }
.ledger-cta { align-self: center; display: inline-flex; align-items: center; gap: .6em; font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); white-space: nowrap; }
.ledger-cta svg { width: 13px; height: 13px; }

/* ============ Jurisdictions (inner pages) ============ */
.juris-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
.juris-card { padding: var(--sp-6); background: var(--white); border: 1px solid var(--line); border-radius: 3px; transition: transform .26s cubic-bezier(.2,.8,.2,1), border-color .26s ease; }
.juris-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.juris-card h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: .2rem; }
.juris-card .juris-type { font-size: .6rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); display: block; margin-bottom: var(--sp-4); }
.juris-card .juris-best { font-size: .94rem; color: var(--ink-soft); margin-bottom: var(--sp-4); }
.juris-card ul { display: flex; flex-direction: column; gap: .55rem; }
.juris-card li { position: relative; padding-left: 1.4em; font-size: .86rem; color: var(--ink-faint); }
.juris-card li::before { content: ""; position: absolute; left: 0; top: .55em; width: 5px; height: 5px; background: var(--blue); transform: rotate(45deg); }

/* ============ Process ============ */
.steps { position: relative; display: flex; flex-direction: column; gap: var(--sp-7); }
.steps::before { content: ""; position: absolute; left: 15px; top: 14px; bottom: 14px; width: 1px; background: var(--line-2); }
.steps .steps-fill { position: absolute; left: 15px; top: 14px; width: 1px; background: var(--blue); height: var(--steps-progress, 0%); transition: height .12s linear; }
.step { position: relative; padding-left: 52px; }
.step-num { position: absolute; left: 0; top: 0; width: 31px; height: 31px; display: grid; place-items: center; background: var(--pearl); border: 1px solid var(--line-2); border-radius: 50%; color: var(--ink-faint); font-size: .72rem; font-weight: 600; transition: color .3s ease, border-color .3s ease; }
.step.in .step-num { color: var(--blue); border-color: var(--blue); }
.step h3 { font-size: 1.28rem; color: var(--ink); margin-bottom: .35rem; }
.step p { font-size: .96rem; color: var(--ink-soft); max-width: 50ch; }

/* ============ Why us ============ */
.why-list { display: flex; flex-direction: column; border-top: 1px solid var(--line-2); }
.why-list li { display: grid; grid-template-columns: 1fr; gap: .35rem; padding-block: var(--sp-6); border-bottom: 1px solid var(--line); }
.why-list .t { color: var(--ink); font-size: 1.16rem; font-weight: 500; letter-spacing: -0.01em; }
.why-list .d { color: var(--ink-soft); font-size: .98rem; max-width: 58ch; }
@media (min-width: 720px) { .why-list li { grid-template-columns: 22ch 1fr; column-gap: var(--sp-7); align-items: baseline; } }

/* ============ FAQ ============ */
.faq-list { border-top: 1px solid var(--line-2); max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: var(--sp-5); padding: var(--sp-5) 0; cursor: pointer; list-style: none; font-size: 1.14rem; font-weight: 500; color: var(--ink); letter-spacing: -0.02em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--blue); transition: transform .24s ease; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding-bottom: var(--sp-5); color: var(--ink-soft); font-size: .98rem; max-width: 68ch; }
.faq-item .faq-a a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.faq-item .faq-a .prose { max-width: 74ch; }
.faq-item .faq-a .prose h3 { font-family: var(--font); font-weight: 600; font-size: 1.02rem; letter-spacing: -0.01em; color: var(--ink); margin: 1.5rem 0 .4rem; }
.faq-item .faq-a .prose h3:first-child { margin-top: 0; }
.faq-item .faq-a .prose p, .faq-item .faq-a .prose li { color: var(--ink-soft); font-size: .95rem; line-height: 1.75; }
.faq-item .faq-a .prose ul { list-style: disc; padding-left: 1.4em; margin: .4rem 0 var(--sp-4); }
.faq-item .faq-a .prose li { margin-bottom: .35rem; }

/* ============ WhatsApp topic chooser ============ */
.wa-group { margin: var(--sp-2) 0 var(--sp-6); }
.wa-group .lbl {
  display: flex; align-items: center; gap: .6rem;
  font-size: .66rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: var(--sp-4);
}
.wa-group .lbl svg { width: 15px; height: 15px; color: #25D366; }
.wa-topics { display: flex; flex-wrap: wrap; gap: .55rem; }
.wa-topic {
  display: inline-flex; align-items: center; gap: .6em;
  padding: 11px 16px; border: 1px solid var(--line-2); border-radius: 2px;
  font-size: .82rem; font-weight: 500; color: var(--ink); line-height: 1;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.wa-topic svg { width: 14px; height: 14px; color: #25D366; flex-shrink: 0; }
.wa-topic:hover { border-color: #25D366; background: rgba(37, 211, 102, .08); transform: translateY(-1px); }

/* ============ Contact ============ */
.lead { display: grid; grid-template-columns: 1fr; gap: var(--sp-7); }
.lead > * { min-width: 0; }
.contact-list { margin-top: var(--sp-6); border-top: 1px solid var(--line); }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; padding: var(--sp-4) 0; border-bottom: 1px solid var(--line); font-size: .96rem; color: var(--ink-soft); overflow-wrap: anywhere; }
.contact-list .c-ico { flex-shrink: 0; width: 20px; height: 20px; color: var(--blue); }
.contact-list a:hover { color: var(--blue); }
.contact-list .pending { font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--danger); }

.lead-form-wrap { padding: var(--sp-7); background: var(--white); border: 1px solid var(--line); border-radius: 3px; box-shadow: var(--shadow-2); }
.lead-form-wrap > h3 { font-size: 1.45rem; color: var(--ink); margin-bottom: .4rem; }
.lead-form-wrap > p { font-size: .92rem; color: var(--ink-soft); margin-bottom: var(--sp-5); }
.zoho-slot { display: block; }
.field { margin-bottom: var(--sp-4); }
.field label { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: .5rem; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; background: var(--pearl); border: 1px solid var(--line-2); border-radius: 2px; color: var(--ink); font-size: .95rem; transition: border-color .16s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); }
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: .76rem; color: var(--ink-faint); margin-top: var(--sp-4); }
.form-note a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.placeholder-banner { margin-bottom: var(--sp-5); padding: 13px 15px; border: 1px dashed var(--danger); border-radius: 2px; font-size: .74rem; line-height: 1.6; color: #E0A57C; background: rgba(224, 138, 92, .08); }
.lead-cta { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.lead-cta .btn { width: 100%; }

/* ============ Credentials strip (inner pages) ============ */
.creds { background: var(--pearl-2); border-bottom: 1px solid var(--line); }
.creds-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.cred { padding: var(--sp-6) var(--sp-5); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.cred:nth-child(-n+2) { border-top: none; }
.cred:nth-child(odd) { border-left: none; }
.cred h3 { font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.cred p { font-size: .88rem; color: var(--ink-soft); }

/* ============ Breadcrumbs & inner hero ============ */
.breadcrumbs { padding-top: var(--sp-6); font-size: .64rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .6em; }
.breadcrumbs li::after { content: "/"; margin-left: .6em; color: var(--line-2); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs [aria-current="page"] { color: var(--ink-soft); }
.hero-hex { display: none; }

.included-grid { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); }
.included-item { display: flex; gap: .9rem; align-items: flex-start; padding: var(--sp-4) var(--sp-2); border-bottom: 1px solid var(--line); }
.included-item svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--blue); margin-top: 4px; }
.included-item span { font-size: .94rem; color: var(--ink); }

/* ============ Prose (legal) ============ */
.prose { max-width: 72ch; }
.prose h2 { font-size: 1.5rem; color: var(--ink); margin: var(--sp-7) 0 var(--sp-2); }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--ink-soft); font-size: 1rem; line-height: 1.8; }
.prose p { margin-bottom: var(--sp-4); }
.prose ul { list-style: disc; padding-left: 1.4em; margin-bottom: var(--sp-4); }
.prose li { margin-bottom: .4rem; }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }

/* ============ Footer ============ */
.site-footer { background: var(--white); border-top: 1px solid var(--line); padding-block: var(--sp-8) var(--sp-6); color: var(--ink-faint); }
.footer-top { display: grid; grid-template-columns: 1fr; gap: var(--sp-7); padding-bottom: var(--sp-7); border-bottom: 1px solid var(--line); }
.footer-brand .brand-name { color: var(--ink); font-size: 1.18rem; }
.footer-brand .tagline { display: block; margin-top: .5rem; }
.footer-brand p { margin-top: var(--sp-4); font-size: .9rem; max-width: 34ch; color: var(--ink-soft); }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
.footer-col h4 { font-size: .62rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: var(--sp-4); }
.footer-col a, .footer-col span { display: block; padding: 5px 0; font-size: .86rem; color: var(--ink-faint); }
.footer-col a:hover { color: var(--blue); }
.footer-col em { font-style: normal; color: var(--silver); font-size: .75em; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--sp-4); padding-top: var(--sp-6); padding-right: 66px; font-size: .76rem; }
@media (min-width: 560px) { .footer-bottom { padding-right: 0; } }
.footer-bottom .legal-links { display: flex; gap: var(--sp-5); }
.footer-bottom a:hover { color: var(--blue); }

/* ============ Cookie banner ============ */
.linklike { background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; letter-spacing: inherit; }
.linklike:hover { color: var(--blue); }

.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--white); border-top: 1px solid var(--line-2);
  box-shadow: 0 -18px 44px -20px rgba(0,0,0,.5);
  transform: translateY(100%); transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.cookie-banner.show { transform: none; }
.cookie-inner { display: flex; flex-direction: column; gap: var(--sp-4);
  padding-top: var(--sp-5); padding-bottom: var(--sp-5); align-items: flex-start; }
.cookie-text { font-size: .86rem; line-height: 1.6; color: var(--ink-soft); max-width: 68ch; }
.cookie-text a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: var(--sp-3); flex-shrink: 0; }
.cookie-btn { padding: 12px 26px; }
@media (min-width: 780px) {
  .cookie-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: var(--sp-6); }
}
@media (prefers-reduced-motion: reduce) { .cookie-banner { transition: none; } }

/* ============ Floating WhatsApp ============ */
.wa-float { position: fixed; right: 20px; bottom: 20px; width: 50px; height: 50px; display: grid; place-items: center; background: #1FA855; color: #fff; border-radius: 50%; box-shadow: var(--shadow-2); z-index: 120; transition: transform .2s ease; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 25px; height: 25px; }

/* ============ Responsive ============ */
@media (min-width: 560px) {
  .juris-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .included-item:nth-child(odd) { border-right: 1px solid var(--line); padding-right: var(--sp-4); }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .header-actions .btn { display: inline-flex; }
  .creds-grid { grid-template-columns: repeat(4, 1fr); }
  .cred { border-top: none; }
  .cred:first-child { border-left: none; }
  .cred:not(:first-child) { border-left: 1px solid var(--line); }
  .lead { grid-template-columns: .82fr 1.18fr; align-items: start; }
  .footer-top { grid-template-columns: 1.1fr 1.5fr; }
  .juris-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none; }
  .steps { flex-direction: row; gap: var(--sp-6); }
  .steps::before { left: 6%; right: 6%; top: 15px; bottom: auto; width: auto; height: 1px; }
  .steps .steps-fill { left: 6%; top: 15px; width: var(--steps-progress, 0%); height: 1px; transition: width .12s linear; }
  .step { flex: 1; padding-left: 0; padding-top: 50px; }
  .step-num { left: 0; }
}
@media (max-width: 1023px) { .mobile-nav { display: flex; } }
