/* ===== ROOT ===== */
:root {
  --bg-dark: #06060f;
  --bg-light: #f4f0eb;
  --bg-section: #0c0c1e;
  --text-dark: #f0ece6;
  --text-muted: rgba(240,236,230,0.55);
  --text-on-light: #12100e;
  --accent: #c8956c;
  --accent-light: #e8c9a8;
  --violet: #7060e8;
  --violet-light: #a090ff;
  --border: rgba(200,149,108,0.18);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-dark);
}
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.loader-brand {
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  animation: brandPulse 1.8s ease-in-out infinite;
}
@keyframes brandPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.97); }
  50% { opacity: 1; transform: scale(1); }
}
.loader-name {
  font-family: var(--font-display);
  font-size: 1.38rem; font-weight: 500; font-style: normal;
  color: var(--accent); letter-spacing: 0.05em;
  margin: 0 auto 1.5rem;
}
.loader-name em { font-style: normal; font-weight: 500; color: #c8956c; }
#loader-bar {
  width: 200px; height: 1px; background: rgba(200,149,108,0.2);
  margin: 0 auto 0.8rem; border-radius: 2px; overflow: hidden;
}
#loader-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--violet), var(--accent));
  transition: width 0.1s linear;
}
#loader-percent {
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.25em;
  color: var(--text-muted); text-transform: uppercase;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  transition: background 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(6,6,15,0.92);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem 5vw;
  transition: padding 0.4s;
}
.site-header.scrolled nav { padding: 1.1rem 5vw; }
.logo {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--accent); text-decoration: none;
  display: flex; align-items: center; gap: 0rem;
}
.logo em { font-style: normal; font-weight: 500; color: #c8956c; }

.logo-mark {
  height: 2.04em;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6)) brightness(1.3);
}

.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: #e8d5b0;
  text-decoration: none; transition: color 0.2s;
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--accent); transition: width 0.3s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--bg-dark);
  background: var(--accent); padding: 0.65rem 1.6rem;
  border-radius: 50px; text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.nav-cta:hover { background: var(--accent-light); transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--accent); border-radius: 2px; transition: all 0.3s;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 490;
  background: rgba(6,6,15,0.98); backdrop-filter: blur(24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem;
  opacity: 0; visibility: hidden; transition: all 0.35s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 300; font-style: italic;
  color: var(--text-dark); text-decoration: none; transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav .mob-cta { color: var(--accent); }
.mob-close {
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; color: var(--text-muted); line-height: 1;
  margin-top: 0.5rem;
}

/* ===== HERO STANDALONE ===== */
.hero-standalone {
  position: relative; z-index: 10;
  height: 100vh; min-height: 600px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  background: var(--bg-dark);
  overflow: hidden;
}
/* Background gradient mesh */
.hero-standalone::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(112,96,232,0.12), transparent),
    radial-gradient(ellipse 50% 80% at 75% 40%, rgba(200,149,108,0.08), transparent);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; padding: 0 2rem; }
.section-label {
  display: block;
  font-size: 0.62rem; font-weight: 400; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 2rem;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9.5rem);
  font-weight: 300; line-height: 1.0; letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.hero-heading .word { display: inline-block; margin-right: 0.25em; }
.hero-heading .italic { font-style: italic; }
.hero-heading .gold { color: var(--accent); }
.hero-tagline {
  font-size: 0.85rem; font-weight: 300; letter-spacing: 0.12em;
  color: var(--text-muted); margin-bottom: 2.5rem;
}
.hero-scroll-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
  text-decoration: none; transition: gap 0.3s;
}
.hero-scroll-cta:hover { gap: 1rem; }
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  opacity: 0.6;
}
.scroll-arrow {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(200,149,108,0.4); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px;
  margin: 0 auto;
}
.scroll-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
  animation: dotDrop 2s ease-in-out infinite;
}
@keyframes dotDrop {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ===== SCROLL CONTAINER ===== */
#scroll-container {
  position: relative; z-index: 4;
}

/* ===== SCROLL SECTIONS — base ===== */
.scroll-section {
  position: relative;
  pointer-events: auto;
  border-bottom: 1px solid var(--border);
}

/* ===== FEATURE STRIPS (002–005) ===== */
.feat {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(200,149,108,0.08);
  background: var(--bg-dark);
}
.feat:nth-child(even) { background: var(--bg-section); }

