/* =========================================================
   Prof. Dr. Ahmed Ali — Orthopaedic Online Consultation
   Design system: premium clinical
   Headings: Schibsted Grotesk · Body: Figtree
   ========================================================= */

:root {
  /* ink + teal/navy trust palette */
  --ink:        #07302e;
  --teal-900:   #0a3a3c;
  --teal-800:   #0c494b;
  --teal-700:   #0e5f63;
  --teal-600:   #11716f;
  --teal-500:   #15837f;
  --teal-300:   #7ab8b1;
  --teal-100:   #cfe5e1;
  --teal-50:    #e9f2f0;

  /* warm neutrals */
  --cream:      #f6f3ec;
  --cream-2:    #efe9dd;
  --paper:      #ffffff;
  --muted:      #5d736f;
  --muted-2:    #7e9490;

  /* warm human accent — CTA only */
  --coral:      #ff6a4d;
  --coral-600:  #ee4f2d;
  --coral-700:  #d8421f;
  --coral-50:   #fff1ec;
  --amber:      #f4b455;

  --line:       rgba(7,48,46,0.10);
  --line-2:     rgba(7,48,46,0.06);

  --shadow-sm:  0 1px 2px rgba(7,48,46,.06), 0 1px 3px rgba(7,48,46,.05);
  --shadow:     0 6px 18px -6px rgba(7,48,46,.14), 0 2px 6px rgba(7,48,46,.06);
  --shadow-lg:  0 28px 60px -24px rgba(7,48,46,.30), 0 8px 24px -10px rgba(7,48,46,.14);
  --shadow-cta: 0 10px 24px -8px rgba(238,79,45,.55), 0 2px 6px rgba(216,66,31,.30);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 40px);

  --ease: cubic-bezier(.22,.61,.36,1);

  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

h1,h2,h3,h4 {
  font-family: "Schibsted Grotesk", "Figtree", sans-serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }
.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-600); display: inline-flex; align-items: center; gap: .55em;
}
.eyebrow::before { content:""; width: 22px; height: 2px; background: var(--coral); border-radius: 2px; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.22rem); line-height: 1.55; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-weight: 600; font-size: 1rem; letter-spacing: -0.01em;
  padding: 1rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: normal; text-align: center; line-height: 1.15; cursor: pointer;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-cta {
  background: var(--coral); color: #fff; box-shadow: var(--shadow-cta);
  font-family: "Schibsted Grotesk", sans-serif; font-weight: 600;
}
.btn-cta:hover { background: var(--coral-600); transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(238,79,45,.6); }
.btn-cta:active { transform: translateY(0); }
.btn-wa { background: #1faf54; color: #fff; box-shadow: 0 8px 20px -8px rgba(31,175,84,.5); }
.btn-wa:hover { background: #1a9a49; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.7); color: var(--teal-800); border-color: var(--line); }
.btn-ghost:hover { background: #fff; border-color: var(--teal-300); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--teal-800); border-color: rgba(7,48,46,.22); }
.btn-outline:hover { background: var(--teal-900); color: #fff; border-color: var(--teal-900); }
.btn-lg { padding: 1.15rem 1.9rem; font-size: 1.06rem; }
.btn-block { width: 100%; }

/* pills */
.pill {
  display: inline-flex; align-items: center; gap: .45em;
  font-size: .82rem; font-weight: 600; letter-spacing: -.01em;
  padding: .42em .82em; border-radius: 999px;
  background: var(--teal-50); color: var(--teal-700); border: 1px solid var(--teal-100);
}
.pill.verified { background: #e7f5ee; color: #11804a; border-color: #bfe6d0; }
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill svg { width: 1em; height: 1em; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246,243,236,.78); backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 1px 0 var(--line-2); background: rgba(246,243,236,.92); }
.header-inner { display: flex; align-items: center; gap: 1rem; height: 72px; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: linear-gradient(150deg, var(--teal-600), var(--teal-900));
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: 1.06rem; letter-spacing: -.02em; color: var(--ink); }
.brand-tag { font-size: .72rem; color: var(--muted); font-weight: 500; letter-spacing: .01em; }
.nav { display: none; align-items: center; gap: .3rem; margin-left: auto; }
.nav a { padding: .5rem .7rem; font-size: .94rem; font-weight: 500; color: var(--teal-800); border-radius: 8px; transition: background .2s, color .2s; white-space: nowrap; }
.nav a:hover { background: var(--teal-50); color: var(--teal-900); }
.header-actions { display: flex; align-items: center; gap: .6rem; margin-left: auto; }
.header-pill { display: none; }
.hamburger {
  display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line);
  background: rgba(255,255,255,.7); padding: 0;
}
.hamburger span { width: 20px; height: 2px; background: var(--teal-900); margin: 0 auto; border-radius: 2px; transition: .25s var(--ease); }
.header-book { display: none; }

@media (min-width: 600px){ .header-pill { display: inline-flex; } }
@media (min-width: 980px){
  .nav { display: flex; }
  .header-actions { margin-left: 0; }
  .hamburger { display: none; }
  .header-book { display: inline-flex; }
}

/* mobile menu sheet */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90; display: grid; grid-template-rows: auto 1fr;
  background: var(--cream); transform: translateY(-100%); transition: transform .4s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mm-top { display: flex; align-items: center; justify-content: space-between; height: 72px; padding-inline: var(--pad); border-bottom: 1px solid var(--line); }
.mm-close { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: #fff; font-size: 1.4rem; color: var(--ink); display: grid; place-items: center; }
.mm-links { display: flex; flex-direction: column; padding: var(--pad); gap: .25rem; }
.mm-links a { font-family: "Schibsted Grotesk", sans-serif; font-size: 1.5rem; font-weight: 600; padding: .7rem 0; border-bottom: 1px solid var(--line-2); color: var(--ink); }
.mm-cta { margin-top: 1.4rem; display: grid; gap: .7rem; }

/* ============ HERO ============ */
.hero { position: relative; padding-top: clamp(28px, 5vw, 56px); padding-bottom: clamp(48px, 6vw, 80px); overflow: clip; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 82% 8%, rgba(21,131,127,.10), transparent 70%),
    radial-gradient(50% 40% at 10% 90%, rgba(244,180,85,.10), transparent 70%);
}
.hero-grid { position: relative; z-index: 1; display: grid; gap: clamp(28px, 4vw, 52px); align-items: center; }
.hero-eyebrow { display: flex; flex-wrap: wrap; gap: .5rem .9rem; align-items: center; margin-bottom: 1.3rem; font-size: .8rem; font-weight: 600; color: var(--teal-700); }
.hero-eyebrow .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--teal-300); }
.hero h1 { font-size: clamp(2.25rem, 5.2vw, 3.5rem); letter-spacing: -.03em; line-height: 1.05; }
.hero h1 .accent { color: var(--teal-600); }
.hero-sub { margin-top: 1.2rem; max-width: 42ch; font-size: clamp(1.02rem, 1.4vw, 1.14rem); color: var(--muted); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.hero-trust { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .5rem; max-width: 540px; padding: 0; }
.hero-trust li { display: inline-flex; align-items: center; gap: .45rem; font-size: .84rem; font-weight: 600; color: var(--teal-800); list-style: none; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: .42rem .8rem; box-shadow: var(--shadow-sm); }
.hero-trust .ic { width: 20px; height: 20px; border-radius: 6px; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; flex: none; }
.hero-trust .ic svg { width: 15px; height: 15px; }
.hero-trust ul { margin: 0; padding: 0; }

/* hero portrait */
.hero-media { position: relative; display: flex; min-height: 0; }
.portrait-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--teal-50);
  aspect-ratio: 4/4.6; height: 100%;
}
.portrait-card img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.portrait-card::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(7,48,46,.55)); }
.portrait-badge {
  position: absolute; left: 18px; bottom: 18px; right: 18px; z-index: 2;
  display: flex; align-items: center; gap: .8rem; color: #fff;
}
.portrait-badge .pb-name { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: 1.12rem; line-height: 1.1; }
.portrait-badge .pb-role { font-size: .82rem; opacity: .85; }
.float-chip {
  position: absolute; z-index: 3; background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.6); border-radius: 14px; padding: .7rem .9rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: .6rem;
}
.float-chip .fc-ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; color: #fff; }
.float-chip .fc-num { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: 1.05rem; line-height: 1; color: var(--ink); }
.float-chip .fc-lab { font-size: .72rem; color: var(--muted); line-height: 1.1; }
.fc-1 { top: 20px; right: -10px; }
.fc-2 { bottom: 90px; left: -14px; animation-delay: -2.6s; }
@media (max-width: 720px){ .float-chip { display: none; } }

