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

:root {
  --cobalt:    #2E27B5;
  --cobalt-dk: #1A1666;
  --cobalt-lt: #4A44C8;
  --cobalt-xlt:#EEEDF9;
  --gold:      #E8A020;
  --gold-lt:   #FBF0D8;
  --white:     #FFFFFF;
  --ink:       #0D0B2E;
  --gray:      #5C5A7E;
  --light:     #F2F1FB;
  --border:    #D8D6F0;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Figtree', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

/* noise */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none;
}
.nav-logo-box {
  height: 30px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-box img { height: 30px; width: auto; display: block; }
.nav-brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1rem; font-weight: 600;
  color: var(--cobalt); letter-spacing: -0.01em;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem; font-weight: 500;
  color: var(--gray); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cobalt); }
.nav-cta {
  background: var(--cobalt); color: var(--white) !important;
  padding: 0.5rem 1.1rem; border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--cobalt-lt) !important; color: var(--white) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 7rem 2.5rem 5rem;
  background: var(--cobalt);
  position: relative; overflow: hidden; z-index: 1;
}
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-circle-1 {
  width: 700px; height: 700px;
  right: -200px; top: -200px;
  background: radial-gradient(circle, rgba(232,160,32,0.1) 0%, transparent 65%);
}
.hero-bg-circle-2 {
  width: 400px; height: 400px;
  left: -100px; bottom: -100px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.35);
  border-radius: var(--radius-lg);
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700; line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
}
.hero-title em {
  font-style: italic; font-weight: 400;
  color: rgba(255,255,255,0.6);
}
.hero-title .gold { color: var(--gold); }

.hero-sub {
  font-size: 1.05rem; line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.4rem;
  max-width: 480px;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--cobalt-dk);
  padding: 0.9rem 1.8rem; border-radius: 10px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(232,160,32,0.35);
}
.btn-primary:hover { background: #f0b030; transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  padding: 0.9rem 1.8rem; border-radius: 10px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.hero-rule { height: 1px; background: rgba(255,255,255,0.18); margin: 2rem 0; }
.hero-proof {
  display: flex; gap: 2rem; flex-wrap: wrap;
}
.hero-proof-item {
  display: flex; flex-direction: column;
}
.hero-proof-num {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-proof-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4; margin-top: 0.2rem;
}

/* right panel — server card */
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 2rem;
  backdrop-filter: blur(10px);
  position: relative;
}
.hero-card-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.4rem;
}
.server-visual {
  background: var(--cobalt-dk);
  border-radius: 12px; padding: 1.4rem;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.server-visual::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cobalt-lt), var(--gold), var(--cobalt-lt));
}
.server-unit {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
}
.server-box {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.server-box svg { width: 26px; height: 26px; }
.server-info { flex: 1; }
.server-name {
  font-size: 0.85rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.2rem;
}
.server-sub { font-size: 0.72rem; color: rgba(255,255,255,0.7); }
.server-status {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; font-weight: 600; color: #34d399;
}
.status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #34d399;
  animation: pulse 2s infinite;
}
.server-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.metric-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm); padding: 0.6rem 0.9rem;
  text-align: center;
}
.metric-val {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem; font-weight: 500;
  color: var(--gold); display: block;
}
.metric-key {
  font-size: 0.6rem; color: rgba(255,255,255,0.7);
  display: block; margin-top: 0.15rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}

