/* =========================================================
   ONIX BUILDER FUNNEL — Design System v2
   Vanilla CSS, mobile-first, no build step.
   Swap the :root variables to re-skin per client.
   ========================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand */
  --brand-primary:        #C9A24D;
  --brand-primary-dark:   #B0863A;
  --brand-secondary:      #1A120E;          /* deep charcoal */
  --brand-accent-soft:    #FBF3E0;          /* warm cream */

  /* Text */
  --text-1: #0E0F11;
  --text-2: #4F5258;
  --text-3: #8A8E94;
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: rgba(255,255,255,0.72);

  /* Surfaces */
  --surface-1: #FFFFFF;
  --surface-2: #F6F8FA;
  --surface-3: #ECF0F4;
  --surface-dark: #1E222A;
  --border-soft: rgba(15,15,15,0.07);
  --border-strong: rgba(15,15,15,0.12);

  /* Shadow */
  --shadow-sm:  0 2px  8px rgba(20,20,20,0.04);
  --shadow-md:  0 10px 30px rgba(20,20,20,0.06);
  --shadow-lg:  0 24px 60px rgba(20,20,20,0.10);
  --shadow-cta: 0 16px 40px rgba(201,162,77,0.40);

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 28px;

  /* Fonts */
  --font-heading: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Sizing */
  --container: 1200px;
  --header-h: 68px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-1);
  background: var(--surface-2);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- 3. TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 0.5em;
  font-weight: 800;
  color: var(--text-1);
}
h1 { font-size: clamp(2.2rem, 7vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 4.6vw, 2.8rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.015em; }
p  { margin: 0 0 1em; color: var(--text-2); }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 14px;
}
.accent {
  background: linear-gradient(180deg, transparent 62%, var(--brand-primary) 62%);
  padding: 0 6px;
  border-radius: 4px;
}

/* ---------- 4. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}
.section { padding: 72px 0; position: relative; }
@media (min-width: 900px) {
  .section { padding: 112px 0; }
}
.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  text-align: center;
  white-space: nowrap;
  position: relative;
}
.btn .arrow { transition: transform 0.2s var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary {
  background: var(--brand-primary);
  color: var(--text-1);
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(201,162,77,0.55);
}
.btn--ghost {
  background: transparent;
  color: var(--text-1);
  border: 2px solid var(--border-strong);
}
.btn--ghost:hover { background: var(--text-1); color: #fff; border-color: var(--text-1); }
.btn--on-dark {
  background: #fff;
  color: var(--text-1);
}
.btn--on-dark:hover { background: var(--brand-primary); }
.btn--lg { padding: 20px 34px; font-size: 1.08rem; }

/* Mobile button sizing — auto-width, comfortable tap target, no stretched look */
@media (max-width: 540px) {
  .btn {
    width: auto;
    padding: 13px 22px;
    font-size: 0.94rem;
    gap: 0.4em;
  }
  .btn--lg { padding: 14px 24px; font-size: 0.98rem; }
}

/* ---------- 6. HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250,248,243,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
  min-height: var(--header-h);
}
.nav__logo {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.nav__cta-group { display: flex; gap: 10px; align-items: center; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--text-1);
  color: #fff;
  font-size: 0.92rem;
  transition: background 0.2s var(--ease);
}
.nav__phone:hover { background: #000; }
@media (max-width: 520px) {
  .nav__phone span { display: none; }
}

/* ---------- 7. HERO ---------- */
.hero {
  position: relative;
  padding: 40px 0 56px;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(201,162,77,0.18), transparent 60%),
    radial-gradient(800px 500px at -10% 30%, rgba(15,20,25,0.05), transparent 60%),
    linear-gradient(180deg, var(--surface-2) 0%, var(--surface-2) 100%);
  overflow: hidden;
}
.hero::before {
  /* subtle grid pattern */
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,15,15,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,15,15,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black, transparent 70%);
  pointer-events: none;
}
.hero__grid { position: relative; }
@media (min-width: 980px) {
  .hero {
    padding: 64px 0 96px;
  }
  .hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
  }
}
.hero__eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero__eyebrow-pill::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 4px rgba(46,204,113,0.20);
  animation: pulse-dot 2s var(--ease) infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(46,204,113,0.20); }
  50%      { box-shadow: 0 0 0 8px rgba(46,204,113,0.00); }
}
.hero__title { margin-bottom: 22px; }
.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-2);
  max-width: 600px;
  margin: 0 0 32px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