/* Ghost number — enormous, barely visible, creates depth */
.feat-ghost {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(14rem, 25vw, 30rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--accent);
  opacity: 0.07;
  right: 4vw;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  z-index: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.feat--flip .feat-ghost {
  right: auto;
  left: 4vw;
}
.feat:hover .feat-ghost {
  opacity: 0.12;
  transform: translateY(-52%);
}

/* Inner layout */
.feat-inner {
  position: relative;
  z-index: 1;
  padding: 5.5rem 8vw;
}

/* Header row: 003 · ——— · Confort */
.feat-header {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 3rem;
}
.feat-num {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}
.feat-rule {
  height: 1px;
  width: 56px;
  flex-shrink: 0;
  background: linear-gradient(90deg, rgba(200,149,108,0.5), transparent);
}
.feat-tag {
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(240,236,230,0.25);
}

/* Body: text left + image right (or reversed for --flip) */
.feat-body {
  display: flex;
  align-items: center;
  gap: 5vw;
}
.feat--flip .feat-body {
  flex-direction: row-reverse;
}
.feat-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.feat--flip .feat-text {
  align-items: flex-end;
  text-align: right;
}
.feat-image {
  flex: 0 0 42%;
  max-width: 500px;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(200,149,108,0.1);
}
.feat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fv-photo {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.25;
  display: block;
}

/* Massive editorial heading */
.feat-title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.03em;
}
.feat-t1 {
  display: block;
  font-size: clamp(4.5rem, 8.5vw, 10.5rem);
  color: var(--text-dark);
  font-style: normal;
}
.feat-t2 {
  display: block;
  font-size: clamp(3.2rem, 6vw, 7.5rem);
  font-style: italic;
  color: var(--accent);
  margin-top: -0.08em;
}

/* Body text */
.feat-desc-wrap {
  border-left: 1px solid rgba(200,149,108,0.18);
  padding-left: 2rem;
  max-width: 44ch;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.feat-desc-wrap .feat-desc {
  border-left: none;
  padding-left: 0;
  max-width: none;
}
.feat-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.feat-benefits li {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.feat-benefits li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(200,149,108,.15);
  border: 1px solid rgba(200,149,108,.5);
  box-shadow: 0 0 8px rgba(200,149,108,.3);
  flex-shrink: 0;
}
.feat-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 44ch;
  padding-bottom: 0.8rem;
  border-left: 1px solid rgba(200,149,108,0.18);
  padding-left: 2rem;
}
.feat--flip .feat-desc {
  border-left: none;
  border-right: 1px solid rgba(200,149,108,0.18);
  padding-left: 0;
  padding-right: 2rem;
  text-align: right;
}
.feat-desc-wrap--flip {
  border-left: none;
  border-right: 1px solid rgba(200,149,108,0.18);
  padding-left: 0;
  padding-right: 2rem;
  text-align: right;
  align-items: flex-end;
}
.feat-desc-wrap--flip .feat-benefits li {
  flex-direction: row-reverse;
}
.feat-desc-wrap--flip .feat-benefits li::before {
  margin-left: 0;
}

/* Section inner — kept for CTA/006 */
.section-inner {
  width: 100%;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  border-radius: 0;
  border: none;
  position: relative;
}
.section-inner::before {
  content: '';
  display: block;
  width: 32px; height: 1.5px;
  background: linear-gradient(90deg, var(--accent), var(--violet-light));
  margin-bottom: 1.6rem;
  border-radius: 2px;
}

/* Section typography */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  font-weight: 300; line-height: 1.0;
  color: var(--text-dark); letter-spacing: -0.02em;
  margin: 0 0 1.2rem;
}
.section-heading em { font-style: italic; color: var(--accent); }
.section-body {
  font-size: 0.9rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.9;
  max-width: 42ch;
  margin: 0 auto;
}

/* ===== STATS SECTION ===== */
.section-stats {
  display: flex;
  justify-content: center;
  padding: 5rem 6vw;
  background: var(--bg-dark);
  border-bottom: none;
}