.card-features { display: flex; flex-direction: column; gap: 0.6rem; }
.card-feature {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.75);
}
.feature-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(52,211,153,0.15);
  border: 1px solid rgba(52,211,153,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-check svg { width: 10px; height: 10px; }

.card-price-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.4rem; padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.card-price-from {
  font-size: 0.72rem; color: rgba(255,255,255,0.75);
}
.card-price-val {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.card-price-per {
  font-size: 0.72rem; color: rgba(255,255,255,0.75);
  font-family: 'Figtree', sans-serif; font-weight: 400;
}
.card-cta {
  background: var(--gold); color: var(--cobalt-dk);
  padding: 0.6rem 1.3rem; border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.card-cta:hover { background: #f0b030; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--ink);
  padding: 1.5rem 2.5rem;
  position: relative; z-index: 1;
}
.trust-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.trust-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}
.trust-items {
  display: flex; align-items: center; gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.trust-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* ── SECTION COMMONS ── */
.section-eye {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cobalt);
  margin-bottom: 0.7rem;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700; color: var(--ink);
  line-height: 1.15; margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1rem; color: var(--gray);
  max-width: 600px; line-height: 1.75;
  margin-bottom: 3rem;
}
.section-title-sub {
  font-style: italic; color: var(--gray);
  font-weight: 400; font-size: 0.88em;
  display: block; margin-top: 0.2rem;
}

/* ── ACCESSIBILITY ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.link-disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

/* ── PROBLEM SECTION ── */
.problems {
  background: var(--white);
  padding: 6rem 2.5rem;
  position: relative; z-index: 1;
}
.problems-inner { max-width: 1100px; margin: 0 auto; }
.problems-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.problem-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.8rem;
  position: relative; overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cobalt), var(--cobalt-lt));
  opacity: 0;
  transition: opacity 0.3s;
}
.problem-card:hover::before { opacity: 1; }
.problem-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--cobalt-xlt);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.problem-icon svg { width: 22px; height: 22px; color: var(--cobalt); }
.problem-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.5rem; line-height: 1.3;
}
.problem-card p {
  font-size: 0.85rem; color: var(--gray); line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--cobalt);
  padding: 6rem 2.5rem;
  position: relative; z-index: 1; overflow: hidden;
}
.how::before {
  content: '';
  position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,0.08) 0%, transparent 70%);
}
.how-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.how .section-eye { color: var(--gold); }
.how .section-title { color: var(--white); }
.how .section-sub { color: rgba(255,255,255,0.6); }

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 0; position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 28px; left: calc(16.7% + 28px); right: calc(16.7% + 28px);
  height: 1px; background: rgba(255,255,255,0.12);
  pointer-events: none;
}
.step {
  display: flex; flex-direction: column;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 0.9rem; color: var(--gold);
  margin-bottom: 1.4rem; flex-shrink: 0;
}
.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.6rem; line-height: 1.3;
}
.step p {
  font-size: 0.85rem; color: rgba(255,255,255,0.8);
  line-height: 1.7;
}
.step-tag {
  display: inline-block; margin-top: 0.9rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--gold); background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.25);
  padding: 0.25rem 0.65rem; border-radius: var(--radius-lg);
}

/* ── PLANS ── */
.plans {
  background: var(--white);
  padding: 6rem 2.5rem;
  position: relative; z-index: 1;
}
.plans-inner { max-width: 1100px; margin: 0 auto; }

/* Slider */
.plans-slider {
  max-width: 560px; margin: 0 auto 3rem;
  text-align: center;
}
.plans-slider-label {
  font-size: 0.9rem; font-weight: 600; color: var(--ink);
  margin-bottom: 1.4rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  flex-wrap: wrap;
}
.plans-slider-tb {
  font-family: 'DM Mono', monospace;
  font-size: 1rem; font-weight: 500;
  color: var(--cobalt);
  background: var(--cobalt-xlt);
  padding: 0.15rem 0.6rem; border-radius: var(--radius-sm);
}
input[type=range]#storage-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: var(--border); border-radius: 9px;
  outline: none; cursor: pointer;
}
input[type=range]#storage-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cobalt);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--cobalt), 0 2px 8px rgba(46,39,181,0.25);
  cursor: pointer; transition: transform 0.15s;
}
input[type=range]#storage-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type=range]#storage-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cobalt);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--cobalt), 0 2px 8px rgba(46,39,181,0.25);
  cursor: pointer;
}
.plans-slider-ticks {
  display: flex; justify-content: space-between;
  margin-top: 0.5rem; padding: 0 2px;
  font-size: 0.72rem; color: var(--gray);
  font-family: 'DM Mono', monospace;
}

/* Compare cards */
.plans-compare {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.plan-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: 2rem;
  position: relative;
  display: flex; flex-direction: column;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
}
.plan-card:hover {
  box-shadow: 0 16px 48px rgba(46,39,181,0.1);
  border-color: var(--cobalt);
  transform: translateY(-2px);
}
.plan-highlight {
  border-color: var(--cobalt);
  background: var(--cobalt);
}
.plan-badge {
  display: inline-block;
  background: var(--gold); color: var(--cobalt-dk);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: var(--radius-lg);
  margin-bottom: 1.2rem; align-self: flex-start;
}
.plan-name {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--ink); margin-bottom: 0.3rem;
}
.plan-highlight .plan-name { color: var(--white); }
.plan-for {
  font-size: 0.78rem; color: var(--gray);
  margin-bottom: 1.4rem;
}
.plan-highlight .plan-for { color: rgba(255,255,255,0.8); }

