@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Fraunces:ital,wght@0,700;0,800;1,700;1,800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --bg:        #ffffff;
  --bg-2:      #f7f6f3;
  --bg-3:      #f0eeea;
  --ink:       #0c0c0d;
  --ink-2:     #2e2c2a;
  --muted:     #8c8880;
  --line:      #e8e5e0;
  --violet:    #5b4fff;
  --violet-dk: #4438e0;
  --violet-lt: #eeeeff;
  --violet-md: rgba(91,79,255,0.12);
  --green:     #00c48c;
  --amber:     #f5a623;
  --serif:     'Fraunces', Georgia, serif;
  --sans:      'Plus Jakarta Sans', sans-serif;
  --r-s:       8px;
  --r-m:       16px;
  --r-l:       24px;
  --r-xl:      36px;
  --max:       1100px;
  --max-text:  780px;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* REVEAL ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.in { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ========================================
   SPONSORED BANNER
   ======================================== */
.sponsored-banner-fr {
  background: var(--ink);
  color: rgba(255,255,255,0.4);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
  position: sticky;
  top: 0;
  z-index: 9999;
}
.sponsored-banner-fr span {
  color: var(--violet);
  margin-right: 4px;
}
.sponsored-banner-fr::after { display: none; }

/* ========================================
   HEADER
   ======================================== */
header {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 14px 5%;
  position: sticky;
  top: 33px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.logo {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
}
.logo span { color: var(--violet); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-badge {
  background: var(--violet-lt);
  color: var(--violet);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  animation: none;
}
.nav-cta {
  background: var(--violet);
  color: #fff;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--violet-dk); transform: translateY(-1px); color: #fff; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.7} }

/* ========================================
   HERO
   ======================================== */
.hero-outer {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 5% 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 82vh;
}
.hero-content { padding-bottom: 72px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--violet-md);
  color: var(--violet);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--violet);
  display: block;
}
.hero-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 460px;
  font-weight: 300;
}

.hero-price-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 20px 22px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.price-row { display: flex; align-items: baseline; gap: 12px; }
.price-new {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.04em;
}
.price-old { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; }
.price-note { font-size: 12px; color: var(--muted); line-height: 1.5; max-width: 180px; text-align: right; }

.btn-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--violet);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  padding: 17px 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(91,79,255,0.3);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  margin-bottom: 16px;
}
.btn-hero::after { content: '→'; font-size: 16px; }
.btn-hero:hover {
  background: var(--violet-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(91,79,255,0.4);
  color: #fff;
}
.hero-guards { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-guard { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); font-weight: 500; }
.hero-guard i { color: var(--green); font-size: 13px; }

/* Hero visual side */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 56px;
}
.watch-mockup {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  border-radius: var(--r-xl);
  background: var(--bg);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.1), 0 0 0 1px rgba(91,79,255,0.08);
}
.watch-mockup::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91,79,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.watch-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 360px;
}
.mini-stat {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 14px 16px;
  text-align: center;
  transition: border-color 0.2s;
}
.mini-stat:hover { border-color: rgba(91,79,255,0.3); }
.mini-stat-n {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--violet);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}
.mini-stat-l { font-size: 11px; color: var(--muted); margin-top: 4px; font-weight: 400; }

/* ========================================
   TRUST BAR
   ======================================== */
.trustbar {
  background: var(--ink);
  padding: 0 5%;
}
.trustbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.t-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.t-item:last-child { border-right: none; }
.t-icon { font-size: 18px; line-height: 1; flex-shrink: 0; }
.t-item strong { display: block; font-size: 13px; color: #fff; font-weight: 600; }
.t-item span { color: rgba(255,255,255,0.38); font-weight: 300; font-size: 12px; display: block; }

/* ========================================
   SECTION BASE
   ======================================== */
.section { padding: 80px 5%; }
.section-inner { max-width: var(--max-text); margin: 0 auto; }
.section-inner-wide { max-width: var(--max); margin: 0 auto; }

.accent-line {
  width: 28px;
  height: 3px;
  background: var(--violet);
  border-radius: 10px;
  margin: 0 auto 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--violet); }
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto 52px;
  line-height: 1.8;
  font-weight: 300;
}

/* ========================================
   STORY
   ======================================== */