/* ===== FEAT VISUAL COMPONENTS ===== */
.fv {
  aspect-ratio: 3/4;
  width: 100%;
  background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(200,149,108,.04) 100%);
  border: 1px solid rgba(200,149,108,.14);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 33%, rgba(200,149,108,.1) 0%, transparent 60%);
  pointer-events: none;
}
.fv-core {
  position: absolute; top: 30%; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(200,149,108,.15);
  border: 1px solid rgba(200,149,108,.5);
  box-shadow: 0 0 14px rgba(200,149,108,.3);
  animation: fvCorePulse 3s ease-in-out infinite;
}
.fv-label {
  position: relative; z-index: 2;
  text-align: center;
  margin-top: 55px;
}
.fv-name {
  font-family: var(--font-display);
  font-size: 1.05rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: .35rem; font-weight: 400;
}
.fv-sub {
  font-size: .6rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-muted);
}
@keyframes fvCorePulse {
  0%,100% { box-shadow: 0 0 14px rgba(200,149,108,.25); opacity: .7; }
  50%     { box-shadow: 0 0 28px rgba(200,149,108,.55); opacity: 1; }
}

/* 002 — MISIUNE: radiating petals */
.fv--misiune .fv-core { top: 62%; }
.fv--misiune .fv-label {
  position: absolute;
  top: calc(73% + 22px);
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  white-space: nowrap;
}
.fv--misiune .fv-rays {
  position: absolute; top: calc(62% - 52px); left: 50%; transform: translateX(-50%);
  width: 104px; height: 104px;
}
.fv--misiune .fv-rays span {
  position: absolute; top: 50%; left: 50%;
  width: 1px; height: 46px;
  margin-left: -.5px;
  background: linear-gradient(to bottom, rgba(200,149,108,.55), transparent);
  transform-origin: top center;
  animation: rayPulse 3s ease-in-out infinite;
}
.fv--misiune .fv-rays span:nth-child(1) { transform: rotate(0deg);    animation-delay: 0s; }
.fv--misiune .fv-rays span:nth-child(2) { transform: rotate(45deg);   animation-delay: .37s; }
.fv--misiune .fv-rays span:nth-child(3) { transform: rotate(90deg);   animation-delay: .75s; }
.fv--misiune .fv-rays span:nth-child(4) { transform: rotate(135deg);  animation-delay: 1.12s; }
.fv--misiune .fv-rays span:nth-child(5) { transform: rotate(180deg);  animation-delay: 1.5s; }
.fv--misiune .fv-rays span:nth-child(6) { transform: rotate(225deg);  animation-delay: 1.87s; }
.fv--misiune .fv-rays span:nth-child(7) { transform: rotate(270deg);  animation-delay: 2.25s; }
.fv--misiune .fv-rays span:nth-child(8) { transform: rotate(315deg);  animation-delay: 2.62s; }
.fv--misiune .fv-ring--outer {
  position: absolute; top: calc(62% - 40px); left: 50%; transform: translateX(-50%);
  width: 80px; height: 80px; border-radius: 50%;
  border: 1px solid rgba(200,149,108,.18);
  animation: fvCorePulse 4s ease-in-out infinite reverse;
}
@keyframes rayPulse {
  0%,100% { opacity: .35; } 50% { opacity: .85; }
}

/* 003 — BENEFICII: two leaves */
.fv--beneficii .fv-leaf {
  position: absolute; top: 17%; left: 50%;
  width: 55px; height: 85px;
  border: 1px solid rgba(200,149,108,.28);
  border-radius: 50% 0 50% 0;
  animation: leafBreath 4s ease-in-out infinite;
}
.fv--beneficii .fv-leaf--l {
  transform: translateX(-50%) rotate(-25deg);
  transform-origin: bottom center;
  animation-delay: 0s;
}
.fv--beneficii .fv-leaf--r {
  transform: translateX(-50%) rotate(25deg);
  transform-origin: bottom center;
  animation-delay: .8s;
}
.fv--beneficii .fv-stem {
  position: absolute; top: calc(17% + 78px); left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 30px;
  background: linear-gradient(to bottom, rgba(200,149,108,.4), transparent);
}
.fv--beneficii .fv-core { top: 17%; }
@keyframes leafBreath {
  0%,100% { opacity: .55; } 50% { opacity: 1; }
}