@media (max-width: 540px) {
  .hero__ctas { gap: 10px; margin-bottom: 28px; }
}
/* Hide hero phone CTA on mobile/tablet — header icon + sticky bottom bar already cover it */
@media (max-width: 820px) {
  .hero__ctas [data-cta="hero-phone"] { display: none; }
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-size: 0.92rem;
  color: var(--text-2);
}
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust strong { color: var(--text-1); font-weight: 700; }
.hero__trust .tick {
  width: 18px; height: 18px;
  background: var(--brand-primary);
  border-radius: 50%;
  display: inline-grid; place-items: center;
  color: var(--text-1);
  font-size: 11px;
  font-weight: 800;
}

/* Hero media */
.hero__media {
  margin-top: 44px;
  position: relative;
}
@media (min-width: 980px) {
  .hero__media { margin-top: 0; }
}
.hero__media-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  background: var(--surface-3);
}
.hero__media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__media-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(0,0,0,0.12));
}
/* Floating review card on hero */
.hero__float {
  position: absolute;
  left: -16px; bottom: -22px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-soft);
}
.hero__float-stars { color: var(--brand-primary); font-size: 0.95rem; letter-spacing: 1px; }
.hero__float-text  { font-size: 0.82rem; line-height: 1.3; }
.hero__float-text strong { display: block; color: var(--text-1); font-weight: 700; }
.hero__float-text span { color: var(--text-2); }

/* ---------- 8. MARQUEE LOGO STRIP ---------- */
.marquee {
  padding: 32px 0;
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee__label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 22px;
}
.marquee__track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 38s linear infinite;
  align-items: center;
}
.marquee__item {
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-2);
  font-size: 1.1rem;
  opacity: 0.7;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.marquee__item svg { width: 28px; height: 28px; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- 9. STATS ROW ---------- */
.stats {
  padding: 56px 0;
  background: var(--surface-dark);
  color: #fff;
  position: relative;
}
.stats__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 12px;
  text-align: center;
}
@media (min-width: 760px) { .stats__row { grid-template-columns: repeat(4, 1fr); } }
.stats__item strong {
  display: block;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stats__item span {
  display: block;
  font-size: 0.92rem;
  opacity: 0.78;
}

/* ---------- 10. CARDS / SERVICES ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 32px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: var(--r-md);
  padding: 1px;
  background: linear-gradient(135deg, var(--brand-primary), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.card:hover::after { opacity: 1; }
.card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
  margin-bottom: 20px;
  color: var(--text-1);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p  { margin: 0; font-size: 0.96rem; }

/* ---------- 11. WHY US ---------- */
.why-grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 820px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 48px; } }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-item__icon {
  flex: 0 0 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-primary);
  display: grid; place-items: center;
}
.why-item__icon svg {
  width: 22px; height: 22px;
  stroke: var(--text-1);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  transition: stroke-dashoffset 0.8s var(--ease) 0.2s;
}
.why-item.is-visible .why-item__icon svg { stroke-dashoffset: 0; }
.why-item h3 { margin-bottom: 6px; }
.why-item p  { margin: 0; }