/* Price display */
.plan-price-block {
  margin-bottom: 0.5rem;
}
.plan-upfront-amount {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem; font-weight: 700;
  color: var(--ink); line-height: 1;
}
.plan-monthly-amount {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.plan-monthly-amount .plan-mo { font-size: 1rem; font-family: 'Figtree', sans-serif; font-weight: 400; color: rgba(255,255,255,0.8); }
.plan-upfront-label {
  font-size: 0.78rem; color: var(--gray);
  margin-top: 0.2rem; margin-bottom: 0.75rem;
}
.plan-highlight .plan-upfront-label { color: rgba(255,255,255,0.8); }
.plan-highlight .plan-upfront-amount { color: var(--white); }
.plan-highlight .plan-then-line { color: rgba(255,255,255,0.8); }
.plan-highlight .plan-then-line strong { color: var(--white); }
.plan-highlight .plan-then-line .plan-mo { color: rgba(255,255,255,0.8); }
.plan-mo { font-size: 0.82rem; color: var(--gray); }
.plan-then-line {
  font-size: 0.82rem; color: var(--gray);
  margin-bottom: 1.2rem;
}
.plan-then-line strong { color: var(--ink); font-size: 1rem; }
.plan-then-light { color: rgba(255,255,255,0.8); }
.plan-then-light strong { color: var(--white); }

/* Breakdown table */
.plan-breakdown {
  background: var(--light); border-radius: var(--radius-sm);
  padding: 0.85rem 1rem; margin-bottom: 1.4rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.plan-breakdown-light { background: rgba(255,255,255,0.08); }
.plan-breakdown-row {
  display: flex; justify-content: space-between;
  font-size: 0.78rem; color: var(--gray);
}
.plan-breakdown-light .plan-breakdown-row { color: rgba(255,255,255,0.8); }
.plan-breakdown-total {
  font-weight: 700; color: var(--ink) !important;
  border-top: 1px solid var(--border);
  padding-top: 0.4rem; margin-top: 0.2rem;
}
.plan-breakdown-light .plan-breakdown-total { color: var(--white) !important; border-top-color: rgba(255,255,255,0.15); }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; flex: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.83rem; line-height: 1.5;
  color: var(--ink);
}
.plan-highlight .plan-features li { color: rgba(255,255,255,0.8); }
.plan-check {
  flex-shrink: 0; width: 16px; height: 16px; margin-top: 1px;
  border-radius: 50%; background: var(--cobalt-xlt);
  display: flex; align-items: center; justify-content: center;
}
.plan-highlight .plan-check { background: rgba(255,255,255,0.15); }
.plan-check svg { width: 8px; height: 8px; color: var(--cobalt); }
.plan-highlight .plan-check svg { color: var(--white); }
.plan-dash {
  flex-shrink: 0; width: 16px; height: 16px; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  color: var(--border);
  font-size: 1rem; line-height: 1;
}
.plan-li-gray { color: var(--gray) !important; }

/* Savings tag */
.plan-savings-tag {
  font-size: 0.72rem; font-weight: 600; color: #15803d;
  background: #dcfce7; border: 1px solid #bbf7d0;
  padding: 0.3rem 0.7rem; border-radius: var(--radius-lg);
  margin-bottom: 1rem; display: inline-block;
}

.btn-plan {
  display: block; width: 100%;
  padding: 0.85rem 1.4rem; border-radius: 10px;
  text-align: center; text-decoration: none;
  font-family: 'Figtree', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-plan-outline {
  border: 1.5px solid var(--border);
  color: var(--ink);
  background: transparent;
}
.btn-plan-outline:hover {
  border-color: var(--cobalt);
  color: var(--cobalt);
  background: var(--cobalt-xlt);
}
.btn-plan-featured {
  background: var(--gold); color: var(--cobalt-dk);
}
.btn-plan-featured:hover { background: #f0b030; }

.plans-note {
  margin-top: 2rem; text-align: center;
  font-size: 0.82rem; color: var(--gray);
}
.plans-note b { color: var(--ink); }

/* ── ADDONS ── */
.addons {
  background: var(--light);
  padding: 6rem 2.5rem;
  position: relative; z-index: 1;
}
.addons-inner { max-width: 1100px; margin: 0 auto; }
.addons-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.addon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.4rem 1.6rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.addon-card:hover {
  box-shadow: 0 8px 32px rgba(46,39,181,0.08);
  border-color: var(--cobalt);
  transform: translateY(-1px);
}
.addon-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--cobalt-xlt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.addon-icon svg { width: 20px; height: 20px; color: var(--cobalt); }
.addon-name {
  font-size: 0.9rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.25rem; line-height: 1.3;
}
.addon-desc {
  font-size: 0.78rem; color: var(--gray); line-height: 1.55;
  margin-bottom: 0.5rem;
}
.addon-price {
  font-size: 0.72rem; font-weight: 600;
  color: var(--cobalt); background: var(--cobalt-xlt);
  padding: 0.2rem 0.6rem; border-radius: 4px;
  display: inline-block;
}

/* ── WHY ESENSEE ── */
.why {
  background: var(--white);
  padding: 6rem 2.5rem;
  position: relative; z-index: 1;
}
.why-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 1.6rem; }
.why-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.why-num {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--cobalt);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem; color: var(--white);
  flex-shrink: 0;
}
.why-item h4 {
  font-size: 0.95rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.3rem; line-height: 1.3;
}
.why-item p {
  font-size: 0.83rem; color: var(--gray); line-height: 1.65;
}
.why-footnote {
  font-size: 0.72rem; color: var(--gray);
  font-style: italic; line-height: 1.55;
  margin-top: 0.5rem; opacity: 0.75;
}
.why-quote-card {
  background: var(--cobalt);
  border-radius: var(--radius-lg); padding: 2.5rem;
  position: relative; overflow: hidden;
}
.why-quote-card::before {
  content: '"';
  position: absolute; top: -20px; right: 20px;
  font-family: 'Fraunces', serif;
  font-size: 12rem; line-height: 1;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
}
.quote-text {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem; font-weight: 400; font-style: italic;
  color: var(--white); line-height: 1.65;
  margin-bottom: 1.6rem;
}
.quote-attr {
  display: flex; align-items: center; gap: 0.75rem;
}
.quote-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 0.9rem; color: var(--white);
}
.quote-name {
  font-size: 0.85rem; font-weight: 600; color: var(--white);
}
.quote-title {
  font-size: 0.75rem; color: rgba(255,255,255,0.75);
}
.guarantee-pill {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 1.6rem; padding: 0.9rem 1.2rem;
  background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: 10px;
}
.guarantee-pill svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.guarantee-text {
  font-size: 0.8rem; color: rgba(255,255,255,0.75); line-height: 1.4;
}
.guarantee-text b { color: var(--gold); font-weight: 600; }