/* 004 — SIGURANȚĂ: shield + beam */
.fv--siguranta .fv-shield {
  position: absolute; top: 17%; left: 50%; transform: translateX(-50%);
  width: 62px; height: 74px;
  border: 1px solid rgba(200,149,108,.32);
  border-radius: 50% 50% 40% 40% / 28% 28% 55% 55%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(200,149,108,.1);
  animation: shieldPulse 3s ease-in-out infinite;
}
.fv--siguranta .fv-shield-inner {
  width: 36px; height: 44px;
  border: 1px solid rgba(200,149,108,.18);
  border-radius: 50% 50% 38% 38% / 26% 26% 52% 52%;
}
.fv--siguranta .fv-shield-mark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -55%) rotate(45deg);
  width: 10px; height: 18px;
  border-right: 1px solid rgba(200,149,108,.6);
  border-bottom: 1px solid rgba(200,149,108,.6);
}
.fv--siguranta .fv-beam {
  position: absolute; top: calc(17% + 74px); left: 50%; transform: translateX(-50%);
  width: 1px; height: 30%;
  background: linear-gradient(to bottom, rgba(200,149,108,.55), transparent);
  animation: beamPulse 3s ease-in-out infinite;
}
.fv--siguranta .fv-core { top: calc(17% + 74px); }
@keyframes shieldPulse {
  0%,100% { box-shadow: 0 0 24px rgba(200,149,108,.1); }
  50%     { box-shadow: 0 0 44px rgba(200,149,108,.28); }
}
@keyframes beamPulse {
  0%,100% { opacity: .4; } 50% { opacity: 1; }
}

/* 005 — SEZON: compass orbit */
.fv--sezon .fv-orbit {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(200,149,108,.2);
  transform: translate(-50%, -66%);
}
.fv--sezon .fv-orbit--outer { width: 110px; height: 110px; animation: orbitSpin 20s linear infinite; }
.fv--sezon .fv-orbit--inner { width: 64px;  height: 64px;  animation: orbitSpin 12s linear infinite reverse; }
.fv--sezon .fv-axis {
  position: absolute; background: rgba(200,149,108,.12);
}
.fv--sezon .fv-axis--h {
  top: calc(50% - 66% * 1); left: 50%; transform: translate(-50%, -100%);
  width: 110px; height: 1px;
  top: 34%; transform: translateX(-50%);
}
.fv--sezon .fv-axis--v {
  left: 50%; transform: translateX(-50%);
  width: 1px; height: 110px;
  top: calc(34% - 55px);
}
.fv--sezon .fv-dot {
  position: absolute;
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(200,149,108,.5);
  border: 1px solid rgba(200,149,108,.7);
  transform: translate(-50%, -50%);
  animation: dotGlow 3s ease-in-out infinite;
}
.fv--sezon .fv-dot--n { top: calc(34% - 55px); left: 50%; animation-delay: 0s; }
.fv--sezon .fv-dot--e { top: 34%;              left: calc(50% + 55px); animation-delay: .75s; }
.fv--sezon .fv-dot--s { top: calc(34% + 55px); left: 50%; animation-delay: 1.5s; }
.fv--sezon .fv-dot--w { top: 34%;              left: calc(50% - 55px); animation-delay: 2.25s; }
.fv--sezon .fv-core { top: 34%; }
@keyframes orbitSpin {
  from { transform: translate(-50%, -66%) rotate(0deg); }
  to   { transform: translate(-50%, -66%) rotate(360deg); }
}
@keyframes dotGlow {
  0%,100% { opacity: .4; box-shadow: none; }
  50%     { opacity: 1; box-shadow: 0 0 10px rgba(200,149,108,.5); }
}