/* ---------- 12. BEFORE/AFTER DRAG SLIDER ---------- */
.ba {
  display: grid;
  gap: 18px;
}
@media (min-width: 900px) { .ba { grid-template-columns: 2fr 1fr; gap: 32px; align-items: stretch; } }
.ba-slider {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  box-shadow: var(--shadow-lg);
  user-select: none;
  touch-action: pan-y;
  background: var(--surface-3);
  --pos: 50%;
}
.ba-slider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-slider .ba-before {
  clip-path: polygon(0 0, var(--pos) 0, var(--pos) 100%, 0 100%);
}
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
  pointer-events: none;
}
.ba-thumb {
  position: absolute;
  top: 50%; left: var(--pos);
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  cursor: grab;
  transition: transform 0.15s var(--ease);
}
.ba-thumb:active { cursor: grabbing; transform: translate(-50%, -50%) scale(0.95); }
.ba-thumb svg { width: 22px; height: 22px; color: var(--text-1); }
.ba-label {
  position: absolute;
  top: 16px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.ba-label--before { left: 16px; }
.ba-label--after  { right: 16px; background: var(--brand-primary); color: var(--text-1); }

.ba-side {
  background: var(--surface-1);
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.ba-side__item { display: flex; gap: 12px; align-items: flex-start; }
.ba-side__num {
  flex: 0 0 28px; height: 28px;
  border-radius: 8px;
  background: var(--brand-primary);
  color: var(--text-1);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.ba-side__item strong { display: block; margin-bottom: 2px; font-size: 0.96rem; }
.ba-side__item span { font-size: 0.88rem; color: var(--text-2); }

/* ---------- 13. PROCESS TIMELINE ---------- */
.process {
  display: grid;
  gap: 24px;
  position: relative;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .process { grid-template-columns: repeat(3, 1fr); }
  .process::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 14%; right: 14%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border-strong) 0 8px, transparent 8px 16px);
    z-index: 0;
  }
}
.process-step {
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-step__num {
  display: inline-grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: var(--text-1);
  box-shadow: 0 6px 20px rgba(201,162,77,0.4);
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { margin: 0; font-size: 0.96rem; }

/* ---------- 14. TESTIMONIAL CAROUSEL ---------- */
.testimonials {
  display: grid;
  gap: 18px;
  grid-auto-flow: column;
  grid-auto-columns: 86%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 22px 32px;
  margin: 0 -22px;
  scrollbar-width: none;
}
.testimonials::-webkit-scrollbar { display: none; }
@media (min-width: 760px) { .testimonials { grid-auto-columns: 48%; } }
@media (min-width: 1080px){ .testimonials { grid-auto-columns: 32%; padding-left:0; padding-right:0; margin:0; } }
.tcard {
  scroll-snap-align: start;
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}
.tcard__stars { color: var(--brand-primary); letter-spacing: 2px; font-size: 1.1rem; }
.tcard p { color: var(--text-1); font-size: 1.05rem; margin: 0; flex: 1; }
.tcard__author { display: flex; gap: 12px; align-items: center; }
.tcard__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-accent-soft);
  display: grid; place-items: center;
  font-weight: 800;
  color: var(--text-1);
  font-size: 0.85rem;
}
.tcard__name { font-weight: 700; font-size: 0.95rem; }
.tcard__meta { font-size: 0.84rem; color: var(--text-2); }

/* ---------- 15. AREAS ---------- */
.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto;
}
.areas span {
  padding: 10px 18px;
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.areas span:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--text-1);
}

/* ---------- 16. FINANCE BAND (modular) ---------- */
.finance-band {
  background: linear-gradient(135deg, var(--surface-dark), #2b313b);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 44px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 720px) { .finance-band { padding: 56px 36px; } }
.finance-band::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201,162,77,0.20), transparent 70%);
  top: -120px; right: -80px;
  border-radius: 50%;
}
.finance-band h2 { color: #fff; position: relative; }
.finance-band p  { color: rgba(255,255,255,0.78); max-width: 600px; margin: 0 auto 28px; position: relative; }
.finance-band .btn { position: relative; }

/* ---------- 17. FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-soft);
}
.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--text-1);
}
.faq-item__chev {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface-3);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background 0.2s var(--ease), transform 0.3s var(--ease);
}
.faq-item__chev svg {
  width: 14px; height: 14px;
  transition: transform 0.3s var(--ease);
}
.faq-item.is-open .faq-item__chev { background: var(--brand-primary); }
.faq-item.is-open .faq-item__chev svg { transform: rotate(180deg); }
.faq-item__a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq-item.is-open .faq-item__a-wrap { grid-template-rows: 1fr; }
.faq-item__a-inner { overflow: hidden; }
.faq-item__a { padding: 0 0 24px; color: var(--text-2); margin: 0; }

/* ---------- 18. FINAL CTA + footer top transition ---------- */
.final-cta-wrap {
  background: var(--surface-dark);
  color: #fff;
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 720px) { .final-cta-wrap { padding: 88px 0 96px; } }
.final-cta-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 20% 30%, rgba(201,162,77,0.18), transparent 60%),
    radial-gradient(500px 300px at 90% 80%, rgba(201,162,77,0.10), transparent 60%);
  pointer-events: none;
}
.final-cta {
  text-align: center;
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.final-cta h2 {
  color: #fff;
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 3.2rem);
}
.final-cta p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  font-size: 1.15rem;
}

