/* ==========================================================================
   We Do Follow-Up — local clone
   Design system extracted from wedofollowup.com (Webflow)

   COLOR SYSTEM — 60 / 30 / 10 (brand colors only)
   60%  Cream / white  (#F0EFEC, #FFFFFF)  — page & card backgrounds
   30%  Dark ink       (#171717)           — footer, dark panels, headings, 1 featured card
   10%  Terracotta     (#C15A34)           — CTAs, eyebrows, active states, single accents
   ========================================================================== */

:root {
  --bg: #F0EFEC;
  --bg-card: #F6F5F2;
  --ink: #171717;
  --ink-2: #2B2B2B;
  --gray: #64656B;
  --gray-2: #A9A9A9;
  --line: #D7D6D5;
  --line-soft: rgba(23, 23, 23, .12);
  --accent: #C15A34;
  --accent-dark: #a84a29;
  --green: #CEF5CA;
  --pink: #FFDEDE;
  --white: #ffffff;
  --dark: #171717;
  --surface: #ffffff;      /* card surfaces (flips in dark theme) */
  --band: #EAE6DE;         /* soft-beige section band */
  --footer-bg: #171717;    /* footer / dark panels */
  --footer-ink: #efefef;
  --hero-duotone: grayscale(1) sepia(.5) saturate(1.6) hue-rotate(-12deg) contrast(1.03);
  color-scheme: light;

  --maxw: 1320px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 999px;
  --radius-lg: 22px;

  --f-body: "Poppins", Arial, Helvetica, sans-serif;
}