/* 006 — NETEDA: laser beam + smooth skin */
.fv--neteda .fv-laser-src {
  position: absolute; top: 8%; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(112,96,232,.9);
  box-shadow: 0 0 14px rgba(112,96,232,.7), 0 0 28px rgba(112,96,232,.3);
  animation: laserPulse 2s ease-in-out infinite;
}
.fv--neteda .fv-laser-beam {
  position: absolute; top: calc(8% + 10px); left: 50%;
  width: 2px; height: calc(30% - 10px);
  transform: translateX(-50%);
  background: linear-gradient(to bottom, rgba(112,96,232,.8), rgba(200,149,108,.4));
  animation: beamFlicker 2s ease-in-out infinite;
}
.fv--neteda .fv-skin-line {
  position: absolute; top: 38%; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,149,108,.5) 25%, rgba(200,149,108,.5) 75%, transparent);
}
.fv--neteda .fv-ring {
  position: absolute; top: 38%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(200,149,108,.4);
  width: 16px; height: 16px;
  animation: ringExpand 2.4s ease-out infinite;
}
.fv--neteda .fv-ring--2 { animation-delay: .8s; }
.fv--neteda .fv-ring--3 { animation-delay: 1.6s; }
.fv--neteda .fv-core { top: 38%; }
@keyframes laserPulse {
  0%,100% { box-shadow: 0 0 14px rgba(112,96,232,.7), 0 0 28px rgba(112,96,232,.3); }
  50%      { box-shadow: 0 0 22px rgba(112,96,232,1),  0 0 44px rgba(112,96,232,.5); }
}
@keyframes beamFlicker {
  0%,100% { opacity: .6; }
  50%      { opacity: 1; }
}
@keyframes ringExpand {
  0%   { width: 16px; height: 16px; opacity: .9; }
  100% { width: 88px; height: 88px; opacity: 0; }
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(200,149,108,0.08);
  background: var(--bg-dark);
}
.reviews-ghost {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(14rem, 25vw, 30rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--accent);
  opacity: 0.07;
  left: 4vw;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  z-index: 0;
}
.reviews-inner {
  position: relative;
  z-index: 1;
  padding: 5.5rem 8vw;
}
.reviews-body { margin-top: 3rem; }
.reviews-title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin-bottom: 3.5rem;
}
.reviews-t1 {
  display: block;
  font-size: clamp(3.5rem, 6vw, 7.5rem);
  color: var(--text-dark);
  font-style: normal;
}
.reviews-t2 {
  display: block;
  font-size: clamp(2.8rem, 5vw, 6rem);
  font-style: italic;
  color: var(--accent);
  margin-top: -0.08em;
}
.reviews-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.google-rating-badge {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.grb-score {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1;
}
.grb-stars {
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  line-height: 1;
}
.grb-label {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.grb-label strong { color: var(--accent-light); font-weight: 500; }
.grb-google {
  width: 28px; height: 28px;
  flex-shrink: 0;
  opacity: 0.85;
}
.reviews-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}
.reviews-track {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0.2rem 1rem;
  flex: 1;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(200,149,108,0.22);
  background: rgba(200,149,108,0.05);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  z-index: 2;
}
.reviews-arrow:hover {
  border-color: rgba(200,149,108,0.5);
  background: rgba(200,149,108,0.12);
}
.reviews-arrow--prev { margin-right: 1rem; }
.reviews-arrow--next { margin-left: 1rem; }
.review-card {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  background: rgba(200,149,108,0.04);
  border: 1px solid rgba(200,149,108,0.12);
  border-radius: 2px;
  padding: 1.8rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.review-card:hover {
  border-color: rgba(200,149,108,0.28);
  background: rgba(200,149,108,0.07);
  transform: translateY(-3px);
}
.review-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 500;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0;
}
.reviewer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.reviewer-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}
.reviewer-date {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.review-google-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  opacity: 0.7;
  margin-left: auto;
}
.review-stars {
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.review-text {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card.expanded .review-text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.review-read-more {
  display: none;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 300;
  font-style: italic;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  margin-top: 0.4rem;
  transition: opacity 0.2s;
}
.review-read-more.visible { display: block; }
.review-read-more:hover { opacity: 0.7; }
@media (max-width: 700px) {
  .reviews-inner { padding: 3rem 1.5rem; }
  .review-card { flex: 0 0 280px; }
  .google-rating-badge { gap: 1.2rem; }
  .reviews-arrow { display: none; }
}

/* ===== CTA SECTION ===== */
.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 5vw;
  background: var(--bg-section);
  border-bottom: none;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; width: 100%; max-width: 1100px;
  text-align: center;
}
.stat {
  padding: 2.5rem 1rem;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 400; color: var(--accent);
  line-height: 1; letter-spacing: -0.02em;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  color: var(--accent); font-weight: 300;
}
.stat-label {
  display: block; margin-top: 0.5rem;
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted);
}