/* ---------- 19. FOOTER ---------- */
.site-footer {
  background: var(--surface-dark);
  color: rgba(255,255,255,0.78);
  padding: 0 0 28px;
  font-size: 0.92rem;
}
.site-footer p { color: rgba(255,255,255,0.78); }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--brand-primary); }
.footer__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
}
.footer__brand { font-weight: 800; font-size: 1.2rem; color: #fff; margin-bottom: 10px; }
.footer__col h3 { color: #fff; margin-bottom: 14px; font-size: 0.95rem; font-weight: 700; letter-spacing: -0.005em; }
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 8px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}

/* ---------- 20. MOBILE STICKY CTA BAR ---------- */
.mobile-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  background: #fff;
  border-radius: 999px;
  padding: 8px;
  display: none;
  gap: 8px;
  z-index: 70;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  border: 1px solid var(--border-soft);
  transform: translateY(120%);
  transition: transform 0.35s var(--ease);
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
}
.mobile-cta__phone { color: var(--text-1); background: var(--surface-3); }
.mobile-cta__btn   { color: var(--text-1); background: var(--brand-primary); }
@media (max-width: 820px) { .mobile-cta { display: flex; } }

/* ---------- 21. MULTI-STEP QUOTE FORM ---------- */
.qf-page {
  background: var(--surface-2);
  min-height: calc(100vh - var(--header-h));
}
.qf-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 980px) {
  .qf-wrap { grid-template-columns: 1.4fr 1fr; gap: 48px; padding: 40px 22px; }
}

.qf {
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 32px 24px 40px;
  margin: 22px;
  box-shadow: var(--shadow-md);
}
@media (min-width: 980px) { .qf { margin: 0; padding: 48px 48px 56px; } }

.qf__progress {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.qf__progress-rail {
  height: 6px;
  background: var(--surface-3);
  border-radius: 999px;
  overflow: hidden;
}
.qf__progress-fill {
  height: 100%;
  width: var(--pct, 25%);
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-dark));
  border-radius: 999px;
  transition: width 0.4s var(--ease);
}
.qf__progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-2);
  font-weight: 600;
}
.qf__progress-meta strong { color: var(--text-1); }

.qf__steps { position: relative; }
.qf__step {
  display: none;
  animation: stepIn 0.4s var(--ease);
}
.qf__step.is-active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.qf__step h2 {
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  margin-bottom: 8px;
}
.qf__step-sub { color: var(--text-2); margin-bottom: 24px; }

/* visual cards (Q1/Q2/Q3) */
.qf__cards {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .qf__cards { grid-template-columns: repeat(2, 1fr); } }
.qf__cards--wide { grid-template-columns: 1fr; }
@media (min-width: 720px) { .qf__cards--wide { grid-template-columns: repeat(2, 1fr); } }

.qf__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border: 2px solid var(--border-soft);
  border-radius: var(--r-md);
  background: var(--surface-1);
  text-align: left;
  width: 100%;
  font-weight: 600;
  font-size: 1rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.qf__card:hover { border-color: var(--brand-primary); transform: translateY(-2px); }
.qf__card.is-selected { border-color: var(--brand-primary); background: var(--brand-accent-soft); }
.qf__card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--surface-3);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background 0.2s var(--ease);
}
.qf__card.is-selected .qf__card-icon { background: var(--brand-primary); }
.qf__card-icon svg { width: 22px; height: 22px; }