.story-section { background: var(--bg); border-top: 1px solid var(--line); }
.story-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.story-visual.story-photo {
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 4/5 !important;
  max-height: none !important;
  overflow: hidden;
  border-radius: var(--r-l);
  border: 1px solid var(--line);
}
.story-visual.story-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.story-text h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.story-text h3 em { font-style: italic; color: var(--violet); }
.story-text p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 300;
}
.quote-box {
  border-left: 3px solid var(--violet);
  padding: 16px 20px;
  margin: 22px 0;
  font-style: italic;
  color: var(--ink-2);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
  background: var(--violet-lt);
  border-radius: 0 var(--r-s) var(--r-s) 0;
}

/* ========================================
   SHOWCASE
   ======================================== */
.showcase-section { background: var(--bg-2); border-top: 1px solid var(--line); }
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.showcase-visual {
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 1 !important;
  max-height: none !important;
  overflow: hidden;
  border-radius: var(--r-l);
  border: 1px solid var(--line);
  position: relative;
}
.showcase-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(220deg, rgba(91,79,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.showcase-visual img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.showcase-text h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.showcase-text p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 300;
}
.showcase-text strong { color: var(--ink); font-weight: 600; }

/* ========================================
   FEATURES
   ======================================== */
.features-section { background: var(--bg); border-top: 1px solid var(--line); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
}
.feat-card {
  background: var(--bg);
  padding: 30px 26px;
  transition: background 0.2s;
}
.feat-card:hover { background: var(--violet-lt); }
.feat-icon { font-size: 1.8rem; display: block; margin-bottom: 14px; line-height: 1; }
.feat-card h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.feat-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin: 0; font-weight: 300; }

/* ========================================
   SPECS
   ======================================== */
.specs-section { background: var(--bg-2); border-top: 1px solid var(--line); }
.specs-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
}
.specs-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-size: 14.5px;
  background: var(--bg);
  transition: background 0.15s;
}
.specs-list li:hover { background: var(--violet-lt); }
.specs-list li:nth-child(even) { border-right: none; }
.specs-list li:nth-last-child(-n+2) { border-bottom: none; }
.spec-check { color: var(--violet); font-size: 14px; flex-shrink: 0; margin-top: 3px; font-weight: 700; }
.specs-list strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.specs-list span { font-size: 12px; color: var(--muted); font-weight: 300; }

/* ========================================
   REVIEWS
   ======================================== */
.reviews-section { background: var(--bg); border-top: 1px solid var(--line); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.reviews-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.review-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.review-card:hover { border-color: rgba(91,79,255,0.3); transform: translateY(-3px); }
.review-stars { color: var(--amber); font-size: 12px; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-size: 13.5px; color: var(--ink-2); line-height: 1.7; font-style: italic; margin-bottom: 16px; font-weight: 300; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--violet-md);
  border: 1px solid rgba(91,79,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--violet); font-weight: 800; font-size: 13px;
  flex-shrink: 0;
}
.review-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.review-label { font-size: 11.5px; color: var(--muted); font-weight: 300; }
.review-verified { color: var(--green); font-size: 11px; margin-top: 2px; display: flex; align-items: center; gap: 4px; }

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section { background: var(--bg-2); border-top: 1px solid var(--line); }
.cta-card {
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(91,79,255,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.cta-card h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: #fff;
  position: relative;
}
.cta-card h2 em { font-style: italic; color: var(--violet); }
.cta-card .sub { color: rgba(255,255,255,0.45); font-size: 14px; margin-bottom: 32px; font-weight: 300; position: relative; }

.cta-price-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
  position: relative;
}
.cta-old { font-size: 1.1rem; color: rgba(255,255,255,0.3); text-decoration: line-through; }
.cta-new {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}
.cta-save {
  background: var(--violet-md);
  border: 1px solid rgba(91,79,255,0.3);
  color: #a89fff;
  border-radius: var(--r-s);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
}
.cta-note { color: rgba(255,255,255,0.35); font-size: 12.5px; margin-bottom: 28px; position: relative; }

.cta-perks {
  list-style: none;
  text-align: left;
  margin: 0 auto 32px;
  max-width: 280px;
  position: relative;
}
.cta-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.cta-perks li:last-child { border-bottom: none; }
.cta-perks li::before { content: "✓"; color: var(--violet); font-weight: 800; font-size: 15px; flex-shrink: 0; }

.btn-cta {
  display: block;
  width: 100%;
  background: var(--violet);
  color: #fff;
  text-decoration: none;
  padding: 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(91,79,255,0.4);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  margin-bottom: 12px;
  position: relative;
}
.btn-cta:hover {
  background: var(--violet-dk);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(91,79,255,0.5);
  color: #fff;
}
.btn-cta-note { font-size: 12px; color: rgba(255,255,255,0.3); position: relative; }
.urgency { color: rgba(91,79,255,0.8); font-size: 13px; font-weight: 600; margin-top: 14px; position: relative; }