.cta-section .section-inner {
  max-width: 700px;
}
.cta-section .section-inner::before { display: none; }
.cta-heading {
  font-size: clamp(2.8rem, 4.5vw, 5rem) !important;
}
.cta-heading em { font-style: italic; color: var(--accent); }
.cta-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-top: 2.5rem;
}
.cta-button {
  display: inline-block;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--bg-dark);
  background: var(--accent); padding: 1.1rem 2.8rem;
  border-radius: 50px; text-decoration: none; border: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 8px 32px rgba(200,149,108,0.3);
}
.cta-button:hover { background: var(--accent-light); transform: translateY(-2px); }
.cta-button-ghost {
  display: inline-block;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-dark);
  background: transparent; padding: 1.1rem 2.8rem;
  border-radius: 50px; text-decoration: none;
  border: 1px solid rgba(240,236,230,0.25);
  transition: border-color 0.25s, color 0.25s;
}
.cta-button-ghost:hover { border-color: var(--accent); color: var(--accent); }
.cta-contact-row {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 2.5rem; flex-wrap: wrap;
  font-size: 0.82rem; font-weight: 300; color: var(--text-muted);
}
.cta-contact-row a { color: var(--accent); text-decoration: none; }
.cta-contact-row a:hover { text-decoration: underline; }

/* ===== BELOW-FOLD PAGES ===== */
#pricing-page, #faq-page, #contact-page {
  position: relative; z-index: 5;
  background: var(--bg-dark);
}
#pricing-page { padding: 8rem 5vw; background: var(--bg-section); }
#faq-page { padding: 8rem 5vw; background: var(--bg-dark); }
#contact-page { padding: 8rem 5vw; background: var(--bg-section); }

.page-inner { max-width: 1200px; margin: 0 auto; }
.page-head { margin-bottom: 4.5rem; }
.page-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300; line-height: 1.1; color: var(--text-dark);
}
.page-h2 em { font-style: italic; color: var(--accent); }
.accent-line {
  width: 44px; height: 1.5px;
  background: linear-gradient(90deg, var(--accent), var(--violet-light));
  margin: 1.4rem 0; border-radius: 2px;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  align-items: start; margin-bottom: 2.5rem;
}
.price-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 22px; padding: 2.6rem 2.2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.price-card:not(.featured):hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(200,149,108,0.1);
  border-color: rgba(200,149,108,0.35);
}
.price-card.featured {
  background: linear-gradient(150deg, #1a1450 0%, #100d3a 100%);
  border: 1px solid rgba(112,96,232,0.4);
  box-shadow: 0 24px 64px rgba(112,96,232,0.22);
  transform: scale(1.03);
  position: relative; overflow: hidden;
}
.price-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--accent), var(--violet-light));
}
.price-badge {
  display: inline-block; font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 50px; margin-bottom: 1.6rem;
}
.price-card:not(.featured) .price-badge { background: rgba(200,149,108,0.12); color: var(--accent); }
.price-card.featured .price-badge { background: rgba(255,255,255,0.08); color: #ccc8ff; }
.price-name {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 500; line-height: 1.2;
  color: var(--accent-light); margin-bottom: 0.5rem;
}
.price-card.featured .price-name { color: var(--text-dark); }
.price-desc {
  font-size: 0.8rem; font-weight: 300; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 1.8rem;
}
.price-card.featured .price-desc { color: rgba(240,236,230,0.55); }
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 400; color: var(--accent); line-height: 1;
}
.price-card.featured .price-amount { color: var(--text-dark); }
.price-amount span { font-size: 1rem; font-weight: 300; }
.price-per {
  font-size: 0.72rem; font-weight: 300; color: var(--text-muted);
  margin: 0.25rem 0 2rem;
}
.price-per s { opacity: 0.45; }
.price-list { list-style: none; margin-bottom: 2.2rem; }
.price-list li {
  font-size: 0.82rem; font-weight: 300; color: var(--text-dark);
  padding: 0.5rem 0; border-bottom: 1px solid rgba(200,149,108,0.1);
  display: flex; align-items: center; gap: 0.65rem;
}
.price-card.featured .price-list li { color: rgba(240,236,230,0.82); border-bottom-color: rgba(255,255,255,0.07); }
.price-list li:last-child { border-bottom: none; }
.price-list li::before {
  content: ''; display: block; width: 4px; height: 4px;
  border-radius: 50%; background: var(--accent); flex-shrink: 0;
}
.price-card.featured .price-list li::before { background: var(--violet-light); }
.p-btn {
  display: block; width: 100%; text-align: center;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.95rem; border-radius: 50px; text-decoration: none; border: none;
  cursor: pointer; transition: all 0.25s;
  background: transparent; color: var(--accent); border: 1px solid var(--border);
}
.p-btn:hover { background: var(--accent); color: var(--bg-dark); border-color: var(--accent); }
.p-btn-feat { background: var(--text-dark); color: #1a1450; }
.p-btn-feat:hover { background: var(--accent-light); border-color: var(--accent-light); color: var(--bg-dark); }
.pricing-note {
  text-align: center; font-size: 0.78rem; font-weight: 300; color: var(--text-muted);
  line-height: 1.8;
}
.pricing-full-btn {
  display: block; width: fit-content; margin: 2rem auto 0;
  font-family: var(--font-body); font-size: 0.56rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  color: var(--bg-dark); background: var(--accent);
  padding: 0.7rem 1.68rem; border-radius: 50px;
  box-shadow: 0 4px 24px rgba(200,149,108,0.35);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.pricing-full-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,149,108,0.5);
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; transition: border-color 0.25s;
}
.faq-item.open { border-color: rgba(112,96,232,0.38); }
.faq-q {
  width: 100%; background: rgba(255,255,255,0.03); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.6rem; text-align: left;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 400;
  color: var(--accent-light); transition: all 0.2s;
}
.faq-item.open .faq-q { color: var(--accent); background: rgba(112,96,232,0.05); }
.faq-ch {
  width: 18px; height: 18px; flex-shrink: 0; margin-left: 1rem;
  position: relative; display: inline-block;
}
.faq-ch::before, .faq-ch::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 7px; height: 1.5px; background: var(--text-muted);
  border-radius: 2px; transition: transform 0.3s, background 0.3s;
}
.faq-ch::before { transform: translate(calc(-50% + 3px), -50%) rotate(45deg); }
.faq-ch::after  { transform: translate(calc(-50% - 3px), -50%) rotate(-45deg); }
.faq-item.open .faq-ch::before { transform: translate(calc(-50% + 3px), -50%) rotate(-45deg); background: var(--violet-light); }
.faq-item.open .faq-ch::after  { transform: translate(calc(-50% - 3px), -50%) rotate(45deg); background: var(--violet-light); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.4s;
  padding: 0 1.6rem;
  font-size: 0.84rem; font-weight: 300; color: var(--text-muted); line-height: 1.85;
}
.faq-a strong { color: var(--text-dark); font-weight: 500; }
.faq-item.open .faq-a { max-height: 500px; padding: 1rem 1.6rem 1.4rem; }