/* contact step inputs */
.qf__field { margin-bottom: 16px; }
.qf__field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-1);
}
.qf__field input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-soft);
  border-radius: var(--r-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--surface-1);
  transition: border-color 0.2s var(--ease);
}
.qf__field input:focus {
  outline: none;
  border-color: var(--brand-primary);
}
.qf__field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 540px) { .qf__field-row { grid-template-columns: 1fr 1fr; } }
.qf__field-error {
  color: #c0392b;
  font-size: 0.82rem;
  margin-top: 4px;
  display: none;
}
.qf__field.has-error input { border-color: #c0392b; }
.qf__field.has-error .qf__field-error { display: block; }
.qf__consent {
  display: flex;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-2);
  margin-top: 12px;
  align-items: flex-start;
}

.qf__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}
.qf__back {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--text-2);
  border: 2px solid var(--border-soft);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.qf__back:hover { color: var(--text-1); border-color: var(--text-1); }
.qf__back[disabled] { opacity: 0.35; pointer-events: none; }
.qf__next {
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--brand-primary);
  color: var(--text-1);
  font-weight: 700;
  box-shadow: var(--shadow-cta);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.qf__next:hover { background: var(--brand-primary-dark); transform: translateY(-2px); }
.qf__next[disabled] { opacity: 0.5; cursor: not-allowed; box-shadow: none; }

/* side panel */
.qf-side {
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 32px;
  margin: 0 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (min-width: 980px) { .qf-side { margin: 0; height: 100%; } }
.qf-side__photo {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface-3);
}
.qf-side__photo img { width: 100%; height: 100%; object-fit: cover; }
.qf-side h3 { margin: 0 0 6px; }
.qf-side p  { margin: 0; color: var(--text-2); font-size: 0.94rem; }
.qf-side__stars { color: var(--brand-primary); letter-spacing: 2px; }
.qf-side__bullets { display: grid; gap: 10px; }
.qf-side__bullets li {
  display: flex; gap: 10px; align-items: center;
  font-size: 0.92rem; font-weight: 600;
  color: var(--text-1);
}
.qf-side__bullets li::before {
  content: '';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand-primary);
  display: grid; place-items: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M3 8.5L6.5 12L13 5'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.qf-side ul { list-style: none; padding: 0; margin: 0; }