/* ---------- Dark theme (brand colours, warm dark) ---------- */
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #141110;
  --bg-card: #1F1B18;
  --surface: #28231F;
  --ink: #F1EEE9;
  --ink-2: #E7E2DB;
  --gray: #A79F97;
  --gray-2: #6f675f;
  --line: #3A342E;
  --line-soft: rgba(255,255,255,.13);
  --band: #1B1815;
  --prod-bg: #1B1815;
  --prod-dark: #0E0C0B;
}
:root[data-theme="dark"] .nav { background: rgba(20,17,16,.82); }
:root[data-theme="dark"] .btn-dark { background: var(--accent); color: #fff; }
:root[data-theme="dark"] .btn-dark:hover { background: var(--accent-dark); }
:root[data-theme="dark"] .btn-light:hover { background: #2f2a25; }
:root[data-theme="dark"] .footer { border-top: 1px solid var(--line); }
:root[data-theme="dark"] .services-pill { background: rgba(30,27,24,.82); }
:root[data-theme="dark"] .services-pill button.active { background: var(--accent); color: #fff; }
:root[data-theme="dark"] .vtabs .vtab { color: rgba(241,238,233,.42); border-top-color: rgba(255,255,255,.14); }
:root[data-theme="dark"] .vtabs .vtab:last-child { border-bottom-color: rgba(255,255,255,.14); }
:root[data-theme="dark"] .vtabs .vtab:hover { color: rgba(241,238,233,.72); }
:root[data-theme="dark"] .vtabs .vtab.active { color: var(--ink); }
:root[data-theme="dark"] .motif .bar { background: #241f1b; }
:root[data-theme="dark"] .chip { background: rgba(30,27,24,.62); border-color: rgba(255,255,255,.14); color: var(--ink); }
:root[data-theme="dark"] .stat.featured { background: #000; border-color: var(--line); }

/* ---------- Nav controls: language + theme toggles ---------- */
.nav-ctrls { display: inline-flex; align-items: center; gap: 8px; }
.lang-toggle { display: inline-flex; align-items: center; background: transparent; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang-toggle button {
  border: none; background: none; cursor: pointer; font-family: inherit; font-weight: 600;
  font-size: .72rem; letter-spacing: .08em; color: var(--gray); padding: 7px 11px; transition: .2s ease;
}
.lang-toggle button.active { background: var(--ink); color: var(--bg); }
.lang-toggle button:not(.active):hover { color: var(--ink); }
.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: transparent;
  color: var(--ink); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: .2s ease; flex: 0 0 auto;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
@media (max-width: 960px) {
  .nav-ctrls { margin-left: auto; }
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-weight: 600; line-height: 1.08; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); }

.muted { color: var(--gray); }
.accent { color: var(--accent); }

/* eyebrow / section label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow .bars {
  display: inline-flex; gap: 3px; align-items: flex-end; height: 15px;
}
.eyebrow .bars i { width: 3px; background: var(--accent); display: block; }
.eyebrow .bars i:nth-child(1){ height: 6px; }
.eyebrow .bars i:nth-child(2){ height: 11px; }
.eyebrow .bars i:nth-child(3){ height: 15px; }

.section-tag {
  display: flex; align-items: center; gap: 12px;
  font-size: .8rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink);
}
.section-tag .num { color: var(--accent); }
.section-tag .dot { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  cursor: pointer; border: none; transition: .25s ease;
  white-space: nowrap;
}
.btn svg, .btn .arrow { transition: transform .25s ease; }
.btn:hover svg, .btn:hover .arrow { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(23,23,23,.14); }

.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); }
.btn-light { background: var(--surface); color: var(--ink); border: 1px solid var(--line); }
.btn-light:hover { background: #fbfaf8; }

.link-underline {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500; padding-bottom: 8px; border-bottom: 1px solid var(--line);
  transition: .25s ease; color: var(--ink-2);
}
.link-underline:hover { border-color: var(--accent); color: var(--accent); }
.link-underline .arrow { transition: transform .25s ease; }
.link-underline:hover .arrow { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(240, 239, 236, .82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-color: var(--line-soft); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; gap: 24px;
}
.nav-logo img { height: 30px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu a { white-space: nowrap; }
.nav-menu a {
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray); transition: color .2s ease; position: relative;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--ink); }
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--accent);
  transition: width .28s cubic-bezier(.2,.7,.2,1);
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-right .jointeam {
  font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
  white-space: nowrap;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; }

/* ---------- Hero (home) ---------- */
.hero { padding: clamp(48px, 7vw, 90px) 0 0; }
.hero-grid {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(30px, 5vw, 80px);
  align-items: end;
}
.hero h1 { margin: 26px 0 0; max-width: 12ch; }
.hero-right { padding-bottom: 8px; }
.hero-stat-lead { font-size: 1.35rem; line-height: 1.4; margin-bottom: 34px; font-weight: 400; }
.hero-stat-lead b { font-weight: 600; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.hero-image {
  margin-top: clamp(40px, 6vw, 80px);
  width: 100%; height: clamp(320px, 45vw, 620px);
  object-fit: cover; object-position: center 50%;
  border-radius: var(--radius-lg);
  /* warm terracotta duotone instead of flat grayscale — ties image to the 10% accent */
  filter: grayscale(1) sepia(.52) saturate(1.7) hue-rotate(-12deg) contrast(1.03) brightness(.98);
  will-change: object-position;
}

/* consultation strip */
.consult-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 40px 0; border-bottom: 1px solid var(--line-soft);
}
.consult-strip p { font-size: clamp(1.2rem, 2.4vw, 1.8rem); font-weight: 500; max-width: 24ch; letter-spacing: -.01em; }

/* ---------- Stats (60/30/10: light cards, 1 dark featured, terracotta accent) ---------- */
.stats { padding: clamp(60px, 8vw, 110px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 34px); }
.stat {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(30px, 3.2vw, 44px) clamp(26px, 2.6vw, 36px);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.stat::before { /* the 10% accent */
  content: ""; position: absolute; top: 0; left: 0; width: 54px; height: 5px;
  background: var(--accent); border-radius: 0 0 5px 0;
}
.stat:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(23,23,23,.10); }
.stat .num { font-size: clamp(3.2rem, 6.5vw, 5.6rem); font-weight: 600; line-height: 1; letter-spacing: -.03em; color: var(--ink); }
.stat .label { font-weight: 500; margin: 16px 0 6px; }
.stat .desc { color: var(--gray); font-size: .96rem; }
/* the single dark card = 30% color, with terracotta number = 10% */
.stat.featured { background: var(--dark); border-color: var(--dark); }
.stat.featured .num { color: var(--accent); }
.stat.featured .label { color: #fff; }
.stat.featured .desc { color: rgba(255,255,255,.62); }

/* ---------- Generic section ---------- */
.section { padding: clamp(60px, 8vw, 110px) 0; }
.section.tight { padding: clamp(40px, 5vw, 70px) 0; }

/* why follow-up matters */
.why-grid { display: grid; grid-template-columns: 320px 1fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.why-copy { font-size: clamp(1.4rem, 2.6vw, 2.15rem); line-height: 1.35; font-weight: 400; letter-spacing: -.015em; }
.why-copy p + p { margin-top: 1.4rem; color: var(--gray); }

/* how it works — cards with icon anchors (gestalt: common region + similarity) */
.how-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(34px, 4vw, 54px); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 36px);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(23,23,23,.10); }
.step-icon {
  width: 54px; height: 54px; border-radius: 15px; margin-bottom: 20px;
  background: rgba(193,90,52,.10); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.step-icon svg { width: 26px; height: 26px; }
.step-eyebrow { font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--gray); }
/* legacy numbered circle (kept for safety, no longer used) */
.step .step-num { display: none; }

/* diagram image */
.diagram { margin-top: 56px; border-radius: var(--radius-lg); overflow: hidden; }
.diagram img { width: 100%; }

/* ---------- Products / tabs ---------- */
.prod-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.tabs { display: inline-flex; gap: 8px; background: #e7e6e2; padding: 6px; border-radius: var(--radius); margin-bottom: 46px; flex-wrap: wrap; }
.tab {
  padding: 12px 30px; border-radius: var(--radius); font-weight: 600; font-size: .9rem;
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer; border: none; background: transparent; color: var(--gray);
  transition: .25s ease;
}
.tab.active { background: var(--dark); color: #fff; }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp .5s ease both; }

.product {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 5vw, 70px);
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 54px);
}
.product h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 18px; }
.product .lede { color: var(--gray); margin-bottom: 26px; }
.feature-list { list-style: none; display: grid; gap: 14px; margin-bottom: 10px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.feature-list li::before {
  content: ""; flex: 0 0 24px; height: 24px; margin-top: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Crect x='3' y='13' width='4' height='8' rx='1' fill='%23C15A34'/%3E%3Crect x='10' y='8' width='4' height='13' rx='1' fill='%23C15A34'/%3E%3Crect x='17' y='3' width='4' height='18' rx='1' fill='%23C15A34'/%3E%3C/svg%3E") left center/22px no-repeat;
  opacity: .4; transition: opacity .25s ease, transform .25s ease;
}
.feature-list li:hover::before { opacity: 1; transform: scale(1.12); }

/* ---------- Package cards as scroll-sections (rich layout, pill scroll-spy) ---------- */
.pkg-stack { display: grid; gap: clamp(20px, 3vw, 30px); }
.pkg-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 52px); scroll-margin-top: 100px;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .4s ease;
}
/* hover the package you're reading: subtle lift, terracotta edge, motif comes alive */
.pkg-card:hover { transform: translateY(-5px); box-shadow: 0 28px 64px rgba(23,23,23,.11); border-color: rgba(193,90,52,.4); }
.pkg-card:hover .feature-list li::before { opacity: 1; }
.pkg-mark { display: inline-flex; gap: 4px; align-items: flex-end; height: 26px; margin-bottom: 22px; }
.pkg-mark i { width: 6px; background: var(--accent); border-radius: 1px; display: block; transform-origin: bottom; }
.pkg-card:hover .pkg-mark i { animation: barpulse 1s ease-in-out infinite; }
.pkg-card:hover .pkg-mark i:nth-child(2) { animation-delay: .15s; }
.pkg-card:hover .pkg-mark i:nth-child(3) { animation-delay: .3s; }
@keyframes barpulse { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(.5); } }
@media (prefers-reduced-motion: reduce) { .pkg-card:hover .pkg-mark i { animation: none; } }
.pkg-mark i:nth-child(1) { height: 12px; }
.pkg-mark i:nth-child(2) { height: 19px; }
.pkg-mark i:nth-child(3) { height: 26px; }
.pkg-head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 54px); align-items: start; }
.pkg-head h3 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.pkg-head .lede { color: var(--gray); margin: 0; }
.pkg-card .feature-list { display: flex; flex-wrap: wrap; gap: 14px 34px; margin: 28px 0; }
.pkg-card .feature-list li { flex: 0 0 auto; }
.pkg-benefits { background: var(--surface); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 38px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 50px); align-items: start; }
.pkg-benefits h4 { font-size: 1.35rem; margin-bottom: 10px; }
.pkg-benefits .note { color: var(--gray); }
.check-list { list-style: none; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.check-list li::before { content: ""; flex: 0 0 22px; height: 22px; border-radius: 50%; margin-top: 1px; background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; }
.pkg-foot { margin-top: 26px; }
.pkg-cta { display: flex; justify-content: flex-end; margin-top: 18px; }
@media (max-width: 760px) {
  .pkg-head, .pkg-benefits { grid-template-columns: 1fr; }
  .pkg-card .feature-list { flex-direction: column; gap: 12px; }
  .pkg-cta { justify-content: stretch; }
  .pkg-cta .btn { width: 100%; justify-content: center; }
}
.pricing { display: grid; gap: 0; margin: 8px 0 26px; }
.pricing .row { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line); }
.pricing .row:first-child { border-top: 1px solid var(--line); }
.pricing .row .k { color: var(--gray); }
.pricing .row .v { font-weight: 600; font-size: 1.1rem; }
.product-side { display: flex; flex-direction: column; justify-content: space-between; gap: 24px; }
.product-side .stat-box { background: var(--dark); color: #fff; border-radius: var(--radius-lg); padding: 30px; }
.product-side .stat-box .big { font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 600; line-height: 1.2; }
.product-side .icon-wrap { text-align: center; }
.product-side .icon-wrap img { margin: 0 auto; max-height: 220px; width: auto; }

.benefits-head { font-weight: 600; margin: 30px 0 14px; font-size: 1.15rem; }
.benefits-note { color: var(--gray); margin-bottom: 18px; }

/* ---------- Products: light band + vertical tabs (matches wedofollowup.com layout) ---------- */
:root { --prod-dark: #2C2825; --prod-bg: #EAE6DE; }
.products-section {
  background: var(--prod-bg);
  color: var(--ink);
}
.products-section .prod-head { margin-bottom: 56px; }
.products-section .prod-head h2 { color: var(--ink); }
.products-section .prod-head .section-tag,
.products-section .prod-head .section-tag span { color: var(--ink); }
.products-section .prod-head .section-tag .num,
.products-section .prod-head .section-tag .dot { color: var(--accent); }

.prod-layout { display: grid; grid-template-columns: 0.85fr 1.35fr; gap: clamp(30px, 5vw, 72px); align-items: start; }

.vtabs { display: flex; flex-direction: column; }
/* reset the horizontal-pill .tab styling that these buttons also carry */
.vtabs .vtab {
  background: none; border: none; border-radius: 0; text-transform: none;
  border-top: 1px solid rgba(23,23,23,.14);
  text-align: left; padding: clamp(22px, 2.6vw, 30px) 4px; cursor: pointer; font-family: inherit;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem); font-weight: 600; letter-spacing: -.02em; line-height: 1.1;
  color: rgba(23,23,23,.38); display: flex; align-items: center; gap: 16px; transition: color .25s ease;
}
.vtabs .vtab:last-child { border-bottom: 1px solid rgba(23,23,23,.14); }
.vtabs .vtab:hover { color: rgba(23,23,23,.65); background: none; }
.vtabs .vtab.active { color: var(--ink); background: none; }
.vtab .vtab-ic {
  color: var(--accent); font-size: 1.3rem; line-height: 1; opacity: 0; width: 0; overflow: hidden;
  transform: translateX(-6px); transition: opacity .25s ease, transform .25s ease, width .25s ease;
}
.vtab.active .vtab-ic { opacity: 1; width: 1.3rem; transform: none; }

/* white card sitting on the light band */
.products-section .product-card {
  background: var(--surface); color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 52px);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.products-section .product-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(23,23,23,.12); }
