/* ============================================================
   LN FLOORING — STYLESHEET
   Palette: Warm Espresso #0F0D0B | Champagne Gold #C8A96E | Ivory #F5F0E8
   ============================================================ */

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

:root {
  --dark:    #0F0D0B;
  --dark2:   #161310;
  --dark3:   #0A0907;
  --card-bg: #1C1814;
  --gold:    #C8A96E;
  --gold2:   #DFC07A;
  --gold3:   #9A7B45;
  --ivory:   #F5F0E8;
  --greige:  #A09080;
  --border:  rgba(200,169,110,0.14);
  --green:   #25D366;

  --font-serif: 'Playfair Display', serif;
  --font-body:  'Inter', sans-serif;
  --font-mono:  'DM Mono', monospace;

  --nav-h: 72px;
  --r: 14px;
  --r-sm: 8px;
  --ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

/* Offset section scroll snapping for fixed nav */
.hero, .trust-bar, .wheel-section, .process,
.compare, .why, .testimonials, .faq, .cta-section {
  scroll-margin-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-family: var(--font-body); font-weight: 600; }
h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; }
em { font-style: italic; color: var(--gold); }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-title { margin-bottom: 0.75rem; }
.section-sub { color: var(--greige); max-width: 520px; margin: 0 auto; font-size: 1rem; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: var(--ease);
  cursor: pointer;
}
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--gold { background: var(--gold); color: var(--dark3); }
.btn--gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,169,110,0.35); }
.btn--outline { border: 1.5px solid rgba(255,255,255,0.25); color: var(--ivory); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--ease), box-shadow var(--ease);
}
.nav.scrolled {
  background: rgba(10,9,7,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.5);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
  padding: 0 32px;
}
.nav__logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; flex-shrink: 0;
}
.nav__logo-ln {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--gold); color: var(--dark3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 800;
}
.nav__logo-text { color: var(--ivory); }

.nav__links { display: flex; gap: 2rem; margin-left: auto; }
.nav__links a {
  font-size: 0.875rem; font-weight: 500; color: var(--greige);
  transition: color var(--ease); position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width var(--ease);
}
.nav__links a:hover { color: var(--ivory); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.nav-active { color: var(--gold); }
.nav__links a.nav-active::after { width: 100%; background: var(--gold); }
.nav__cta { margin-left: 1rem; }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--ivory); border-radius: 2px; }

.nav__mobile {
  display: none; flex-direction: column;
  background: rgba(10,9,7,0.98); backdrop-filter: blur(24px);
  padding: 1rem 32px 2rem;
  border-bottom: 1px solid var(--border);
}
.nav__mobile a {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-weight: 500; color: var(--greige); transition: color var(--ease);
}
.nav__mobile a:hover { color: var(--ivory); }
.nav__mobile .btn { margin-top: 1rem; justify-content: center; }
.nav__mobile.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%; z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,9,7,0.96) 0%, rgba(10,9,7,0.72) 55%, rgba(10,9,7,0.45) 100%);
}

/* Floating texture chips */
.hero__chip {
  position: absolute; border-radius: var(--r);
  overflow: hidden; z-index: 2; pointer-events: none;
}
.hero__chip img { width: 100%; height: 100%; object-fit: cover; }
.hero__chip--1 { width: 200px; height: 165px; top: 14%; right: 9%; transform: rotate(8deg); opacity: 0.2; }
.hero__chip--2 { width: 160px; height: 130px; bottom: 22%; right: 20%; transform: rotate(-5deg); opacity: 0.15; }
.hero__chip--3 { width: 130px; height: 110px; top: 58%; right: 6%; transform: rotate(13deg); opacity: 0.12; }

.hero__content {
  position: relative; z-index: 3;
  max-width: 680px;
  padding: calc(var(--nav-h) + 5rem) 32px 6rem;
  margin-left: clamp(24px, 8vw, 120px);
}
.hero__pre-title {
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(18px);
}
.hero__title { margin-bottom: 1.5rem; opacity: 0; transform: translateY(28px); }
.hero__sub {
  color: var(--greige); font-size: clamp(1rem, 1.4vw, 1.1rem);
  max-width: 500px; margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(18px);
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; transform: translateY(18px); }