/* hero enhancements */
.hero-blob { position: absolute; border-radius: 50%; filter: blur(34px); pointer-events: none; }
.hb-1 { width: 340px; height: 340px; top: -70px; right: -50px; background: radial-gradient(circle, rgba(21,131,127,.22), transparent 70%); animation: blobA 17s ease-in-out infinite; }
.hb-2 { width: 300px; height: 300px; bottom: -60px; left: -70px; background: radial-gradient(circle, rgba(244,180,85,.2), transparent 70%); animation: blobB 21s ease-in-out infinite; }
@keyframes blobA { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(-22px,26px) scale(1.08);} }
@keyframes blobB { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(26px,-22px) scale(1.1);} }
.hero-rating { display: flex; align-items: center; gap: .7rem; margin-top: 1.2rem; flex-wrap: wrap; }
.hr-stars { color: var(--amber); font-size: 1.08rem; letter-spacing: .08em; }
.hr-text { font-size: .94rem; color: var(--muted); font-weight: 500; }
.hr-text strong { color: var(--teal-800); font-weight: 700; }
.hero-offer { margin-top: 1.1rem; font-size: .96rem; color: var(--teal-900); font-weight: 500; line-height: 1.65; max-width: 40ch; }
.ho-badge { display: inline-block; vertical-align: middle; margin-right: .5rem; white-space: nowrap; font-family: "Schibsted Grotesk", sans-serif; font-weight: 800; font-size: .78rem; color: #fff; background: var(--coral); padding: .32rem .55rem; border-radius: 7px; box-shadow: 0 4px 10px -4px rgba(238,79,45,.5); }
.hero-offer strong { color: var(--coral-600); font-weight: 700; }
.float-chip { animation: floatY 5.5s ease-in-out infinite; }
@keyframes floatY { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-9px);} }
.portrait-ring { position: absolute; inset: -20px; z-index: 0; border-radius: var(--r-xl); background: radial-gradient(58% 58% at 50% 32%, rgba(21,131,127,.2), transparent 72%); filter: blur(12px); }
.offer-ribbon { position: absolute; top: 16px; left: 16px; z-index: 3; background: var(--coral); color: #fff; border-radius: 14px; padding: .55rem .8rem; text-align: center; box-shadow: var(--shadow-cta); font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: .8rem; line-height: 1.12; animation: ribbonPop .6s var(--ease) .4s both; }
.offer-ribbon strong { display: block; font-size: 1.5rem; font-weight: 800; }
.offer-ribbon span { display: block; font-size: .62rem; font-weight: 600; opacity: .92; text-transform: uppercase; letter-spacing: .04em; margin-top: 2px; }
@keyframes ribbonPop { 0%{ transform: scale(.6) rotate(-8deg); opacity: 0; } 60%{ transform: scale(1.08) rotate(2deg); } 100%{ transform: scale(1) rotate(-4deg); opacity: 1; } }

@media (min-width: 940px){
  .hero-grid { grid-template-columns: 1.05fr .92fr; align-items: stretch; }
  .hero-copy { align-self: center; }
  .portrait-card { aspect-ratio: auto; min-height: 560px; }
  .hero-trust { margin-top: 1.8rem; }
}

/* ============ TRUST BAR ============ */
.trustbar { background: var(--teal-900); color: #fff; }
.trustbar .wrap { padding-block: 1.5rem; }
.trust-track { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .6rem 1.6rem; text-align: center; }
.trust-item { display: flex; align-items: center; gap: .6rem; font-size: .94rem; font-weight: 500; color: #eaf3f1; }
.trust-item strong { font-family: "Schibsted Grotesk", sans-serif; color: #fff; font-weight: 700; }
.trust-item .ti-ic { color: var(--teal-300); }
.trust-item .ti-ic svg { width: 18px; height: 18px; display: block; }
.trust-sep { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.25); }
@media (max-width: 760px){ .trust-sep { display: none; } .trust-track { gap: .9rem 1.3rem; } }

/* ============ BODY MAP (signature) ============ */
.bodymap { background: linear-gradient(180deg, var(--cream), #f1ede4); }
.bm-head { max-width: 640px; margin: 0 auto clamp(28px, 4vw, 48px); }
.bm-layout { display: grid; gap: clamp(20px, 3vw, 36px); align-items: stretch; }
.bm-stage {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, #ffffff, #eef4f2 60%, #e6efec);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  min-height: 460px; display: grid; place-items: center; padding: 24px;
  -webkit-user-select: none; user-select: none;
}
.bm-hint {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 600;
  color: var(--teal-700); background: rgba(255,255,255,.8); border: 1px solid var(--line);
  padding: .4rem .8rem; border-radius: 999px; z-index: 4; transition: opacity .4s; pointer-events: none;
}
.bm-hint svg { width: 15px; height: 15px; }
.bm-stage.touched .bm-hint { opacity: 0; }
.bm-figure { width: min(320px, 78%); height: auto; overflow: visible; }
@media (prefers-reduced-motion: no-preference){
  .bm-figure-rot { transform-origin: 130px 360px; animation: bmsway 9s ease-in-out infinite; }
  .bm-stage.touched .bm-figure-rot { animation-play-state: paused; }
}
@keyframes bmsway { 0%,100%{ transform: rotateY(0deg);} 50%{ transform: rotateY(0deg) translateY(-4px);} }

.bm-body-fill { fill: url(#bodyGrad); stroke: #b7d2cc; stroke-width: 1.4; }
.bm-bone { stroke: rgba(255,255,255,.55); stroke-width: 2; fill: none; stroke-linecap: round; }

.hotspot { cursor: pointer; outline: none; -webkit-tap-highlight-color: transparent; }
.hotspot:focus { outline: none; }
.hotspot:focus-visible .hs-ring { opacity: 1; }
.hotspot:focus-visible .hs-dot { r: 9; }
.hotspot .hs-hit { fill: transparent; }
.hotspot .hs-pulse { fill: var(--coral); opacity: .25; transform-origin: center; transform-box: fill-box; }
.hotspot .hs-dot { fill: var(--coral); stroke: #fff; stroke-width: 2.5; transition: r .2s var(--ease); }
.hotspot .hs-ring { fill: none; stroke: var(--coral); stroke-width: 1.5; opacity: 0; transition: opacity .2s; }
@media (prefers-reduced-motion: no-preference){
  .hotspot .hs-pulse { animation: hspulse 2.6s ease-out infinite; }
  .hotspot:nth-child(2) .hs-pulse { animation-delay: .4s; }
  .hotspot:nth-child(3) .hs-pulse { animation-delay: .8s; }
  .hotspot:nth-child(4) .hs-pulse { animation-delay: 1.2s; }
  .hotspot:nth-child(5) .hs-pulse { animation-delay: 1.6s; }
  .hotspot:nth-child(6) .hs-pulse { animation-delay: 2s; }
}
@keyframes hspulse { 0%{ transform: scale(.6); opacity:.4; } 70%{ opacity:0; } 100%{ transform: scale(2.4); opacity:0; } }
.hotspot:hover .hs-dot, .hotspot.active .hs-dot { r: 9; }
.hotspot:hover .hs-ring, .hotspot.active .hs-ring { opacity: 1; }
.hotspot.active .hs-dot { fill: var(--coral-600); }
.hs-label {
  font-family: "Figtree", sans-serif; font-size: 11px; font-weight: 700; fill: var(--teal-800);
  paint-order: stroke; stroke: rgba(255,255,255,.9); stroke-width: 3px; pointer-events: none;
}

/* body map panel */
.bm-panel {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow); padding: clamp(22px, 3vw, 30px); display: flex; flex-direction: column;
  min-height: 460px;
}
.bm-panel-empty { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 1rem; height: 100%; }
.bm-panel-empty .em-ic { width: 56px; height: 56px; border-radius: 16px; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; }
.bm-panel-empty .em-ic svg { width: 28px; height: 28px; }
.bm-region-tag { display: inline-flex; align-items:center; gap:.4rem; font-size:.78rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color: var(--coral-600); }
.bm-region-name { font-family: "Schibsted Grotesk", sans-serif; font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 700; margin-top: .3rem; color: var(--ink); }
.bm-cond-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .7rem; }
.bm-cond-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: 1.02rem; font-weight: 500; color: var(--teal-900); }
.bm-cond-list .ck { width: 22px; height: 22px; border-radius: 7px; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; flex: none; margin-top: 1px; }
.bm-cond-list .ck svg { width: 13px; height: 13px; }
.bm-online-note { margin-top: 1.4rem; display: flex; align-items: center; gap: .6rem; font-size: .95rem; font-weight: 600; color: var(--teal-700); background: var(--teal-50); border-radius: 12px; padding: .8rem 1rem; }
.bm-online-note svg { width: 18px; height: 18px; flex: none; }
.bm-panel-cta { margin-top: auto; padding-top: 1.5rem; }
.bm-chip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.3rem; }
.bm-chip { font-size: .85rem; font-weight: 600; padding: .45rem .8rem; border-radius: 999px; border: 1px solid var(--line); background: var(--cream); color: var(--teal-800); transition: .2s; cursor: pointer; }
.bm-chip:hover { border-color: var(--teal-300); background: #fff; }
.bm-chip.active { background: var(--teal-900); color: #fff; border-color: var(--teal-900); }
.bm-mobile-chips { display: none; }

@media (min-width: 900px){ .bm-layout { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){
  .bm-stage { min-height: 380px; }
  .bm-panel { min-height: auto; }
  .hs-label { display: none; }
}

/* ============ SERVICES ============ */
.svc-grid { display: grid; gap: 14px; grid-template-columns: 1fr; margin-top: clamp(28px,4vw,44px); }
.svc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.5rem 1.4rem; display: flex; flex-direction: column; gap: .7rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; cursor: pointer;
  position: relative; overflow: hidden;
}
.svc-card::after { content:""; position:absolute; left:0; top:0; height:3px; width:0; background: var(--coral); transition: width .35s var(--ease); }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal-100); }
.svc-card:hover::after { width: 100%; }
.svc-ic { width: 46px; height: 46px; border-radius: 13px; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; transition: .3s; }
.svc-card:hover .svc-ic { background: var(--teal-600); color: #fff; }
.svc-ic svg { width: 24px; height: 24px; }
.svc-card h3 { font-size: 1.12rem; font-weight: 700; letter-spacing: -.01em; }
.svc-card p { font-size: .95rem; color: var(--muted); }
.svc-card .svc-go { margin-top: auto; padding-top: .4rem; font-size: .85rem; font-weight: 600; color: var(--teal-600); display: inline-flex; align-items: center; gap: .35rem; opacity: 0; transform: translateX(-4px); transition: .3s; }
.svc-card:hover .svc-go { opacity: 1; transform: translateX(0); }
.svc-banner {
  margin-top: clamp(28px,4vw,40px); background: var(--teal-900); color: #fff;
  border-radius: var(--r-lg); padding: clamp(24px,4vw,40px); display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 1.4rem;
}
.svc-banner h3 { font-size: clamp(1.3rem,2.4vw,1.7rem); max-width: 22ch; }
.svc-banner p { color: rgba(255,255,255,.7); margin-top: .4rem; }
@media (min-width: 620px){ .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px){ .svc-grid { grid-template-columns: repeat(3,1fr); } }

/* ============ HOW IT WORKS ============ */
.how { background: var(--ink); color: #fff; }
.how .eyebrow { color: var(--teal-300); }
.how .eyebrow::before { background: var(--coral); }
.how h2 { color: #fff; }
.how .lead { color: rgba(255,255,255,.72); }
.steps { display: grid; gap: 18px; margin-top: clamp(34px,5vw,56px); counter-reset: step; }
.step { position: relative; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 1.7rem 1.5rem; }
.step-num { font-family: "Schibsted Grotesk", sans-serif; font-size: 1rem; font-weight: 700; width: 40px; height: 40px; border-radius: 12px; background: var(--coral); color: #fff; display: grid; place-items: center; margin-bottom: 1rem; }
.step h3 { font-size: 1.15rem; color: #fff; }
.step p { margin-top: .5rem; color: rgba(255,255,255,.66); font-size: .96rem; }
.step .step-line { display: none; }
.how-cta { display: flex; justify-content: center; margin-top: clamp(30px,4vw,44px); }
@media (min-width: 760px){
  .steps { grid-template-columns: repeat(4,1fr); }
  .step .step-line { display: block; position: absolute; top: 1.7rem; right: -10px; width: 20px; height: 40px; }
}

/* ============ ABOUT ============ */
.about-grid { display: grid; gap: clamp(32px,5vw,56px); align-items: start; }
.about-media { position: relative; }
.about-photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/4.6; background: var(--teal-50); }
.about-photo img { width:100%; height:100%; object-fit: cover; object-position: 50% 16%; }
.about-quote {
  margin-top: 0; position: relative;
}
.quote-card {
  background: var(--teal-900); color: #fff; border-radius: var(--r-lg); padding: clamp(22px,3vw,30px);
  margin-top: 18px; box-shadow: var(--shadow);
}
.quote-card .qmark { font-family: "Schibsted Grotesk", sans-serif; font-size: 3rem; line-height: .6; color: var(--coral); }
.quote-card p { font-size: clamp(1.1rem,1.8vw,1.32rem); font-weight: 500; line-height: 1.4; margin-top: .6rem; font-family: "Schibsted Grotesk", sans-serif; letter-spacing: -.01em; }
.quote-card .qby { margin-top: 1rem; font-size: .9rem; color: rgba(255,255,255,.7); }
.about-body p { font-size: 1.06rem; color: var(--teal-900); line-height: 1.66; }
.about-body p + p { margin-top: 1rem; }
.cred-chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; }
.cred-chip { display:inline-flex; align-items:center; gap:.45rem; font-size:.86rem; font-weight:600; color: var(--teal-800); background: var(--paper); border:1px solid var(--line); border-radius:999px; padding:.5rem .85rem; }
.cred-chip svg { width: 14px; height: 14px; color: var(--teal-500); }
@media (min-width: 900px){ .about-grid { grid-template-columns: .82fr 1.18fr; } }

/* ============ CREDENTIALS / RESEARCH ============ */
.creds { background: linear-gradient(180deg, #f1ede4, var(--cream)); }
.creds-grid { display: grid; gap: 18px; margin-top: clamp(30px,4vw,48px); }
.creds-col { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px,3vw,34px); }
.creds-col h3 { font-size: 1.25rem; display: flex; align-items: center; gap: .6rem; }
.creds-col h3 .ch-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; flex: none; }
.creds-col h3 .ch-ic svg { width: 21px; height: 21px; }
.train-list { list-style: none; margin: 1.3rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.train-list li { font-size: .9rem; font-weight: 600; color: var(--teal-800); background: var(--teal-50); border: 1px solid var(--teal-100); border-radius: 999px; padding: .5rem .85rem; }
.research-list { list-style: none; margin: 1.3rem 0 0; padding: 0; display: grid; gap: .9rem; }
.research-list li { display: flex; gap: .8rem; align-items: flex-start; font-size: 1rem; color: var(--teal-900); line-height: 1.45; }
.research-list .rn { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: .8rem; color: var(--coral-600); background: var(--coral-50); width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; flex: none; margin-top: 1px; }
.research-foot { margin-top: 1.4rem; font-size: .9rem; font-weight: 600; color: var(--teal-600); display: flex; align-items: center; gap: .5rem; }
.research-foot svg { width: 16px; height: 16px; }
@media (min-width: 900px){ .creds-grid { grid-template-columns: 1fr 1.15fr; } }

/* ============ TESTIMONIALS ============ */
.testi-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.4rem; }
.google-badge { display: inline-flex; align-items: center; gap: .7rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: .8rem 1.1rem; box-shadow: var(--shadow-sm); }
.google-badge .gb-logo { width: 34px; height: 34px; }
.google-badge .gb-rate { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: 1.2rem; }
.google-badge .gb-stars { color: var(--amber); font-size: .85rem; letter-spacing: .05em; }
.google-badge .gb-sub { font-size: .74rem; color: var(--muted); }
.placeholder-flag { display: inline-flex; align-items: center; gap: .45rem; font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--amber); background: #fdf6e8; border: 1px dashed var(--amber); border-radius: 999px; padding: .4rem .8rem; margin-top: 1.2rem; }
.testi-grid { display: grid; gap: 16px; margin-top: clamp(26px,3.5vw,40px); }
.testi-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.6rem 1.5rem; display: flex; flex-direction: column; position: relative; }
.testi-card.is-placeholder { border-style: dashed; border-color: rgba(244,180,85,.5); }
.testi-stars { color: var(--amber); font-size: .95rem; letter-spacing: .08em; }
.testi-quote { margin-top: .8rem; font-size: 1.04rem; color: var(--teal-900); line-height: 1.5; font-style: italic; flex: 1; }
.testi-quote.ph { color: var(--muted-2); font-style: normal; }
.testi-author { margin-top: 1.2rem; display: flex; align-items: center; gap: .7rem; }
.testi-author > div { min-width: 0; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--teal-100); color: var(--teal-700); display: grid; place-items: center; font-weight: 700; font-family: "Schibsted Grotesk", sans-serif; flex: none; }
.testi-name { font-weight: 700; font-size: .95rem; line-height: 1.25; }
.testi-city { font-size: .82rem; color: var(--muted); line-height: 1.25; }
@media (min-width: 680px){ .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px){ .testi-grid { grid-template-columns: repeat(3,1fr); } }

/* ============ PRICING ============ */
.pricing { background: var(--ink); color: #fff; }
.pricing .eyebrow { color: var(--teal-300); }
.pricing h2 { color: #fff; }
.price-card {
  max-width: 540px; margin: clamp(34px,4vw,50px) auto 0; background: var(--paper); color: var(--ink);
  border-radius: var(--r-xl); padding: clamp(28px,4vw,42px); box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.price-card::before { content:""; position:absolute; top:0; left:0; right:0; height:6px; background: linear-gradient(90deg, var(--coral), var(--amber)); }
.price-top { text-align: center; }
.price-top .pt-label { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-600); }
.price-amount { font-family: "Schibsted Grotesk", sans-serif; font-weight: 800; letter-spacing: -.03em; line-height: 1; margin-top: .6rem; }
.price-amount .cur { font-size: clamp(1.4rem,3vw,1.9rem); vertical-align: top; color: var(--muted); font-weight: 600; }
.price-amount .num { font-size: clamp(3.4rem,8vw,4.6rem); color: var(--ink); }
.price-amount .per { display:block; font-family:"Figtree",sans-serif; font-size:.95rem; font-weight:500; color: var(--muted); letter-spacing: 0; margin-top:.4rem; }
.price-offer-tag { display: inline-block; margin-top: .7rem; font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--coral-600); background: var(--coral-50); border: 1px solid rgba(255,106,77,.3); padding: .35rem .75rem; border-radius: 999px; }
.price-amount .price-was { font-family: "Figtree", sans-serif; font-size: clamp(1.1rem,2.4vw,1.4rem); font-weight: 600; color: var(--muted-2); text-decoration: line-through; letter-spacing: 0; margin-left: .55rem; vertical-align: middle; }
.price-note { margin-top: 1.1rem; font-size: .92rem; color: var(--muted); }
.price-note strong { color: var(--coral-600); font-weight: 700; }
.price-list { list-style: none; margin: 1.8rem 0 0; padding: 1.8rem 0 0; border-top: 1px solid var(--line); display: grid; gap: .85rem; }
.price-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: 1rem; color: var(--teal-900); }
.price-list .ck { width: 22px; height: 22px; border-radius: 50%; background: #e7f5ee; color: #11804a; display: grid; place-items: center; flex: none; margin-top: 1px; }
.price-list .ck svg { width: 13px; height: 13px; }
.price-cta { margin-top: 1.8rem; }
.price-pay { margin-top: 1.1rem; display: flex; align-items: center; justify-content: center; gap: .6rem; flex-wrap: wrap; }
.pay-chip { font-size: .76rem; font-weight: 700; color: var(--muted); background: var(--cream); border: 1px solid var(--line); border-radius: 7px; padding: .35rem .6rem; }

/* ============ FAQ ============ */
.faq-grid { max-width: 820px; margin: clamp(30px,4vw,46px) auto 0; display: grid; gap: 10px; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item.open { box-shadow: var(--shadow); border-color: var(--teal-100); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 1.35rem 1.5rem; display: flex; align-items: center; gap: 1rem; font-family: "Schibsted Grotesk", sans-serif; font-weight: 600; font-size: 1.06rem; color: var(--ink); letter-spacing: -.01em; }
.faq-q .fq-ic { margin-left: auto; width: 30px; height: 30px; border-radius: 9px; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; flex: none; transition: .3s var(--ease); }
.faq-q .fq-ic svg { width: 16px; height: 16px; }
.faq-item.open .fq-ic { background: var(--coral); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 1.5rem 1.4rem; color: var(--muted); font-size: 1rem; line-height: 1.6; }

/* ============ BOOKING FORM ============ */
.booking { background: linear-gradient(180deg, var(--cream), #eef3f1); }
.booking-grid { display: grid; gap: clamp(28px,4vw,48px); align-items: start; }
.booking-info h2 { font-size: clamp(2rem,4vw,2.8rem); }
.booking-info .lead { margin-top: 1rem; }
.booking-points { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 1rem; }
.booking-points li { display: flex; gap: .8rem; align-items: flex-start; }
.booking-points .bp-ic { width: 40px; height: 40px; border-radius: 12px; background: var(--teal-600); color: #fff; display: grid; place-items: center; flex: none; }
.booking-points .bp-ic svg { width: 20px; height: 20px; }
.booking-points strong { display: block; font-weight: 700; font-size: 1.02rem; }
.booking-points span { font-size: .92rem; color: var(--muted); }
.wa-card { margin-top: 1.8rem; background: #eafaf0; border: 1px solid #bfe6cd; border-radius: var(--r); padding: 1.2rem 1.3rem; display: flex; align-items: center; gap: 1rem; }
.wa-card .wa-ic { width: 46px; height: 46px; border-radius: 13px; background: #1faf54; color: #fff; display: grid; place-items: center; flex: none; }
.wa-card .wa-ic svg { width: 26px; height: 26px; }
.wa-card .wa-txt strong { display: block; font-weight: 700; }
.wa-card .wa-txt span { font-size: .88rem; color: #2c7a48; }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(24px,3.4vw,38px); box-shadow: var(--shadow-lg); position: relative; }
.form-card h3 { font-size: 1.45rem; }
.form-card .fc-price { font-size: .92rem; color: var(--muted); margin-top: .3rem; }
.form-card .fc-price b { color: var(--coral-600); font-weight: 700; }
.field { margin-top: 1.1rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--teal-800); margin-bottom: .4rem; }
.field label .opt { color: var(--muted-2); font-weight: 500; }
.field input, .field select, .field textarea, .file-drop {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: .85rem 1rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 64px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-500); background: #fff; box-shadow: 0 0 0 4px rgba(21,131,127,.12); }
.field-row { display: grid; gap: 1.1rem; }
@media (min-width: 520px){ .field-row { grid-template-columns: 1fr 1fr; } }
.file-drop { display: flex; align-items: center; gap: .7rem; cursor: pointer; color: var(--muted); font-size: .92rem; }
.file-drop:hover { border-color: var(--teal-300); background: #fff; }
.file-drop svg { width: 20px; height: 20px; color: var(--teal-500); flex: none; }
.file-drop input { display: none; }
.form-submit { margin-top: 1.5rem; }
.pay-row { margin-top: 1.1rem; display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; justify-content: center; }
.secure-line { margin-top: 1rem; text-align: center; font-size: .85rem; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: .45rem; }
.secure-line svg { width: 15px; height: 15px; color: var(--teal-500); }

/* confirmation state */
.form-confirm { display: none; flex-direction: column; align-items: center; text-align: center; padding: clamp(20px,4vw,40px) 0; }
.form-card.confirmed .form-body { display: none; }
.form-card.confirmed .form-confirm { display: flex; }
.confirm-ic { width: 72px; height: 72px; border-radius: 50%; background: #e7f5ee; color: #11804a; display: grid; place-items: center; margin-bottom: 1.2rem; animation: pop .5s var(--ease); }
.confirm-ic svg { width: 38px; height: 38px; }
@keyframes pop { 0%{ transform: scale(.5); opacity: 0; } 60%{ transform: scale(1.08); } 100%{ transform: scale(1); opacity: 1; } }
.form-confirm h3 { font-size: 1.6rem; }
.form-confirm p { color: var(--muted); margin-top: .6rem; max-width: 36ch; }
.confirm-steps { margin-top: 1.6rem; display: grid; gap: .7rem; width: 100%; text-align: left; }
.confirm-steps li { display: flex; gap: .7rem; align-items: center; font-size: .96rem; font-weight: 500; background: var(--cream); border-radius: 12px; padding: .8rem 1rem; }
.confirm-steps .cs-n { width: 26px; height: 26px; border-radius: 8px; background: var(--teal-600); color: #fff; font-weight: 700; font-size: .82rem; display: grid; place-items: center; flex: none; }

@media (min-width: 940px){ .booking-grid { grid-template-columns: .9fr 1.1fr; } }

/* ============ FINAL CTA ============ */
.final-cta { background: var(--teal-900); color: #fff; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 80% at 50% 0%, rgba(21,131,127,.4), transparent 70%); }
.final-cta .wrap { position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(2rem,4.6vw,3.2rem); max-width: 18ch; margin-inline: auto; color: #fff; }
.final-cta .lead { color: rgba(255,255,255,.74); margin: 1.2rem auto 0; max-width: 50ch; }
.final-cta .cta-row { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2.2rem; }

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding-block: clamp(48px,6vw,72px) 2rem; }
.footer-grid { display: grid; gap: 2.2rem; }
.footer-brand .brand-mark { background: linear-gradient(150deg, var(--teal-500), var(--teal-800)); }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tag { color: rgba(255,255,255,.55); }
.footer-brand p { margin-top: 1.1rem; font-size: .92rem; max-width: 34ch; }
.footer-contact { display: grid; gap: .7rem; margin-top: 1.2rem; }
.footer-contact a { display: inline-flex; align-items: center; gap: .6rem; font-size: .94rem; color: #fff; font-weight: 500; }
.footer-contact a svg { width: 17px; height: 17px; color: var(--teal-300); }
.footer-col h4 { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 700; }
.footer-col ul { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .6rem; }
.footer-col a { font-size: .94rem; color: rgba(255,255,255,.72); }
.footer-col a:hover { color: #fff; }
.footer-disclaimer { margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12); display: grid; gap: 1rem; }
.disc-line { font-size: .84rem; color: rgba(255,255,255,.55); display: flex; gap: .6rem; align-items: flex-start; line-height: 1.5; }
.disc-line svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--amber); }
.disc-secure svg { color: var(--teal-300); }
.footer-bottom { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; font-size: .84rem; }
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: #fff; text-decoration: underline; }
@media (min-width: 720px){ .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }

/* ============ STICKY MOBILE BAR ============ */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  background: rgba(255,255,255,.94); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line); padding: .7rem var(--pad) calc(.7rem + env(safe-area-inset-bottom,0));
  display: grid; grid-template-columns: 1fr auto; gap: .6rem;
  transform: translateY(120%); transition: transform .35s var(--ease);
  box-shadow: 0 -6px 24px -12px rgba(7,48,46,.25);
}
.mobile-bar.show { transform: translateY(0); }
.mobile-bar .btn { padding: .9rem 1rem; font-size: .96rem; }
.mobile-bar .btn-wa-icon { width: 52px; padding: 0; }
.mobile-bar .btn-wa-icon svg { width: 24px; height: 24px; }
@media (min-width: 980px){ .mobile-bar { display: none !important; } }
body.has-mobile-bar { padding-bottom: 76px; }
@media (min-width: 980px){ body.has-mobile-bar { padding-bottom: 0; } }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1; transform: none; transition: none; }
  .hotspot .hs-pulse, .bm-figure-rot { animation: none !important; }
}

/* section head shared */
.section-head { max-width: 700px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-top: .9rem; }
.section-head .lead { margin-top: 1rem; }
.center.section-head { margin-inline: auto; }

/* ============================================================
   v2 ADDITIONS — photo logo, IG/call, offer, slots, lead modal
   ============================================================ */

/* photo logo */
.brand-mark.photo { background: #fff; padding: 0; overflow: hidden; border: 1px solid var(--line); }
.brand-mark.photo img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.footer-brand .brand-mark.photo { border-color: rgba(255,255,255,.18); }

/* Instagram button */
.btn-ig { background: linear-gradient(120deg, #f9a14a 0%, #e34a7f 45%, #8a3ab9 100%); color: #fff; box-shadow: 0 8px 20px -8px rgba(180,55,130,.5); }
.btn-ig:hover { transform: translateY(-2px); filter: saturate(1.1); }
.ig-link { margin-top: .9rem; display: inline-flex; align-items: center; gap: .55rem; font-size: .92rem; color: var(--muted); }
.ig-link svg { width: 18px; height: 18px; color: #c13584; flex: none; }
.ig-link strong { color: var(--teal-800); font-weight: 700; }
.ig-link:hover strong { color: var(--teal-600); }

/* call card (replaces wa-card) */
.call-card { margin-top: 1.8rem; background: var(--teal-50); border: 1px solid var(--teal-100); border-radius: var(--r); padding: 1.2rem 1.3rem; display: flex; align-items: center; gap: 1rem; transition: border-color .2s, transform .2s; }
.call-card:hover { border-color: var(--teal-300); transform: translateY(-2px); }
.call-card .call-ic { width: 46px; height: 46px; border-radius: 13px; background: var(--teal-600); color: #fff; display: grid; place-items: center; flex: none; }
.call-card .call-ic svg { width: 24px; height: 24px; }
.call-card .call-txt strong { display: block; font-weight: 700; color: var(--ink); }
.call-card .call-txt span { font-size: .88rem; color: var(--teal-700); }

/* light outline button (dark bg) */
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }

/* mobile bar call icon */
.btn-call-icon { width: 52px; padding: 0; background: var(--teal-600); color: #fff; box-shadow: 0 8px 20px -8px rgba(17,113,111,.5); }
.btn-call-icon:hover { background: var(--teal-700); transform: translateY(-2px); }
.btn-call-icon svg { width: 24px; height: 24px; }

/* discount banner inside form */
.form-offer { margin-top: 1rem; display: flex; align-items: center; gap: .7rem; background: var(--coral-50); border: 1px solid rgba(255,106,77,.3); border-radius: 12px; padding: .7rem .85rem; }
.fo-badge { font-family: "Schibsted Grotesk", sans-serif; font-weight: 800; font-size: .82rem; color: #fff; background: var(--coral); border-radius: 8px; padding: .35rem .55rem; flex: none; white-space: nowrap; box-shadow: 0 4px 10px -4px rgba(238,79,45,.5); }
.fo-text { font-size: .88rem; color: var(--teal-900); line-height: 1.35; }

/* verified reviews flag */
.verified-flag { display: inline-flex; align-items: center; gap: .45rem; font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #11804a; background: #e7f5ee; border: 1px solid #bfe6d0; border-radius: 999px; padding: .4rem .8rem; margin-top: 1.2rem; }

/* time-slot picker */
.slot-build { display: grid; gap: .9rem; }
.slot-cat { font-size: .75rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; display: flex; align-items: center; gap: .4rem; }
.slot-cat svg { width: 14px; height: 14px; color: var(--teal-500); }
.slot-chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.slot-chip { font-size: .9rem; font-weight: 600; padding: .5rem .8rem; border-radius: 10px; border: 1px solid var(--line); background: var(--cream); color: var(--teal-800); cursor: pointer; transition: .15s var(--ease); }
.slot-chip:hover { border-color: var(--teal-300); background: #fff; }
.slot-chip.active { background: var(--teal-700); color: #fff; border-color: var(--teal-700); box-shadow: 0 4px 10px -4px rgba(14,95,99,.4); }

/* ============ LEAD-CAPTURE MODAL ============ */
.lead-modal { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: 18px; }
.lead-modal.open { display: flex; }
.lead-backdrop { position: absolute; inset: 0; background: rgba(7,40,38,.55); backdrop-filter: blur(5px); animation: lmFade .3s var(--ease); }
.lead-dialog { position: relative; z-index: 1; width: min(860px, 100%); max-height: 94vh; overflow: auto; background: var(--paper); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); display: grid; grid-template-columns: .82fr 1.18fr; animation: lmIn .4s var(--ease); }
.lead-close { position: absolute; top: 14px; right: 14px; z-index: 4; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.92); font-size: 1.4rem; line-height: 1; color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: .2s; }
.lead-close:hover { background: #fff; transform: rotate(90deg); }
.lead-side { background: linear-gradient(160deg, var(--teal-600), var(--ink)); color: #fff; padding: clamp(26px,3.6vw,40px); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.lead-side::after { content:""; position:absolute; right:-40px; bottom:-40px; width:160px; height:160px; border-radius:50%; background: radial-gradient(circle, rgba(244,180,85,.25), transparent 70%); }
.lead-badge { align-self: flex-start; background: var(--coral); color: #fff; font-family: "Schibsted Grotesk", sans-serif; font-weight: 800; font-size: .95rem; letter-spacing: .02em; padding: .4rem .85rem; border-radius: 999px; box-shadow: var(--shadow-cta); }
.lead-side-num { font-family: "Schibsted Grotesk", sans-serif; font-weight: 800; font-size: clamp(2.6rem,6vw,3.4rem); line-height: 1; margin-top: 1.1rem; letter-spacing: -.02em; }
.lead-side-strike { text-decoration: line-through; opacity: .55; font-size: 1.05rem; margin-top: .25rem; font-weight: 600; }
.lead-side-text { margin-top: 1rem; color: rgba(255,255,255,.82); font-size: 1rem; line-height: 1.45; }
.lead-side-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: .7rem; }
.lead-side-list li { display: flex; gap: .55rem; align-items: center; font-size: .92rem; font-weight: 500; }
.lead-side-list svg { width: 16px; height: 16px; color: var(--amber); flex: none; }
.lead-main { padding: clamp(26px,3.4vw,40px); position: relative; }
.lead-pill { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--coral-600); background: var(--coral-50); padding: .35rem .7rem; border-radius: 999px; }
.lead-main h3 { font-size: clamp(1.4rem,2.6vw,1.85rem); margin-top: .8rem; letter-spacing: -.02em; }
.lead-sub { color: var(--muted); margin-top: .5rem; font-size: .96rem; }
.lead-form-body .field:first-of-type { margin-top: 1.2rem; }
.lead-confirm { display: none; flex-direction: column; align-items: center; text-align: center; justify-content: center; min-height: 320px; }
.lead-confirm h3 { font-size: 1.5rem; }
.lead-confirm p { color: var(--muted); margin-top: .6rem; max-width: 34ch; }
.lead-main.done .lead-form-body { display: none; }
.lead-main.done .lead-confirm { display: flex; }
@keyframes lmFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lmIn { from { opacity: 0; transform: translateY(20px) scale(.98); } to { opacity: 1; transform: none; } }
@media (max-width: 760px){ .lead-dialog { grid-template-columns: 1fr; } .lead-side { display: none; } }
@media (prefers-reduced-motion: reduce){ .lead-backdrop, .lead-dialog { animation: none; } .lead-close:hover { transform: none; } }

/* ============ TIMELINE (How It Works) ============ */
.timeline { list-style: none; margin: clamp(34px,5vw,56px) 0 0; padding: 0; max-width: 720px; }
.tl-item { display: grid; grid-template-columns: 52px 1fr; gap: 1.3rem; align-items: stretch; }
.tl-rail { display: flex; flex-direction: column; align-items: center; }
.tl-num { width: 52px; height: 52px; border-radius: 50%; flex: none; background: var(--coral); color: #fff; font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: 1.25rem; display: grid; place-items: center; box-shadow: 0 8px 18px -8px rgba(238,79,45,.7); }
.tl-stem { flex: 1; width: 2px; min-height: 18px; margin: 8px 0; background: linear-gradient(rgba(255,255,255,.28), rgba(255,255,255,.1)); border-radius: 2px; }
.tl-content { padding-bottom: 2rem; }
.tl-item:last-child .tl-content { padding-bottom: 0; }
.tl-content h3 { color: #fff; font-size: 1.22rem; padding-top: .55rem; }
.tl-content p { color: rgba(255,255,255,.66); margin-top: .5rem; font-size: 1rem; line-height: 1.55; }
.tl-callout { margin-top: 1rem; background: rgba(244,180,85,.1); border: 1px solid rgba(244,180,85,.28); border-radius: 14px; padding: .9rem 1.05rem; display: flex; gap: .8rem; align-items: flex-start; }
.tl-callout .tlc-ic { width: 32px; height: 32px; border-radius: 9px; background: var(--amber); color: var(--ink); display: grid; place-items: center; flex: none; }
.tl-callout .tlc-ic svg { width: 19px; height: 19px; }
.tl-callout strong { color: #fff; }
.tl-callout span:last-child { color: rgba(255,255,255,.76); font-size: .94rem; line-height: 1.5; }
@media (min-width: 760px){
  .timeline { margin-inline: auto; }
  .tl-content h3 { font-size: 1.3rem; }
}

/* reports note + social (booking) */
.reports-note { margin-top: 1rem; display: flex; gap: .8rem; align-items: flex-start; }
.reports-note .rn-ic { width: 40px; height: 40px; border-radius: 12px; background: var(--coral); color: #fff; display: grid; place-items: center; flex: none; box-shadow: 0 6px 14px -6px rgba(238,79,45,.5); }
.reports-note .rn-ic svg { width: 21px; height: 21px; }
.reports-note .rn-txt strong { display: block; color: var(--ink); font-weight: 700; font-size: 1.02rem; }
.reports-note .rn-sub { display: block; font-size: .92rem; color: var(--muted); margin-top: .15rem; line-height: 1.45; }
.social-row { margin-top: 1.3rem; display: flex; align-items: center; gap: .7rem; }
.social-row .sr-label { font-size: .92rem; color: var(--muted); font-weight: 600; }
.social-icon { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); background: rgba(255,255,255,.7); color: var(--teal-800); transition: .2s var(--ease); }
.social-icon:hover { background: linear-gradient(120deg,#f9a14a,#e34a7f,#8a3ab9); color: #fff; border-color: transparent; transform: translateY(-2px); }
.social-icon svg { width: 20px; height: 20px; }
.mobile-bar .btn-ig-icon { width: 52px; padding: 0; background: linear-gradient(120deg,#f9a14a,#e34a7f,#8a3ab9); color: #fff; box-shadow: 0 8px 20px -8px rgba(180,55,130,.5); }
.mobile-bar .btn-ig-icon:hover { transform: translateY(-2px); filter: saturate(1.1); }
.mobile-bar .btn-ig-icon svg { width: 24px; height: 24px; }

/* ============ MULTI-STEP FORM ============ */
.form-progress { display: flex; align-items: center; gap: .7rem; margin: .2rem 0 1.5rem; }
.fp-step { display: flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 600; color: var(--muted-2); white-space: nowrap; transition: color .3s; }
.fp-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--cream-2); color: var(--muted); display: grid; place-items: center; font-weight: 700; font-size: .8rem; border: 1px solid var(--line); transition: .3s var(--ease); flex: none; }
.fp-track { flex: 1; height: 3px; border-radius: 3px; background: var(--cream-2); overflow: hidden; }
.fp-track i { display: block; height: 100%; width: 0; background: var(--coral); border-radius: 3px; transition: width .45s var(--ease); }
form[data-step="1"] .fp-step:first-child .fp-dot,
form[data-step="2"] .fp-step .fp-dot { background: var(--coral); color: #fff; border-color: var(--coral); }
form[data-step="1"] .fp-step:first-child,
form[data-step="2"] .fp-step { color: var(--ink); }
form[data-step="2"] .fp-track i { width: 100%; }
.form-step { display: none; }
.form-step.active { display: block; animation: stepIn .38s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: none; } }
.step2-actions { display: flex; gap: .7rem; margin-top: 1.5rem; align-items: stretch; }
.step2-actions .btn-ghost { flex: none; padding-inline: 1.1rem; }
.step2-actions [type="submit"] { flex: 1; }

/* ============ TIMELINE ENTRANCE ANIMATION ============ */
@media (prefers-reduced-motion: no-preference) {
  .tl-item .tl-num { transform: scale(.4); opacity: 0; transition: transform .5s var(--ease), opacity .5s var(--ease); }
  .tl-item .tl-stem { transform: scaleY(0); transform-origin: top; transition: transform .6s var(--ease) .15s; }
  .tl-item .tl-content > * { opacity: 0; transform: translateY(12px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
  .tl-item.in .tl-num { transform: scale(1); opacity: 1; }
  .tl-item.in .tl-stem { transform: scaleY(1); }
  .tl-item.in .tl-content > * { opacity: 1; transform: none; }
  .tl-item.in .tl-content > *:nth-child(2) { transition-delay: .1s; }
  .tl-item.in .tl-content > *:nth-child(3) { transition-delay: .2s; }
  /* gentle pulse on the active node */
  .tl-item.in .tl-num { animation: nodePulse 2.8s ease-in-out .6s infinite; }
}
@keyframes nodePulse { 0%,100%{ box-shadow: 0 8px 18px -8px rgba(238,79,45,.7), 0 0 0 0 rgba(238,79,45,.4);} 50%{ box-shadow: 0 8px 18px -8px rgba(238,79,45,.7), 0 0 0 8px rgba(238,79,45,0);} }

/* subtle lift on testimonial + cred cards */
.testi-card, .creds-col, .price-card { transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* reduced motion: kill decorative hero/timeline motion */
@media (prefers-reduced-motion: reduce) {
  .hero-blob, .float-chip, .offer-ribbon { animation: none !important; }
  .offer-ribbon { transform: rotate(-4deg); opacity: 1; }
}

/* ============ MOBILE UX REFINEMENTS ============ */
/* larger invisible tap area on body-map hotspots (≥44px touch target) */
.hotspot .hs-hit { r: 24px; }

@media (max-width: 600px) {
  /* full-width, thumb-friendly hero CTAs */
  .hero-cta { flex-direction: column; gap: .65rem; }
  .hero-cta .btn { width: 100%; }
  .hero-sub, .hero-offer { max-width: none; }

  /* tighter vertical rhythm on small screens */
  .section { padding-block: 56px; }

  /* compact trust bar: two items per row, smaller text */
  .trustbar .wrap { padding-block: 1.1rem; }
  .trust-track { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1rem; align-items: start; }
  .trust-item { font-size: .8rem; gap: .45rem; justify-content: flex-start; text-align: left; line-height: 1.25; }
  .trust-item .ti-ic svg { width: 15px; height: 15px; }
  .trust-sep { display: none; }

  /* bigger tap targets for time-slot & region chips */
  .slot-chip { padding: .7rem 1rem; }
  .bm-chip { padding: .58rem .95rem; }

  /* modal close easier to hit + a touch more breathing room */
  .lead-close { width: 42px; height: 42px; top: 12px; right: 12px; }

  /* keep the offer ribbon from crowding a small portrait */
  .offer-ribbon { padding: .45rem .65rem; }
  .offer-ribbon strong { font-size: 1.3rem; }

  /* services & body-map CTA never feel cramped */
  .svc-banner { text-align: center; }
  .svc-banner .btn { width: 100%; }
}

/* very small phones: trim the headline a hair more */
@media (max-width: 380px) {
  .hero h1 { font-size: 2.1rem; }
  .price-amount .num { font-size: 3rem; }
}