.products-section .product-card h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 18px; }
.products-section .product-card .lede { color: var(--gray); margin-bottom: 26px; }
.products-section .stat-pill {
  margin-top: 28px; background: var(--prod-dark); color: #fff; border-radius: 16px; padding: 22px 26px;
  font-weight: 600; font-size: 1.05rem; line-height: 1.35;
}

/* ---------- Pricing accordion (hidden by default, revealed + tracked) ---------- */
.pricing-block { margin-top: 26px; border-top: 1px solid var(--line); }
.pricing-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer; font-family: inherit; padding: 20px 2px;
  color: var(--ink); font-size: 1rem; font-weight: 600;
}
.pricing-toggle .pt-label { display: flex; align-items: center; gap: 10px; }
.pricing-toggle .pt-label .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.pricing-toggle .chev { color: var(--accent); transition: transform .3s ease; }
.pricing-block.open .pricing-toggle .chev { transform: rotate(180deg); }
.pricing-panel { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.pricing-tiers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 2px 0 18px; }
.tier { border: 1px solid var(--line); border-radius: 14px; padding: 18px; background: var(--bg-card); }
.tier .tier-name { font-weight: 600; }
.tier .tier-leads { color: var(--gray); font-size: .88rem; margin: 2px 0 12px; }
.tier .tier-price { font-size: 1.3rem; font-weight: 700; letter-spacing: -.01em; }
.tier .tier-price small { font-weight: 500; color: var(--gray); font-size: .78rem; }
.pricing-note { color: var(--gray); font-size: .8rem; padding-bottom: 20px; }
.pricing-note-static { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--gray); font-size: .98rem; }
@media (max-width: 560px) { .pricing-tiers { grid-template-columns: 1fr; } }