/* ===== CONTACT ===== */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
}
.contact-lead {
  font-size: 0.92rem; font-weight: 300; color: var(--text-muted);
  line-height: 1.85; margin-top: 1.5rem; margin-bottom: 2.8rem;
}
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.c-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.2rem; border-radius: 12px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.02);
  transition: border-color 0.25s, background 0.25s;
}
.c-row:hover { border-color: var(--accent); background: rgba(200,149,108,0.06); }
.c-row > span { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.c-lbl {
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.2rem;
}
.c-row div { font-size: 0.88rem; font-weight: 300; color: var(--text-dark); }
.c-row a { color: var(--accent); text-decoration: none; }
.c-row a:hover { text-decoration: underline; }

/* Form */
.contact-form-wrap {}
.contact-form {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 22px; padding: 3rem 2.6rem;
  box-shadow: 0 16px 64px rgba(0,0,0,0.3);
  position: relative; overflow: hidden;
}
.contact-form::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 500; color: var(--accent-light); margin-bottom: 0.3rem;
}
.form-sub {
  font-size: 0.8rem; font-weight: 300; color: var(--text-muted); margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-size: 0.64rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.4rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; font-family: var(--font-body);
  font-size: 0.86rem; font-weight: 300; color: var(--text-dark);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.85rem 1rem; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(240,236,230,0.22); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,149,108,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8956c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
  color-scheme: dark;
}
.form-group select option { background: #0c0c1e; }
.form-submit {
  width: 100%; margin-top: 0.3rem;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bg-dark); background: var(--accent); border: none;
  padding: 1.1rem; border-radius: 50px; cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 8px 24px rgba(200,149,108,0.28);
}
.form-submit:hover { background: var(--accent-light); transform: translateY(-2px); }