/* ── COMPLIANCE ── */
.compliance {
  background: var(--gold-lt);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 4rem 2.5rem;
  position: relative; z-index: 1;
}
.compliance-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 4rem;
}
.compliance-eye {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cobalt);
  margin-bottom: 0.5rem;
}
.compliance-title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--ink); line-height: 1.2;
  margin-bottom: 0.7rem;
}
.compliance-body {
  font-size: 0.9rem; color: var(--gray); line-height: 1.7;
  max-width: 580px;
}
.compliance-body b { color: var(--ink); }
.btn-compliance {
  white-space: nowrap;
  background: var(--cobalt); color: var(--white);
  padding: 0.9rem 1.8rem; border-radius: 10px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  transition: background 0.2s;
  box-shadow: 0 4px 16px rgba(46,39,181,0.25);
}
.btn-compliance:hover { background: var(--cobalt-lt); }

/* ── HEALTH CHECK CTA ── */
.healthcheck {
  background: var(--cobalt);
  padding: 7rem 2.5rem;
  text-align: center;
  position: relative; z-index: 1; overflow: hidden;
}
.healthcheck::before {
  content: '';
  position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,0.08) 0%, transparent 70%);
}
.healthcheck-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 2; }
.healthcheck-eye { color: var(--gold) !important; margin-bottom: 0.7rem; }
.healthcheck-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--white);
  line-height: 1.15; margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.healthcheck-title em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.6); }
.healthcheck-sub {
  font-size: 1rem; color: rgba(255,255,255,0.6);
  line-height: 1.75; margin-bottom: 2.5rem;
}
.healthcheck-form {
  display: flex; gap: 0.75rem; max-width: 420px; margin: 0 auto 1rem;
}
.healthcheck-form input {
  flex: 1; min-width: 0; padding: 0.9rem 1.1rem;
  border: none; border-radius: 10px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.9rem; color: var(--ink);
  outline: none;
}
.healthcheck-form input::placeholder { color: #AAA; }
.healthcheck-form button {
  padding: 0.9rem 1.6rem;
  background: var(--gold); color: var(--cobalt-dk);
  border: none; border-radius: 10px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: background 0.2s;
}
.healthcheck-form button:hover { background: #f0b030; }
.healthcheck-note {
  font-size: 0.75rem; color: rgba(255,255,255,0.7);
}
.healthcheck-what {
  display: flex; justify-content: center; gap: 2rem;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}
.hc-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
}
.hc-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  background: var(--cobalt-dk);
  padding: 3.5rem 2.5rem 2rem;
  position: relative; z-index: 1;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.footer-brand-tagline {
  font-size: 0.8rem; color: rgba(255,255,255,0.65);
  line-height: 1.65; max-width: 240px;
  margin-bottom: 1.2rem;
}
.footer-contact-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.65);
  margin-bottom: 0.4rem;
}
.footer-contact-item svg { width: 12px; height: 12px; flex-shrink: 0; }
.footer-col-title {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.82rem; color: rgba(255,255,255,0.7);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.footer-bottom a {
  font-size: 0.75rem; color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--gold); }