/* ---------- Brand motif: staggered blush bars (from brand collateral) ---------- */
.motif { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.motif .bar { position: absolute; background: #E9DDD1; border-radius: 3px; will-change: transform; }
.has-motif { position: relative; }
.has-motif > .container { position: relative; z-index: 1; }
/* hero placement — faint, right side, behind content */
.hero .motif .b1 { width: 66px; height: 220px; right: 16%; top: 30px;  opacity: .5; }
.hero .motif .b2 { width: 66px; height: 320px; right: 9%;  top: 96px;  opacity: .38; }
.hero .motif .b3 { width: 66px; height: 160px; right: 23%; top: 0;     opacity: .32; }
@media (max-width: 1100px) { .hero .motif { display: none; } }
/* testimonial placement — behind the card, echoing the brand cover */
/* inset the band from the section top so the bars keep a clear margin to the section above */
.testimonial .motif { inset: 46px 0 auto; height: 300px; }
.testimonial .motif .b1 { width: 76px; height: 200px; left: 50%; margin-left: -250px; top: 66px; opacity: .85; }
.testimonial .motif .b2 { width: 76px; height: 290px; left: 50%; margin-left: -38px;  top: 0;    opacity: .95; }
.testimonial .motif .b3 { width: 76px; height: 230px; left: 50%; margin-left: 172px;  top: 40px; opacity: .8; }
@media (max-width: 720px) { .testimonial .motif .b1, .testimonial .motif .b3 { display: none; } }

/* ---------- Type fine-tuning (calmer scale) ---------- */
.why-copy { font-size: clamp(1.2rem, 2.2vw, 1.7rem); }
.hero-stat-lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); }
.vtabs .vtab { font-size: clamp(1.35rem, 2.2vw, 1.9rem); }
.consult-strip p { font-size: clamp(1.15rem, 2vw, 1.55rem); }
.big-cta h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.footer h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.quote { font-size: clamp(1.2rem, 2.1vw, 1.6rem); }

/* ---------- Revive CTA (photo + glass USP chips + warm-dark card) ---------- */
.revive { padding: clamp(50px, 7vw, 96px) 0; }
.revive-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(16px, 2vw, 26px); align-items: stretch; }
.revive-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 440px; }
.revive-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.03); }
.chip {
  position: absolute; display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.55); backdrop-filter: blur(12px) saturate(160%); -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255,255,255,.65); border-radius: 999px; padding: 12px 18px;
  font-weight: 600; font-size: .9rem; color: var(--ink); box-shadow: 0 10px 30px rgba(0,0,0,.14);
  animation: floaty 6s ease-in-out infinite;
}
.chip svg { width: 18px; height: 18px; color: var(--accent); flex: 0 0 auto; }
.chip.c1 { top: 12%; left: 7%; }
.chip.c2 { top: 46%; right: 5%; animation-delay: -2s; }
.chip.c3 { bottom: 9%; left: 6%; animation-delay: -4s; }
.revive-card {
  background: var(--prod-dark); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(30px, 3.6vw, 58px); display: flex; flex-direction: column;
}
.revive-card .eyebrow { color: var(--accent); }
.revive-card h2 { color: #fff; margin: 18px 0 0; }
.revive-card h2 .muted { color: rgba(255,255,255,.5); }
.revive-card .revive-sub { color: rgba(255,255,255,.72); margin-top: auto; padding-top: 26px; }
.revive-card .btn { margin-top: 26px; align-self: flex-start; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (prefers-reduced-motion: reduce) { .chip { animation: none; } }
@media (max-width: 860px) { .revive-grid { grid-template-columns: 1fr; } .revive-media { min-height: 340px; } }

/* ---------- Services sticky glass pill (package switcher) ---------- */
.services-pill-wrap {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%);
  z-index: 60; display: flex; justify-content: center; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.services-pill-wrap.pill-hidden { opacity: 0; transform: translate(-50%, 24px); pointer-events: none; }
.services-pill {
  pointer-events: auto; display: inline-flex; align-items: center; gap: 2px;
  background: rgba(240,239,236,.72); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,.6); border-radius: 999px; padding: 7px; box-shadow: 0 14px 44px rgba(23,23,23,.16);
}
.services-pill button {
  border: none; background: none; cursor: pointer; font-family: inherit; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; font-size: .78rem; color: var(--gray);
  padding: 12px 18px; min-width: 150px; text-align: center; border-radius: 999px; transition: .25s ease; white-space: nowrap;
}
.services-pill button:hover { color: var(--ink); }
.services-pill button.active { background: var(--dark); color: #fff; }

/* animated equalizer bars — a playful "click me" hint + active marker (brand motif) */
.eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 13px; width: 0; overflow: hidden; opacity: 0; vertical-align: middle; transition: width .28s ease, opacity .28s ease, margin .28s ease; }
.eq i { width: 3px; height: 5px; background: var(--accent); border-radius: 1px; display: block; }
@keyframes eqbounce { 0%, 100% { height: 4px; } 50% { height: 13px; } }
/* services pill: show on hover + active, animate on hover */
.services-pill button:hover .eq, .services-pill button.active .eq { width: 17px; opacity: 1; margin-right: 8px; }
.services-pill button:hover .eq i { animation: eqbounce .9s ease-in-out infinite; }
.services-pill button .eq i:nth-child(2) { animation-delay: .15s; }
.services-pill button .eq i:nth-child(3) { animation-delay: .3s; }
/* vertical tabs: bars pop + animate on hover (active keeps its arrow) */
.vtabs .vtab .eq { height: 17px; }
.vtabs .vtab .eq i { width: 4px; }
.vtabs .vtab:hover .eq { width: 24px; opacity: 1; margin-right: 12px; }
.vtabs .vtab:hover .eq i { animation: eqbounce .9s ease-in-out infinite; }
.vtabs .vtab .eq i:nth-child(2) { animation-delay: .15s; }
.vtabs .vtab .eq i:nth-child(3) { animation-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .eq i { animation: none !important; height: 10px; } }
/* handle is desktop-hidden; the pill shows as the normal bottom-centre switcher there */
.pill-handle { display: none; }

/* Mobile: tuck the package switcher into the right edge; a small handle pulls it out */
@media (max-width: 760px) {
  .services-pill-wrap {
    left: auto; right: 0; bottom: auto; top: 50%;
    align-items: center; justify-content: flex-end;
    /* closed: slid out to the right, leaving only the 46px handle peeking */
    transform: translate(calc(100% - 46px), -50%);
  }
  .services-pill-wrap.pill-open { transform: translate(0, -50%); }
  .services-pill-wrap.pill-hidden { transform: translate(120%, -50%); opacity: 0; }

  .pill-handle {
    pointer-events: auto;   /* wrap is pointer-events:none; re-enable taps on the handle */
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px;
    flex: 0 0 auto; width: 46px; cursor: pointer; padding: 18px 0;
    background: rgba(240,239,236,.82); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255,255,255,.6); border-right: none; border-radius: 16px 0 0 16px;
    box-shadow: 0 14px 44px rgba(23,23,23,.16);
  }
  .pill-handle .hbars { display: inline-flex; gap: 2px; align-items: flex-end; height: 14px; }
  .pill-handle .hbars i { width: 3px; background: var(--accent); border-radius: 1px; display: block; }
  .pill-handle .hbars i:nth-child(1) { height: 6px; }
  .pill-handle .hbars i:nth-child(2) { height: 14px; }
  .pill-handle .hbars i:nth-child(3) { height: 9px; }
  .pill-handle .pill-chevron { width: 16px; height: 16px; color: var(--ink); transition: transform .38s cubic-bezier(.2,.7,.2,1); }
  .services-pill-wrap.pill-open .pill-chevron { transform: rotate(180deg); }

  .services-pill {
    flex-direction: column; gap: 5px; padding: 7px 5px;
    border-radius: 0; border-left: none;
  }
  .services-pill button {
    min-width: 0; width: 100%; padding: 10px 14px; font-size: .62rem;
    letter-spacing: .05em; text-align: left; justify-content: flex-start;
  }
  /* every package keeps its brand-bars icon in the drawer (no hover on touch) */
  .services-pill button .eq { width: 13px; opacity: .45; margin-right: 9px; }
  .services-pill button.active .eq { opacity: 1; }
}
:root[data-theme="dark"] .pill-handle { background: rgba(30,27,24,.82); border-color: rgba(255,255,255,.14); }