.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollline 1.6s ease-in-out infinite;
}
@keyframes scrollline {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 0;
}
.trust-bar__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.trust-bar__item {
  flex: 1; min-width: 120px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px;
}
.trust-bar__num {
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.trust-bar__num--text { font-size: 1.9rem; }
.trust-bar__num--sm { font-size: 1.5rem; }
.trust-bar__num sup { font-size: 1.1rem; }
.trust-bar__suf { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; }
.trust-bar__item > p { font-size: 0.75rem; color: var(--greige); text-transform: uppercase; letter-spacing: 0.06em; }
.trust-bar__divider { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   3D WHEEL SECTION
   ============================================================ */
.wheel-section { padding: 7rem 0 5rem; overflow: hidden; }

.wheel-scene {
  position: relative; height: 460px;
  perspective: 1600px; perspective-origin: center 45%;
  margin-top: 2rem;
}
.wheel-viewport {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  display: flex; align-items: center; justify-content: center;
}
.wheel-3d {
  position: relative; width: 420px; height: 380px;
  transform-style: preserve-3d;
}

/* WHEEL CARD — fixed height grid, no scrollbar */
.wheel-card {
  position: absolute; top: 0; left: 0;
  width: 420px; height: 380px;
  border-radius: var(--r); overflow: hidden;
  backface-visibility: hidden;
  cursor: grab;
  transition: transform 0.65s cubic-bezier(0.4,0,0.2,1), opacity 0.65s cubic-bezier(0.4,0,0.2,1);
}
.wheel-card:active { cursor: grabbing; }

.wheel-card__inner {
  display: grid;
  grid-template-rows: 195px 185px;   /* fixed rows = never scrolls */
  height: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.wheel-card.card-active .wheel-card__inner {
  border-color: rgba(200,169,110,0.4);
  box-shadow: 0 28px 70px rgba(0,0,0,0.65), 0 0 0 1px rgba(200,169,110,0.12);
}

/* Image row */
.wheel-card__img {
  background-size: cover; background-position: center;
  position: relative;
}
.wheel-card__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, var(--card-bg) 100%);
}
.wheel-card__tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: rgba(10,9,7,0.75); border: 1px solid rgba(200,169,110,0.7);
  color: var(--gold); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
  backdrop-filter: blur(6px);
}

/* Body row */
.wheel-card__body {
  padding: 1.1rem 1.4rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.45rem;
  overflow: hidden;   /* no scrollbar */
}
.wheel-card__body h3 {
  font-family: var(--font-serif); font-size: 1.2rem;
  color: var(--ivory); line-height: 1.2;
}
.card-sub { font-size: 0.8rem; color: var(--greige); font-family: var(--font-body); font-weight: 400; }
.wheel-card__body > p {
  font-size: 0.8rem; color: var(--greige); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; line-clamp: 2;
}
.wheel-card__chips {
  display: flex; flex-wrap: wrap; gap: 5px; margin-top: auto;
}
.wheel-card__chips span {
  font-size: 0.68rem; color: var(--greige);
  border: 1px solid rgba(200,169,110,0.2);
  padding: 2px 8px; border-radius: 50px;
}

/* 3D coverflow positions */
.wheel-card.card-active  { transform: translateX(0)      translateZ(0)    rotateY(0deg)   scale(1);    opacity: 1;    z-index: 10; }
.wheel-card.card-next-1  { transform: translateX(390px)  translateZ(-110px) rotateY(-28deg) scale(0.85); opacity: 0.5; }
.wheel-card.card-next-2  { transform: translateX(680px)  translateZ(-250px) rotateY(-42deg) scale(0.68); opacity: 0.18; }
.wheel-card.card-prev-1  { transform: translateX(-390px) translateZ(-110px) rotateY(28deg)  scale(0.85); opacity: 0.5; }
.wheel-card.card-prev-2  { transform: translateX(-680px) translateZ(-250px) rotateY(42deg)  scale(0.68); opacity: 0.18; }

/* Wheel nav */
.wheel-nav {
  position: absolute; bottom: -3rem; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 1.25rem; z-index: 20;
}
.wheel-nav__btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--ivory); display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.wheel-nav__btn:hover { border-color: var(--gold); color: var(--gold); }
.wheel-nav__dots { display: flex; gap: 7px; }
.wheel-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.18); cursor: pointer; transition: var(--ease);
}
.wheel-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }
.wheel-hint {
  text-align: center; margin-top: 5rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.2); letter-spacing: 0.06em;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 7rem 0;
  background: linear-gradient(180deg, transparent, rgba(200,169,110,0.04) 50%, transparent);
}
.process__steps {
  display: flex; align-items: flex-start; gap: 0;
  /* horizontal scroll fallback on very small screens */
}
.process__step {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.75rem; padding: 0 0.75rem;
  opacity: 0; transform: translateY(28px);
}
.process__num {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--dark3); font-family: var(--font-mono); font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.process__step h3 { font-size: 0.95rem; font-weight: 700; font-family: var(--font-body); }
.process__step p { font-size: 0.8rem; color: var(--greige); line-height: 1.5; }

/* Horizontal connector — desktop only */
.process__connector {
  width: 48px; height: 1.5px; flex-shrink: 0;
  background: linear-gradient(90deg, var(--gold3), transparent);
  margin-top: 26px; opacity: 0.4;
}

/* ============================================================
   BEFORE / AFTER COMPARE
   ============================================================ */