/* ===== HERO TRUST BADGES ===== */
.hero-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 1.2rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 500; color: var(--accent);
  letter-spacing: -0.01em; line-height: 1;
}
.trust-lbl {
  font-size: 0.56rem; font-weight: 400; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted);
}
.trust-sep {
  color: rgba(200,149,108,0.3); font-size: 1rem;
}

/* ===== FREE TRIAL BADGE ===== */
.free-trial-badge {
  display: inline-block;
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(200,149,108,0.1);
  border: 1px solid rgba(200,149,108,0.3);
  color: var(--accent-light);
  padding: 0.45rem 1.2rem; border-radius: 50px;
  margin-bottom: 1.4rem;
}

/* ===== HOW IT WORKS ===== */
#how-it-works {
  position: relative; z-index: 5;
  background: var(--bg-dark);
  padding: 8rem 5vw;
  border-top: 1px solid var(--border);
}
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.step-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 2.2rem 1.8rem;
  transition: border-color 0.3s, background 0.3s;
  position: relative; overflow: hidden;
}
.step-card:hover {
  border-color: rgba(200,149,108,0.35);
  background: rgba(200,149,108,0.04);
}
.step-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.step-card:hover::before { opacity: 1; }
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 300; font-style: italic;
  color: rgba(200,149,108,0.2); line-height: 1;
  margin-bottom: 1.2rem; letter-spacing: -0.02em;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 500;
  color: var(--accent-light); margin-bottom: 0.8rem; line-height: 1.2;
}
.step-body {
  font-size: 0.83rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.85;
}

/* ===== FOOTER ===== */
footer {
  position: relative; z-index: 5;
  background: var(--bg-dark); border-top: 1px solid var(--border);
  padding: 3rem 5vw;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.38rem; font-weight: 500; color: var(--accent); letter-spacing: 0.05em;
}
.footer-logo em { font-style: normal; font-weight: 500; color: #c8956c; }
.footer-copy {
  font-size: 0.72rem; font-weight: 300; color: var(--text-muted);
}
.footer-links { display: flex; gap: 1.8rem; list-style: none; }
.footer-links a {
  font-size: 0.72rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .feat-inner { padding: 4rem 5vw; }
  .feat-body { gap: 4vw; }
  .feat-image { flex: 0 0 38%; }
  .feat-ghost { font-size: clamp(12rem, 22vw, 22rem); }

  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; grid-column: 1 / -1; max-width: 440px; margin: 0 auto; width: 100%; }
  .contact-wrap { grid-template-columns: 1fr; gap: 4rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 700px) {
  .hero-heading { font-size: clamp(3rem, 14vw, 5rem); }
  .section-heading { font-size: clamp(2.6rem, 10vw, 4rem) !important; }

  .feat-inner { padding: 3rem 1.5rem; }
  .feat-body { flex-direction: column; gap: 2.5rem; }
  .feat--flip .feat-body { flex-direction: column; }
  .feat--flip .feat-text { align-items: flex-start; text-align: left; }
  .feat-image { flex: none; width: 100%; max-width: none; order: -1; }
  .feat-text { order: 0; }
  .feat-desc { border-left: none; border-top: 1px solid rgba(200,149,108,0.18); padding-left: 0; padding-top: 1.5rem; }
  .feat--flip .feat-desc { border-right: none; border-top: 1px solid rgba(200,149,108,0.18); padding-right: 0; text-align: left; }
  .feat-desc-wrap--flip { border-right: none; border-top: 1px solid rgba(200,149,108,0.18); padding-right: 0; padding-top: 1.5rem; text-align: left; align-items: flex-start; }
  .feat-desc-wrap--flip .feat-benefits li { flex-direction: row; }
  .feat-ghost { opacity: 0.022; }
  .section-heading { font-size: clamp(2.4rem, 8vw, 3.5rem) !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat:last-child, .stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { grid-column: auto; max-width: 100%; }

  .form-row { grid-template-columns: 1fr; }

  footer .footer-inner { flex-direction: column; text-align: center; gap: 1rem; }
  .footer-links { justify-content: center; }

  #pricing-page, #faq-page, #contact-page, #how-it-works { padding: 5rem 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
  .hero-trust { gap: 0.8rem; }
  .trust-sep { display: none; }
}