/* ---------- Floating "Book a Consultation" CTA (mobile only) ---------- */
.book-fab {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%);
  z-index: 59; display: none;
}
@media (max-width: 960px) { .book-fab { display: block; } }
.book-fab-inner {
  background: rgba(240,239,236,.72); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,.6); border-radius: 999px; padding: 6px;
  box-shadow: 0 14px 44px rgba(23,23,23,.18);
}
.book-fab-btn {
  display: block; background: var(--accent); color: #fff; border-radius: 999px;
  padding: 14px 30px; font-weight: 600; font-size: .95rem; text-align: center; white-space: nowrap;
  transition: background .2s ease;
}
.book-fab-btn:hover { background: var(--accent-dark); }
:root[data-theme="dark"] .book-fab-inner { background: rgba(30,27,24,.72); border-color: rgba(255,255,255,.14); }

/* ---------- Footer brand lockup (orange stat-bars over the wordmark) ---------- */
.footer-lockup { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 22px; }
.footer-lockup .lk-bars { display: inline-flex; gap: 4px; align-items: flex-end; height: 20px; }
.footer-lockup .lk-bars i { width: 5px; background: var(--accent); display: block; border-radius: 1px; }
.footer-lockup .lk-bars i:nth-child(1) { height: 9px; }
.footer-lockup .lk-bars i:nth-child(2) { height: 14px; }
.footer-lockup .lk-bars i:nth-child(3) { height: 20px; }
.footer-lockup .flogo { height: 30px; margin: 0; }

/* ---------- Team cards (About) ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.team-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 34px);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(23,23,23,.10); }
.team-card .t-avatar {
  width: 64px; height: 64px; border-radius: 50%; background: var(--dark); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1.15rem;
  letter-spacing: .02em; margin-bottom: 20px;
}
.team-card .t-name { font-weight: 600; font-size: 1.15rem; }
.team-card .t-role { color: var(--accent); font-weight: 600; font-size: .9rem; margin: 4px 0 10px; }
.team-card .t-loc { color: var(--gray); font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
.team-card .t-loc svg { width: 14px; height: 14px; }
@media (max-width: 820px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------- Knowledge base ---------- */
.kb-featured { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 54px); margin-bottom: clamp(30px, 4vw, 48px); transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease; }
.kb-featured:hover { transform: translateY(-4px); box-shadow: 0 24px 54px rgba(23,23,23,.10); border-color: rgba(193,90,52,.35); }
.kb-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.kb-meta .star { color: var(--accent); }
.kb-featured h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-bottom: 14px; max-width: 22ch; }
.kb-featured .kb-ex { color: var(--gray); max-width: 62ch; margin-bottom: 26px; }
.kb-cat { color: var(--accent); font-weight: 600; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; }
.kb-date { color: var(--gray); font-size: .85rem; }
.kb-controls { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.kb-controls input, .kb-controls select { padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); font-family: inherit; font-size: .95rem; color: var(--ink); transition: border-color .2s ease; }
.kb-controls input { flex: 1 1 300px; }
.kb-controls input:focus, .kb-controls select:focus { outline: none; border-color: var(--accent); }
.kb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.kb-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 2.4vw, 30px); transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease; }
.kb-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(23,23,23,.10); }
.kb-card .kb-cat { margin-bottom: 12px; }
.kb-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.kb-card p { color: var(--gray); font-size: .95rem; margin-bottom: 18px; flex: 1; }
.kb-read { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; color: var(--accent); margin-top: auto; }
.kb-read .arrow { transition: transform .25s ease; }
.kb-card:hover .kb-read .arrow { transform: translateX(4px); }
.kb-empty { color: var(--gray); padding: 40px 2px; display: none; }
@media (max-width: 900px) { .kb-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .kb-grid { grid-template-columns: 1fr; } }