.compare { padding: 7rem 0; }
.compare__wrap {
  display: flex; justify-content: center;   /* centers the widget */
  margin: 0 auto;
}
.compare__widget {
  position: relative;
  width: 100%; max-width: 780px;
  height: 440px;
  border-radius: var(--r); overflow: hidden;
  cursor: ew-resize; user-select: none;
  box-shadow: 0 28px 70px rgba(0,0,0,0.55);
}
.compare__before, .compare__after { position: absolute; inset: 0; }
.compare__before img, .compare__after img { width: 100%; height: 100%; object-fit: cover; }
.compare__after { clip-path: inset(0 50% 0 0); }
.compare__label {
  position: absolute; bottom: 1rem; z-index: 5;
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(0,0,0,0.6); color: var(--ivory); padding: 5px 12px;
  border-radius: 50px; backdrop-filter: blur(8px);
}
.compare__label--left  { left: 1rem; }
.compare__label--right { right: 1rem; }

/* Handle — big, obvious, gold */
.compare__handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: var(--gold);
  transform: translateX(-50%); z-index: 10;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.compare__handle-circle {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark3);
  box-shadow: 0 0 0 4px rgba(200,169,110,0.3), 0 4px 20px rgba(0,0,0,0.5);
}
.compare__slider {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; z-index: 20;
}
.compare__caption {
  text-align: center; margin-top: 1rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.2); font-style: italic;
}

/* ============================================================
   WHY LN FLOORING
   ============================================================ */
.why {
  padding: 7rem 0;
  background: linear-gradient(180deg, transparent, rgba(200,169,110,0.04));
}
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.why__left { position: sticky; top: calc(var(--nav-h) + 2rem); }
.why__left .section-title { margin-bottom: 1.25rem; }
.why__body { color: var(--greige); font-size: 0.95rem; line-height: 1.8; margin-bottom: 2rem; }

.why__team { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.75rem; }
.why__person {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  background: rgba(255,255,255,0.02);
  transition: border-color var(--ease), background var(--ease);
  cursor: pointer;
}
.why__person:hover { border-color: rgba(200,169,110,0.35); background: rgba(200,169,110,0.04); }
.why__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: var(--dark3);
  font-family: var(--font-serif); font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why__person-info { flex: 1; }
.why__person-info strong { display: block; font-size: 0.9rem; margin-bottom: 1px; }
.why__person-info span { font-size: 0.78rem; color: var(--gold); }

.why__detail {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.82rem; color: var(--greige); margin-bottom: 0.6rem;
}