/* ========================================
   HEALTH NOTE
   ======================================== */
.health-note {
  background: #fffbf0;
  border: 1px solid #f0d98a;
  border-left: 4px solid var(--amber);
  border-radius: var(--r-m);
  padding: 20px 24px;
  margin: 32px auto 0;
  max-width: 660px;
  font-size: 13px;
  color: #7a6800;
  line-height: 1.65;
}
.health-note strong {
  display: block;
  font-size: 11px;
  color: #9a8000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.health-note p { margin-bottom: 8px; color: #7a6800; }
.health-note p:last-child { margin-bottom: 0; }

/* ========================================
   STICKY
   ======================================== */
.sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  border-top: 1px solid var(--line);
  padding: 12px 5%;
  z-index: 998;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  backdrop-filter: blur(16px);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
}
.sticky.show { display: flex; }
.sticky-info { font-size: 13px; color: var(--muted); font-weight: 500; }
.sticky-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.sticky-price small { font-size: 14px; color: var(--muted); text-decoration: line-through; font-family: var(--sans); font-weight: 400; }
.sticky-btn {
  background: var(--violet);
  color: #fff;
  border-radius: 100px;
  padding: 11px 24px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.sticky-btn:hover { background: var(--violet-dk); color: #fff; }

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 5% 32px;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--violet); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.75; margin-bottom: 20px; font-weight: 300; }
.footer-info-rows { display: flex; flex-direction: column; gap: 8px; }
.footer-info-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-info-row i { color: rgba(255,255,255,0.15); font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.footer-info-row a { color: rgba(255,255,255,0.3); }
.footer-info-row a:hover { color: #fff; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,0.4); transition: color 0.15s; display: flex; align-items: center; gap: 6px; font-weight: 300; }
.footer-col ul a::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.15); flex-shrink: 0; }
.footer-col ul a:hover { color: #fff; }
.footer-badges { display: flex; flex-direction: column; gap: 8px; }
.footer-badge { display: flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,0.06); border-radius: var(--r-s); padding: 9px 13px; font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.35); }
.footer-badge i { color: var(--green); font-size: 12px; }
.footer-bottom { text-align: center; }
.footer-legal-links { display: flex; justify-content: center; align-items: center; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,0.28); font-size: 12px; font-weight: 300; transition: color 0.15s; }
.footer-legal-links a:hover { color: #fff; }
.footer-sep { color: rgba(255,255,255,0.1); }
.footer-disclaimer-box { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--r-m); padding: 20px 24px; margin-bottom: 20px; text-align: left; }
.footer-disclaimer-box p { font-size: 11px; line-height: 1.7; color: rgba(255,255,255,0.2); margin-bottom: 8px; font-weight: 300; }
.footer-disclaimer-box p:last-child { margin-bottom: 0; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.18); }

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-wrap { max-width: 780px; margin: 0 auto; padding: 6rem 2rem 8rem; }
.legal-wrap h1 { font-family: var(--serif); font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.6rem; }
.legal-eff { font-size: 0.8rem; color: var(--muted); margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); line-height: 1.7; }
.legal-wrap h2 { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; margin: 2.5rem 0 0.7rem; }
.legal-wrap p { font-size: 0.9rem; line-height: 1.85; color: var(--muted); margin-bottom: 0.9rem; font-weight: 300; }
.legal-wrap a { color: var(--violet); }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 600; color: var(--violet); margin-bottom: 2.5rem; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 48px; min-height: auto; }
  .hero-visual { padding-bottom: 0; }
  .hero-content { padding-bottom: 0; }
  .story-wrap, .showcase-grid { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .specs-list { grid-template-columns: 1fr; }
  .specs-list li:nth-child(even) { border-right: 1px solid var(--line); }
  .specs-list li:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .specs-list li:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trustbar-inner { flex-direction: column; align-items: flex-start; }
  .t-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 14px 0; width: 100%; }
  .t-item:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .features-grid, .reviews-grid, .reviews-bottom { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-legal-links { flex-direction: column; gap: 6px; }
  .cta-card { padding: 36px 20px; }
  .nav-cta { display: none; }
  .hero { padding: 40px 5% 0; }
}