/* KB cards + featured with images */
.kb-card { padding: 0; overflow: hidden; }
.kb-thumb { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; filter: grayscale(1); transition: filter .45s ease, transform .6s ease; }
.kb-card:hover .kb-thumb { filter: grayscale(0); transform: scale(1.05); }
.kb-body { padding: clamp(20px, 2.2vw, 26px); display: flex; flex-direction: column; flex: 1; }
.kb-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; overflow: hidden; }
.kb-featured .kb-fimg { width: 100%; height: 100%; min-height: 300px; object-fit: cover; filter: grayscale(1); }
.kb-featured .kb-fbody { padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 760px) { .kb-featured { grid-template-columns: 1fr; } }

/* ---------- Article template ---------- */
.article { padding: clamp(30px, 5vw, 60px) 0 clamp(50px, 7vw, 90px); }
.article-back { display: inline-flex; align-items: center; gap: 8px; color: var(--gray); font-weight: 600; font-size: .9rem; margin-bottom: 26px; }
.article-back:hover { color: var(--accent); }
.article-head { max-width: 820px; }
.article-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.article h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 0; }
.article-hero { margin: clamp(28px, 4vw, 46px) 0; border-radius: var(--radius-lg); overflow: hidden; }
.article-hero img { width: 100%; height: clamp(300px, 44vw, 560px); object-fit: cover; display: block; }
.article-body { max-width: 720px; }
.article-body .lead-p { font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.5; color: var(--ink); font-weight: 500; margin-bottom: 1.4rem; }
.article-body p { color: var(--gray); font-size: 1.08rem; margin-bottom: 1.3rem; }
.article-body h2 { font-size: clamp(1.35rem, 2.2vw, 1.9rem); margin: 2.2rem 0 .8rem; }
.article-body h3 { font-size: 1.15rem; margin: 1.6rem 0 .5rem; }
.article-body h2:first-child, .article-body h3:first-child { margin-top: 0; }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.article-body ul { margin: 0 0 1.3rem 1.2rem; color: var(--gray); }
.article-body li { margin-bottom: .5rem; font-size: 1.02rem; line-height: 1.6; }
.article-body li ul { margin-top: .5rem; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-cta { max-width: 720px; margin-top: 40px; padding: clamp(26px, 3vw, 40px); background: var(--prod-bg); border-radius: var(--radius-lg); text-align: center; }
.article-cta h3 { margin-bottom: 8px; }
.article-cta p { color: var(--gray); margin-bottom: 20px; }

/* article layout with sticky "Inside page" progress TOC */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 250px; gap: clamp(30px, 5vw, 64px); align-items: start; }
.article-layout .article-body { max-width: none; }
.toc { position: sticky; top: 100px; }
.toc-title { font-weight: 600; font-size: 1.05rem; margin-bottom: 14px; }
.toc-list { position: relative; padding-left: 18px; }
.toc-list::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 2px; background: var(--line); border-radius: 2px; }
.toc-fill { position: absolute; left: 0; top: 4px; width: 2px; height: 0; background: var(--accent); border-radius: 2px; transition: height .12s linear; }
.toc-list a { display: block; padding: 7px 0; color: var(--gray); font-size: .92rem; line-height: 1.35; transition: color .2s ease; }
.toc-list a.sub { padding-left: 14px; font-size: .85rem; }
.toc-list a:hover { color: var(--ink); }
.toc-list a.active { color: var(--ink); font-weight: 600; }
@media (max-width: 980px) {
  .article-layout { grid-template-columns: 1fr; }
  .toc { position: static; margin-top: 8px; }
  .toc-list { max-height: none; }
}

/* join band (About) */
.join-band { text-align: center; }
.join-band .container { max-width: 760px; }
.join-band p { color: var(--gray); font-size: 1.1rem; margin: 18px auto 30px; max-width: 46ch; }

/* ---------- Soft-beige section variant (gentle background shift instead of black) ---------- */
.section.dark { background: var(--prod-bg); color: var(--ink); }
.section.dark h2 { color: var(--ink); }
.section.dark .section-tag, .section.dark .section-tag span { color: var(--ink); }
.section.dark .section-tag .num, .section.dark .section-tag .dot { color: var(--accent); }
.section.dark .muted { color: var(--gray); }
.section.dark .value-grid { border-top-color: var(--line-soft); }
.section.dark .value { border-color: var(--line-soft); }
.section.dark .value h3 { color: var(--ink); }
.section.dark .value p { color: var(--gray); }
.section.dark.join-band p { color: var(--gray); }

/* ---------- Team card with photo ---------- */
.team-card { padding: 0; overflow: hidden; }
.team-card .t-photo {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block;
  filter: grayscale(1) contrast(1.02); transition: filter .45s ease;
}
.team-card:hover .t-photo { filter: grayscale(0); }
.team-card .t-body { padding: 20px 22px 26px; }

/* ---------- About hero image ---------- */
.about-hero-media { position: relative; }
.about-hero-img {
  width: 100%; height: clamp(340px, 42vw, 560px); object-fit: cover; border-radius: var(--radius-lg);
  filter: grayscale(1) sepia(.5) saturate(1.6) hue-rotate(-12deg) contrast(1.03);
}

/* motif on the simple page heroes (contact / kb / join / booking) */
.page-hero .motif .b1 { width: 60px; height: 170px; right: 14%; top: 24px; opacity: .5; }
.page-hero .motif .b2 { width: 60px; height: 240px; right: 7%;  top: 74px; opacity: .4; }
.page-hero .motif .b3 { width: 60px; height: 130px; right: 21%; top: 0;    opacity: .32; }
@media (max-width: 1100px) { .page-hero .motif { display: none; } }