/* ---------- 22. THANK-YOU PAGE ---------- */
.ty-page {
  background: var(--surface-2);
  min-height: calc(100vh - var(--header-h));
  padding: 0 0 44px;
}
.ty-hero { text-align: center; max-width: 720px; margin: 52px auto 48px; }
.ty-check {
  width: 84px; height: 84px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--brand-primary);
  display: grid; place-items: center;
  box-shadow: 0 0 0 8px rgba(201,162,77,0.16);
  animation: ty-pop 0.5s var(--ease);
}
@keyframes ty-pop {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.ty-check svg {
  width: 44px; height: 44px;
  stroke: var(--text-1);
  stroke-width: 4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: ty-draw 0.6s var(--ease) 0.3s forwards;
}
@keyframes ty-draw { to { stroke-dashoffset: 0; } }
.ty-hero h1 { margin-bottom: 12px; font-size: clamp(1.8rem, 5vw, 2.8rem); }
.ty-hero p  { font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

.ty-timeline {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto 48px;
}
@media (min-width: 760px) { .ty-timeline { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.ty-tl {
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 24px;
  position: relative;
  transition: transform 0.2s var(--ease);
}
.ty-tl.is-active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}
.ty-tl__num {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--text-1);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.ty-tl.is-active .ty-tl__num { background: var(--text-1); color: var(--brand-primary); }
.ty-tl h3 { font-size: 1rem; margin-bottom: 4px; }
.ty-tl p  { margin: 0; font-size: 0.9rem; color: var(--text-2); }
.ty-tl.is-active p { color: rgba(15,15,15,0.78); }

.ty-cal-wrap {
  max-width: 920px;
  margin: 0 auto 48px;
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.ty-cal-wrap__head {
  text-align: center;
  margin-bottom: 18px;
}
.ty-cal-wrap__head h2 { font-size: 1.5rem; margin-bottom: 4px; }
.ty-cal-wrap__head p { margin: 0; color: var(--text-2); font-size: 0.95rem; }
.ty-cal-frame {
  border-radius: var(--r-md);
  overflow: hidden;
  min-height: 620px;
  background: var(--surface-3);
}
.ty-cal-frame iframe { width: 100%; min-height: 620px; border: 0; display: block; }

.ty-extras {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto 48px;
}
@media (min-width: 760px) { .ty-extras { grid-template-columns: 1fr 1fr; } }
.ty-extra {
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ty-extra__icon {
  flex: 0 0 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-accent-soft);
  display: grid; place-items: center;
}
.ty-extra h4 { margin: 0 0 4px; font-size: 1rem; }
.ty-extra p  { margin: 0; font-size: 0.9rem; }
.ty-extra a  { color: var(--text-1); font-weight: 700; text-decoration: underline; }

/* ---------- 23. REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-i="1"] { transition-delay: 0.08s; }
.reveal[data-i="2"] { transition-delay: 0.16s; }
.reveal[data-i="3"] { transition-delay: 0.24s; }
.reveal[data-i="4"] { transition-delay: 0.32s; }
.reveal[data-i="5"] { transition-delay: 0.40s; }
.reveal[data-i="6"] { transition-delay: 0.48s; }

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

/* ---------- INLINE THANK-YOU (shown after submit; no separate page) ---------- */
.qf-done{max-width:560px;margin:32px auto;text-align:center;background:var(--surface-1);border:1px solid var(--border-soft);border-radius:var(--r-lg);padding:48px 32px;box-shadow:var(--shadow-md)}
.qf-done__check{width:64px;height:64px;border-radius:50%;background:var(--brand-primary);color:#fff;display:flex;align-items:center;justify-content:center;font-size:30px;font-weight:800;margin:0 auto 20px}
.qf-done h2{font-size:1.5rem;line-height:1.25;color:var(--text-1);margin:0 0 12px}
.qf-done p{color:var(--text-2);line-height:1.65;margin:0}


/* =========================================================
   v2.1 ADDITIONS — logo slot, photo/testimonial framework,
   booking placeholder, lighter treatment. (Onix)
   ========================================================= */

/* ---------- 24. HERO LOGO SLOT ---------- */
.hero__logo{
  position:absolute; top:16px; left:16px; z-index:3;
  display:inline-flex; align-items:center; gap:10px;
  max-width:calc(100% - 32px);
  padding:9px 16px;
  background:rgba(255,255,255,0.94);
  -webkit-backdrop-filter:saturate(180%) blur(8px);
          backdrop-filter:saturate(180%) blur(8px);
  border:1px solid var(--border-soft);
  border-radius:999px;
  box-shadow:var(--shadow-md);
}
.hero__logo-img{ height:30px; width:auto; max-width:160px; display:block; object-fit:contain; }
.hero__logo-name{ font-weight:800; font-size:1rem; letter-spacing:-0.01em; color:var(--text-1); white-space:nowrap; }
@media (max-width:540px){
  .hero__logo{ top:12px; left:12px; padding:8px 13px; }
  .hero__logo-img{ height:24px; }
  .hero__logo-name{ font-size:0.92rem; }
}

/* ---------- 25. PROJECT GALLERY — client photo slots ---------- */
.gallery{ display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
@media (min-width:760px){ .gallery{ grid-template-columns:repeat(3,1fr); gap:16px; } }
.gallery__tile{
  margin:0; position:relative; border-radius:var(--r-md); overflow:hidden;
  aspect-ratio:4/3; background:var(--surface-3); box-shadow:var(--shadow-sm);
}
.gallery__tile img{ width:100%; height:100%; object-fit:cover; transition:transform .4s var(--ease); }
.gallery__tile:hover img{ transform:scale(1.05); }

/* ---------- 26. TESTIMONIAL PHOTO SLOT ----------
   Swap the initials in .tcard__avatar for <img src="client.jpg"> and it fills the circle. */
.tcard__avatar{ overflow:hidden; }
.tcard__avatar img{ width:100%; height:100%; object-fit:cover; border-radius:50%; }

/* ---------- 27. BOOKING CALENDAR PLACEHOLDER ---------- */
.ty-cal-frame--placeholder{ display:grid; place-items:center; text-align:center; padding:48px 24px; }
.ty-cal-ph{ max-width:440px; }
.ty-cal-ph__icon{
  width:72px; height:72px; margin:0 auto 18px; border-radius:50%;
  background:var(--brand-accent-soft); color:var(--brand-primary);
  display:grid; place-items:center;
}
.ty-cal-ph h3{ margin:0 0 8px; }
.ty-cal-ph p{ margin:0; color:var(--text-2); }


/* thank-you: social-proof block (rolled out across clients) */
.ty-trust { max-width: 1000px; margin: 0 auto 48px; text-align: center; }
.ty-trust__head h2 { font-size: clamp(1.4rem, 4vw, 1.8rem); margin-bottom: 6px; }
.ty-trust__head p  { color: var(--text-2); margin: 0 auto 26px; max-width: 560px; }
.ty-social { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 22px; }
.ty-social a {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 20px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  border: 1px solid var(--border-strong); color: var(--text-1); background: var(--surface-1);
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.ty-social a:hover { transform: translateY(-2px); }
.ty-social a svg { width: 20px; height: 20px; }
.ty-social__ig:hover  { background: #E1306C; color: #fff; border-color: #E1306C; }
.ty-social__fb:hover  { background: #1877F2; color: #fff; border-color: #1877F2; }
.ty-social__web:hover { background: var(--brand-primary); color: var(--text-1); border-color: var(--brand-primary); }
.ty-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.ty-badges span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 999px; font-weight: 600; font-size: 0.9rem;
  background: var(--brand-accent-soft); color: var(--brand-primary-dark);
}

/* ---------- 28. VIDEO TESTIMONIALS ---------- */
.vids{ display:grid; gap:18px; grid-template-columns:1fr; max-width:1120px; margin:0 auto; }
@media (min-width:760px){ .vids{ grid-template-columns:repeat(3,1fr); } }
.vid{ background:var(--surface-1); border:1px solid var(--border-soft); border-radius:var(--r-md); overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .25s var(--ease), box-shadow .25s var(--ease); }
.vid:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.vid__frame{ position:relative; aspect-ratio:16/9; background:var(--surface-dark); }
.vid__frame iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; display:block; }
.vid__cap{ padding:14px 16px; display:flex; align-items:center; gap:10px; }
.vid__cap-badge{ flex:0 0 30px; height:30px; border-radius:8px; background:var(--brand-primary); color:var(--text-1); display:grid; place-items:center; }
.vid__cap-badge svg{ width:16px; height:16px; }
.vid__cap strong{ display:block; font-size:0.95rem; line-height:1.2; }
.vid__cap span{ font-size:0.82rem; color:var(--text-2); }
.gallery__tile figcaption{ position:absolute; left:0; right:0; bottom:0; padding:14px 14px 10px; font-size:0.8rem; font-weight:600; color:#fff; background:linear-gradient(transparent, rgba(0,0,0,0.55)); }

/* ---------- 29. PARTNER / SUPPLIER LOGO STRIP ---------- */
.partners{ padding:42px 0 46px; background:var(--surface-1); border-top:1px solid var(--border-soft); border-bottom:1px solid var(--border-soft); overflow:hidden; }
.partners__label{ text-align:center; font-size:0.72rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--text-3); margin-bottom:28px; }
.partners__viewport{ position:relative; overflow:hidden; max-width:720px; margin:0 auto; mask-image:linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent); -webkit-mask-image:linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent); }
.partners__track{ display:flex; align-items:center; gap:58px; width:max-content; animation:partners-scroll 40s linear infinite; }
.partners__track img{ height:34px; width:auto; max-width:150px; object-fit:contain; opacity:0.82; transition:opacity .2s var(--ease); flex:0 0 auto; }
.partners__track img:hover{ opacity:1; }
.partners:hover .partners__track{ animation-play-state:paused; }
@keyframes partners-scroll{ to{ transform:translateX(-50%); } }
@media (max-width:600px){ .partners__track{ gap:40px; } .partners__track img{ height:28px; max-width:120px; } }
@media (prefers-reduced-motion: reduce){ .partners__track{ animation:none; flex-wrap:wrap; justify-content:center; row-gap:24px; } .partners__viewport{ mask-image:none; -webkit-mask-image:none; } }