/* ── BUNDLES ── */
.bundles {
  background: var(--cobalt);
  padding: 6rem 2.5rem;
  position: relative; z-index: 1; overflow: hidden;
}
.bundles::after {
  content: '';
  position: absolute; bottom: -120px; left: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.bundles-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.bundles .section-eye { color: var(--gold); }
.bundles .section-title { color: var(--white); }
.bundles .section-sub { color: rgba(255,255,255,0.6); }
.bundles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 1.5rem;
}
.bundle-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md); padding: 1.8rem;
  position: relative;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.bundle-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.22); transform: translateY(-2px); }
.bundle-card.bundle-featured { background: rgba(255,255,255,0.1); border-color: var(--gold); }
.bundle-badge {
  display: inline-block;
  background: var(--gold); color: var(--cobalt-dk);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: var(--radius-lg); margin-bottom: 1rem;
}
.bundle-header { display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 1.2rem; }
.bundle-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: rgba(255,255,255,0.7);
}
.bundle-icon svg { width: 20px; height: 20px; }
.bundle-name { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 600; color: var(--white); line-height: 1.3; margin-bottom: 0.2rem; }
.bundle-best { font-size: 0.75rem; color: rgba(255,255,255,0.75); }
.bundle-price-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.2rem; padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.bundle-price { font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1; }
.bundle-per { font-size: 0.78rem; color: rgba(255,255,255,0.75); margin-left: 0.2rem; }
.bundle-savings {
  font-size: 0.72rem; font-weight: 600; color: #34d399;
  background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.2);
  padding: 0.25rem 0.6rem; border-radius: var(--radius-lg); text-align: right;
}
.bundle-includes { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.2rem; }
.bundle-includes li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.bundle-check {
  width: 15px; height: 15px; border-radius: 50%;
  background: rgba(52,211,153,0.15); border: 1px solid rgba(52,211,153,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #34d399;
}
.bundle-check svg { width: 8px; height: 8px; }
.bundle-was { font-size: 0.7rem; color: rgba(255,255,255,0.65); margin-left: auto; font-family: 'DM Mono', monospace; }
.bundle-tip {
  font-size: 0.75rem; font-style: italic; color: var(--gold); line-height: 1.5;
  margin-bottom: 0.8rem; padding: 0.6rem 0.8rem;
  background: rgba(232,160,32,0.08); border: 1px solid rgba(232,160,32,0.2); border-radius: var(--radius-sm);
}
.bundle-example { font-size: 0.78rem; color: rgba(255,255,255,0.75); line-height: 1.4; margin-top: auto; }
.bundle-example strong { color: rgba(255,255,255,0.95); }
.priority-callout {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 1.4rem 1.8rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.priority-left { display: flex; align-items: center; gap: 1rem; }
.priority-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: rgba(255,255,255,0.6);
}
.priority-icon svg { width: 22px; height: 22px; }
.priority-name { font-size: 0.9rem; color: var(--white); margin-bottom: 0.25rem; }
.priority-name strong { font-weight: 700; color: var(--gold); }
.priority-desc { font-size: 0.78rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.btn-priority {
  white-space: nowrap; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2); color: var(--white);
  padding: 0.7rem 1.4rem; border-radius: 9px; text-decoration: none;
  font-size: 0.85rem; font-weight: 600; transition: background 0.2s, border-color 0.2s;
}
.btn-priority:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.35); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 5rem 1.5rem 4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-card { display: none; }
  .hero-proof { gap: 1.5rem; }
  .problems-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .plans-compare { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .bundles-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .compliance-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .healthcheck-form { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .problems, .plans, .addons, .why, .healthcheck { padding: 4rem 1.5rem; }
  .how { padding: 4rem 1.5rem; }
  .compliance { padding: 3rem 1.5rem; }
  footer { padding: 3rem 1.5rem 1.5rem; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