/* ---------- Value slider (horizontal carousel, like the real /about) ---------- */
.value-slider {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding-bottom: 6px; scrollbar-width: none; -ms-overflow-style: none;
}
.value-slider::-webkit-scrollbar { display: none; }
.vslide {
  flex: 0 0 clamp(280px, 44%, 460px); scroll-snap-align: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px); min-height: clamp(360px, 38vw, 460px);
  display: flex; flex-direction: column;
}
.vslide .vn { color: var(--accent); font-weight: 600; font-size: 2.4rem; letter-spacing: -.02em; line-height: 1; }
.vslide .vs-media {
  flex: 1; min-height: 120px; margin: 22px 0; border-radius: 16px;
  background: rgba(193,90,52,.09); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.vslide .vs-media svg { width: 58px; height: 58px; }
.vslide .vs-body { margin-top: 0; }
.vslide h3 { margin-bottom: 12px; }
.vslide p { color: var(--gray); }
.slider-nav { display: flex; gap: 12px; margin-top: 30px; }
.slider-btn {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); background: transparent;
  color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: .25s ease;
}
.slider-btn svg { width: 20px; height: 20px; }
.slider-btn:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.slider-btn.is-solid { background: var(--dark); color: #fff; border-color: var(--dark); }
.slider-btn.is-solid:hover { background: var(--accent); border-color: var(--accent); }

/* ---------- Contact page (info + form) ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 4vw, 64px); align-items: start; }
.contact-info .ci-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.contact-info .ci-item:first-child { padding-top: 0; }
.contact-info .ci-item:last-child { border-bottom: none; }
.ci-ic { width: 46px; height: 46px; border-radius: 13px; background: rgba(193,90,52,.10); color: var(--accent); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.ci-ic svg { width: 20px; height: 20px; }
.ci-k { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gray); font-weight: 600; margin-bottom: 4px; }
.ci-v { font-weight: 500; }
.ci-v a:hover { color: var(--accent); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* shared form styles */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 42px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 600; font-size: .82rem; letter-spacing: .03em; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg);
  font-family: inherit; font-size: 1rem; color: var(--ink); transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: var(--surface); }
.field textarea { min-height: 130px; resize: vertical; }
.form-success { text-align: center; padding: 30px 10px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- How-it-works scroll timeline (sticky image + progress steps) ---------- */
.htw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: start; }
.htw-media { position: sticky; top: 104px; border-radius: var(--radius-lg); overflow: hidden; }
.htw-media img {
  width: 100%; height: clamp(380px, 46vw, 560px); object-fit: cover;
  filter: grayscale(1) sepia(.5) saturate(1.6) hue-rotate(-12deg) contrast(1.03);
}
.timeline { padding-top: 6px; }
.tl-step {
  border-left: 2px solid var(--line); padding: 0 0 clamp(46px, 7vw, 88px) clamp(24px, 3vw, 36px);
  opacity: .38; transition: opacity .4s ease, border-color .4s ease;
}
.tl-step:last-child { padding-bottom: 0; }
.tl-step.active { opacity: 1; border-left-color: var(--accent); }
.tl-step h3 { font-size: clamp(1.35rem, 2.4vw, 2rem); margin-bottom: 12px; }
.tl-step .tl-num { color: var(--accent); }
.tl-step p { color: var(--gray); max-width: 42ch; }
@media (max-width: 860px) {
  .htw-grid { grid-template-columns: 1fr; }
  .htw-media { position: static; margin-bottom: 30px; }
}

/* ---------- Reengagement benefits (services) ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 4vw, 52px); }
.benefit { border-top: 2px solid var(--ink); padding-top: 22px; }
.benefit h3 { font-size: 1.35rem; margin-bottom: 12px; }
.benefit p { color: var(--gray); }

/* ---------- Values ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-soft); }
.value {
  padding: 40px clamp(20px, 3vw, 40px); border-bottom: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft);
}
.value .vn { color: var(--accent); font-weight: 600; letter-spacing: .1em; margin-bottom: 20px; }
.value h3 { font-size: 1.3rem; margin-bottom: 12px; }
.value p { color: var(--gray); font-size: .98rem; }

/* ---------- Testimonial card ---------- */
.testimonial { padding: clamp(96px, 10vw, 140px) 0 clamp(60px, 8vw, 100px); }
.testi-card {
  max-width: 680px; margin: 0 auto; position: relative;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 50px) clamp(26px, 4vw, 56px); text-align: center;
}
.testi-mark {
  font-family: Georgia, "Times New Roman", serif; font-size: 5.5rem; line-height: 1;
  color: var(--accent); height: .55em; display: block; margin: 0 auto;
}
.testi-stars { color: var(--accent); letter-spacing: 4px; font-size: 1.05rem; margin-bottom: 20px; }
.quote {
  font-size: clamp(1.35rem, 2.6vw, 2rem); line-height: 1.4; font-weight: 500; letter-spacing: -.015em;
  max-width: 26ch; margin: 0 auto;
}
.testi-author { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 30px; text-align: left; }
.testi-author .avatar {
  width: 52px; height: 52px; border-radius: 50%; background: var(--dark); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 600; letter-spacing: .02em; flex: 0 0 auto;
}
.testi-author .name { font-weight: 600; display: block; }
.testi-author .co { color: var(--accent); font-weight: 600; letter-spacing: .04em; font-size: .95rem; }

/* benefit cells -> cards (gestalt: similarity with the rest of the card system) */
.benefit {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 34px);
  transition: transform .3s ease, box-shadow .3s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(23,23,23,.09); }
.benefit h3 { font-size: 1.25rem; margin-bottom: 12px; transition: color .25s ease; }
a.benefit:hover h3 { color: var(--accent); }
.benefit p { color: var(--gray); }