/* Feature cards */
.why__right { display: flex; flex-direction: column; gap: 1.25rem; }
.why__card {
  padding: 1.6rem;
  border: 1px solid var(--border); border-radius: var(--r);
  background: var(--card-bg);
  transition: border-color var(--ease), transform var(--ease);
  opacity: 0; transform: translateX(28px);
}
.why__card:hover { border-color: rgba(200,169,110,0.35); transform: translateX(0) translateY(-3px) !important; }
.why__card--feature {
  background: linear-gradient(135deg, rgba(200,169,110,0.1), rgba(200,169,110,0.03));
  border-color: rgba(200,169,110,0.28);
}
.why__feat-icon { font-size: 1.75rem; margin-bottom: 0.6rem; }
.why__card h4 { margin-bottom: 0.4rem; }
.why__card p { font-size: 0.84rem; color: var(--greige); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 7rem 0; background: var(--dark2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.testi__track {
  display: flex; gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 2rem;
}
.testi__card {
  flex: 0 0 calc(100% / 3 - 0.85rem);
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.75rem;
  transition: border-color var(--ease), transform var(--ease);
}
.testi__card:hover { border-color: rgba(200,169,110,0.35); transform: translateY(-4px); }
.testi__stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.9rem; }
.testi__card > p {
  color: var(--greige); font-size: 0.88rem; line-height: 1.7;
  margin-bottom: 1.25rem; font-style: italic;
}
.testi__author { display: flex; align-items: center; gap: 0.65rem; }
.testi__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  color: var(--dark3); font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi__author strong { display: block; font-size: 0.875rem; }
.testi__author span { font-size: 0.75rem; color: var(--greige); }
.testi__controls {
  display: flex; justify-content: center; align-items: center;
  gap: 0.75rem; margin-top: 2rem;
}
.testi__btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 50px;
  border: 1.5px solid rgba(200,169,110,0.25);
  background: rgba(200,169,110,0.06);
  color: var(--greige); font-size: 0.82rem; font-weight: 600;
  transition: var(--ease); letter-spacing: 0.02em;
}
.testi__btn:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(200,169,110,0.12);
}
.testi__dots {
  display: flex; gap: 6px; align-items: center;
}
.testi__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.15); transition: var(--ease);
}
.testi__dot.active { background: var(--gold); width: 18px; border-radius: 3px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 7rem 0; }
.faq__list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.6rem; }
.faq__item {
  border: 1px solid var(--border); border-radius: var(--r-sm);
  background: var(--card-bg); overflow: hidden;
  transition: border-color var(--ease);
}
.faq__item:has(.faq__q[aria-expanded="true"]) { border-color: rgba(200,169,110,0.4); }
.faq__q {
  width: 100%; text-align: left; padding: 1.15rem 1.4rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: 0.9rem; font-weight: 600; color: var(--ivory);
  transition: color var(--ease);
}
.faq__q:hover { color: var(--gold); }
.faq__icon { font-size: 1.3rem; font-weight: 300; color: var(--gold); flex-shrink: 0; transition: transform 0.3s ease; }
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1); }
.faq__a.open { max-height: 180px; }
.faq__a p { padding: 0 1.4rem 1.15rem; color: var(--greige); font-size: 0.875rem; line-height: 1.7; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section { padding: 5rem 0; }
.cta-section__inner {
  position: relative; text-align: center;
  padding: 5rem 2rem; border-radius: 20px; overflow: hidden;
  background: var(--card-bg); border: 1px solid rgba(200,169,110,0.22);
}
.cta-section__bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at center, rgba(200,169,110,0.13) 0%, transparent 65%);
}
.cta-section__inner > * { position: relative; z-index: 1; }
.cta-section__inner h2 { margin-bottom: 0.75rem; }
.cta-section__sub { color: var(--greige); margin-bottom: 2.25rem; font-size: 1rem; }
.cta-section__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 5rem 0 2rem; background: var(--dark3); border-top: 1px solid var(--border); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 4rem; }
.footer__brand p { color: var(--greige); font-size: 0.84rem; line-height: 1.7; margin-bottom: 0.6rem; }
.footer__tagline { color: var(--gold) !important; }
.footer__col h4 {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--greige); margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col ul li, .footer__col ul a { font-size: 0.84rem; color: rgba(255,255,255,0.35); transition: color var(--ease); }
.footer__col ul a:hover { color: var(--gold); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--border);
  font-size: 0.72rem; color: rgba(255,255,255,0.2); flex-wrap: wrap; gap: 0.5rem;
}
.footer__bottom a { color: var(--gold); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  display: flex; align-items: center; gap: 9px;
  background: var(--green); color: white; padding: 12px 20px;
  border-radius: 50px; font-weight: 600; font-size: 0.88rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--ease); animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .why__left { position: relative; top: auto; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Nav */
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner { padding: 0 20px; }

  /* Hero */
  .hero__chip { display: none; }
  .hero__content { margin-left: 0; padding: calc(var(--nav-h) + 3rem) 20px 5rem; }
  .hero__ctas { flex-direction: column; }

  /* Trust bar */
  .trust-bar__divider:nth-child(4),
  .trust-bar__divider:nth-child(6) { display: none; }

  /* Wheel */
  .wheel-scene { height: 420px; perspective: 900px; }
  .wheel-3d { width: 300px; height: 380px; }
  .wheel-card { width: 300px; height: 380px; }
  .wheel-card__inner { grid-template-rows: 165px 215px; }
  .wheel-card.card-next-1 { transform: translateX(270px) translateZ(-80px) rotateY(-22deg) scale(0.84); opacity: 0.4; }
  .wheel-card.card-prev-1 { transform: translateX(-270px) translateZ(-80px) rotateY(22deg) scale(0.84); opacity: 0.4; }
  .wheel-card.card-next-2,
  .wheel-card.card-prev-2 { opacity: 0; }

  /* Process — vertical stack, NO side line */
  .process__steps { flex-direction: column; align-items: center; }
  .process__connector { display: none; } /* hide horizontal connectors on mobile */
  .process__step { flex: none; width: 100%; max-width: 320px; flex-direction: row; text-align: left; align-items: flex-start; gap: 1rem; }
  .process__step h3 { font-size: 0.9rem; }
  .process__num { flex-shrink: 0; }

  /* Compare */
  .compare__widget { height: 280px; max-width: 100%; }
  .compare__handle-circle { width: 44px; height: 44px; }

  /* Why */
  .why__grid { grid-template-columns: 1fr; gap: 3rem; }
  .why__team { flex-direction: row; gap: 0.75rem; }
  .why__person { flex: 1; }

  /* Testi */
  .testi__card { flex: 0 0 88%; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* CTA */
  .cta-section__btns { flex-direction: column; align-items: center; }
  .cta-section__btns .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* WhatsApp float */
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.8rem; }
  .trust-bar__inner { gap: 0.5rem; }
  .trust-bar__num { font-size: 1.9rem; }
  .why__team { flex-direction: column; }
}