/* ---------- Logo marquee ---------- */
.marquee { overflow: hidden; padding: 40px 0 clamp(60px,8vw,90px); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 88px; width: max-content; animation: scrollx 32s linear infinite; align-items: center; }
.marquee img { height: 56px; width: auto; opacity: .62; filter: grayscale(100%); }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--line); max-width: 900px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 26px 0; display: flex; justify-content: space-between; gap: 20px; align-items: center;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem); font-weight: 500; color: var(--ink); font-family: inherit;
}
.faq-q .plus { flex: 0 0 auto; width: 26px; height: 26px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--accent); transition: .3s; }
.faq-q .plus::before { top: 12px; left: 0; width: 26px; height: 2px; }
.faq-q .plus::after { left: 12px; top: 0; width: 2px; height: 26px; }
.faq-item.open .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; color: var(--gray); }
.faq-a .faq-a-inner { padding: 0 60px 28px 0; }

/* ---------- Big CTA ---------- */
.big-cta { padding: clamp(70px, 9vw, 130px) 0; text-align: center; }
.big-cta h2 { font-size: clamp(2.2rem, 5vw, 4rem); max-width: 16ch; margin: 0 auto 34px; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #efefef; padding: clamp(60px, 8vw, 110px) 0 40px; }
.footer .eyebrow { color: var(--accent); }
.footer h2 { color: #fff; font-size: clamp(2.4rem, 6vw, 5rem); margin: 20px 0 14px; }
.footer .tagline { color: #bdbdbd; font-size: 1.15rem; margin-bottom: 50px; max-width: 34ch; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding: 50px 0; border-top: 1px solid rgba(255,255,255,.14); }
.footer-grid img.flogo { height: 30px; margin-bottom: 24px; }
.footer-col h4 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #8b8b8b; margin-bottom: 18px; font-weight: 600; }
.footer-col a, .footer-col p { display: block; color: #d8d8d8; margin-bottom: 12px; font-size: .96rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.14); color: #8b8b8b; font-size: .85rem; }
.footer-bottom a { color: #8b8b8b; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Simple page hero ---------- */
.page-hero { padding: clamp(60px, 9vw, 120px) 0 clamp(40px,5vw,60px); }
.page-hero h1 { max-width: 16ch; margin-top: 22px; }
.page-hero p.lead { color: var(--gray); font-size: 1.2rem; max-width: 52ch; margin-top: 24px; }

/* ---------- Animations ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

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

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; align-items: start; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; }
  .product { grid-template-columns: 1fr; }
  .prod-layout { grid-template-columns: 1fr; gap: 8px; }
  .products-section .product-card { margin-top: 8px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-menu, .nav-right .jointeam { display: none; }
  .nav-right .btn-dark { display: none; }   /* moves to floating bottom CTA */
  .nav-logo img { height: 40px; }           /* larger, more legible logo on mobile */
  .nav-toggle { display: block; }
  .nav.open .nav-menu {
    display: flex; flex-direction: column; position: absolute; top: 84px; left: 0; right: 0;
    background: var(--bg); padding: 24px var(--gutter); gap: 20px; border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-menu a { font-size: 1rem; }
}

/* ---------- Cookie consent banner (Consent Mode v2, brand + theme aware) ---------- */
.cc-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
  background: var(--surface); border-top: 1px solid var(--line);
  box-shadow: 0 -4px 30px rgba(23,23,23,.14);
  transform: translateY(100%); transition: transform .4s cubic-bezier(.2,.7,.2,1);
  max-height: 92vh; overflow-y: auto;
}
.cc-banner.cc-visible { transform: translateY(0); }
.cc-inner { max-width: 920px; margin: 0 auto; padding: 26px 24px; }
.cc-title { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; font-family: inherit; }
.cc-text { font-size: .9rem; line-height: 1.65; color: var(--gray); margin-bottom: 8px; }
.cc-link { margin-bottom: 18px; }
.cc-link a { font-size: .85rem; color: var(--accent); text-decoration: underline; font-weight: 500; }
.cc-link a:hover { color: var(--accent-dark); }
.cc-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.cc-btn {
  border: none; cursor: pointer; font-family: inherit;
  font-size: .88rem; font-weight: 600; padding: 12px 24px;
  border-radius: 999px; transition: all .2s ease;
}
.cc-btn-accept { background: var(--accent); color: #fff; }
.cc-btn-accept:hover { background: var(--accent-dark); color: #fff; }
.cc-btn-reject { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.cc-btn-reject:hover { background: rgba(193,90,52,.08); }
.cc-btn-details { background: transparent; color: var(--gray); text-decoration: underline; padding: 12px 12px; }
.cc-btn-details:hover { color: var(--ink); }
.cc-details { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.cc-details.cc-detail-open { max-height: 620px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.cc-category { padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.cc-category:last-of-type { border-bottom: none; }
.cc-cat-label { display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 16px; }
.cc-cat-info { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.cc-cat-info strong { font-size: .92rem; color: var(--ink); font-weight: 600; }
.cc-cat-info span { font-size: .82rem; color: var(--gray); line-height: 1.5; }
.cc-toggle { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.cc-toggle input { opacity: 0; width: 0; height: 0; }
.cc-slider { position: absolute; inset: 0; background: var(--line); border-radius: 24px; transition: background .3s; cursor: pointer; }
.cc-slider::before { content: ''; position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform .3s; box-shadow: 0 1px 3px rgba(23,23,23,.2); }
.cc-toggle input:checked + .cc-slider { background: var(--accent); }
.cc-toggle input:checked + .cc-slider::before { transform: translateX(20px); }
.cc-toggle-disabled .cc-slider { opacity: .55; cursor: not-allowed; }
.cc-reopener {
  position: fixed; bottom: 20px; left: 20px; z-index: 9999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); color: var(--ink); border: 1px solid var(--line);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(23,23,23,.16); transition: all .2s ease;
  transform: scale(0); opacity: 0;
}
.cc-reopener.cc-visible { transform: scale(1); opacity: 1; }
.cc-reopener:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: scale(1.08); }
.cc-reopener svg { width: 20px; height: 20px; }
@media (max-width: 768px) {
  .cc-inner { padding: 20px 16px; }
  .cc-buttons { flex-direction: column; }
  .cc-btn { width: 100%; text-align: center; }
  .cc-btn-details { text-align: left; padding: 8px 0; }
  .cc-reopener { bottom: 14px; left: 14px; width: 38px; height: 38px; }
}
