@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;0,900;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=DM+Mono:wght@400;500&display=swap');

/* ═══════════════════════════════════════════════
   ROOT TOKENS
═══════════════════════════════════════════════ */
:root {
  --ink:       #0c0b09;
  --paper:     #f5f2ec;
  --cream:     #ede9e0;
  --warm-100:  #e8e2d5;
  --warm-200:  #c8c0ae;
  --warm-400:  #857c6e;
  --warm-600:  #524d42;
  --gold:      #c9a96e;
  --gold-light:#e8c98a;
  --gold-glow: rgba(201,169,110,0.18);
  --gold-line: rgba(201,169,110,0.35);
  --ink-80:    rgba(12,11,9,0.80);
  --ink-05:    rgba(12,11,9,0.05);
  --ink-10:    rgba(12,11,9,0.10);
  --ink-20:    rgba(12,11,9,0.20);

  --f-display: 'Playfair Display', Georgia, serif;
  --f-body:    'DM Sans', sans-serif;
  --f-mono:    'DM Mono', monospace;

  --nav-h:     72px;
  --ease:      cubic-bezier(0.4,0,0.2,1);
  --ease-out:  cubic-bezier(0,0,0.2,1);
  --spring:    cubic-bezier(0.34,1.56,0.64,1);
  --t-fast:    0.22s;
  --t-med:     0.42s;
  --t-slow:    0.72s;

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  28px;
  --r-xl:  48px;
  --r-full:9999px;

  --shadow-sm:  0 2px 12px rgba(12,11,9,0.08);
  --shadow-md:  0 8px 40px rgba(12,11,9,0.14);
  --shadow-lg:  0 24px 80px rgba(12,11,9,0.20);
  --shadow-gold:0 8px 40px rgba(201,169,110,0.20);
}

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

body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--ink); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════ */
.t-display {
  font-family: var(--f-display);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.t-serif  { font-family: var(--f-display); }
.t-mono   { font-family: var(--f-mono); }
.t-gold   { color: var(--gold); }
.t-muted  { color: var(--warm-400); }
.t-ink    { color: var(--ink); }

/* ═══════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════ */
.wrap  { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.wrap-sm { max-width: 860px;  margin: 0 auto; padding: 0 32px; }
.wrap-lg { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

.section      { padding: 120px 0; }
.section-sm   { padding: 80px 0; }
.section-lg   { padding: 160px 0; }

/* ═══════════════════════════════════════════════
   PILL LABEL
═══════════════════════════════════════════════ */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-line);
  background: var(--gold-glow);
  padding: 6px 16px; border-radius: var(--r-full);
  backdrop-filter: blur(8px);
}
.pill::before {
  content: ''; width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; text-decoration: none;
  border: none; cursor: pointer; position: relative; overflow: hidden;
  transition: transform var(--t-med) var(--spring),
              box-shadow var(--t-med) var(--ease);
  white-space: nowrap;
}
.btn .ico { transition: transform var(--t-fast) var(--ease-out); }
.btn:hover .ico { transform: translateX(3px); }

.btn-gold {
  background: var(--gold); color: var(--ink);
  padding: 15px 32px; border-radius: var(--r-full);
  box-shadow: 0 2px 0 rgba(0,0,0,0.15), var(--shadow-gold);
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--t-fast);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 0 rgba(0,0,0,0.12), 0 16px 48px rgba(201,169,110,0.35); }
.btn-gold:hover::before { opacity: 1; }
.btn-gold:active { transform: translateY(0); }

.btn-ink {
  background: var(--ink); color: var(--paper);
  padding: 15px 32px; border-radius: var(--r-full);
  box-shadow: 0 2px 0 rgba(0,0,0,0.4), var(--shadow-md);
}
.btn-ink:hover { transform: translateY(-2px); box-shadow: 0 6px 0 rgba(0,0,0,0.35), var(--shadow-lg); }

.btn-outline-ink {
  background: transparent; color: var(--ink);
  padding: 14px 30px; border-radius: var(--r-full);
  border: 1.5px solid var(--ink-20);
}
.btn-outline-ink:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: var(--warm-400);
  padding: 14px 30px; border-radius: var(--r-full);
  border: 1.5px solid var(--warm-200);
  font-size: 13px;
}
.btn-ghost:hover { background: var(--warm-100); color: var(--ink); border-color: var(--warm-400); transform: translateY(-2px); }

.btn-lg { padding: 18px 40px; font-size: 14px; }
.btn-sm { padding: 10px 22px; font-size: 12px; }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 40px;
  transition: background var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              backdrop-filter var(--t-med) var(--ease);
}
.navbar.scrolled {
  background: rgba(245,242,236,0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--ink-10);
  box-shadow: 0 1px 0 rgba(201,169,110,0.15), var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: baseline; gap: 1px;
  text-decoration: none;
  font-family: var(--f-display); font-weight: 900; font-size: 22px;
  color: var(--ink); letter-spacing: -0.5px;
}
.nav-logo .logo-dot {
  width: 7px; height: 7px; background: var(--gold);
  border-radius: 50%; display: inline-block; margin-left: 2px;
  position: relative; top: -8px;
  box-shadow: 0 0 8px var(--gold);
}

.nav-links {
  display: flex; align-items: center; gap: 2px; list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--warm-400);
  text-decoration: none; padding: 8px 16px; border-radius: var(--r-full);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 1.5px; background: var(--gold);
  transition: left var(--t-med) var(--ease), right var(--t-med) var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { left: 20%; right: 20%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 6px;
  z-index: 110;
}
.hamburger span {
  display: block; height: 1.5px; background: var(--ink);
  border-radius: 2px; transition: all var(--t-med) var(--ease);
}
.hamburger span:nth-child(1) { width: 22px; }
.hamburger span:nth-child(2) { width: 16px; }
.hamburger span:nth-child(3) { width: 22px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); width: 22px; }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); width: 22px; }

/* Mobile menu */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--paper);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 8px; padding: 40px;
  pointer-events: none; opacity: 0;
  transform: scale(0.97);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.mobile-nav.open { pointer-events: all; opacity: 1; transform: scale(1); }
.mobile-nav a {
  font-family: var(--f-display); font-size: clamp(32px, 8vw, 52px); font-weight: 900;
  color: var(--warm-200); text-decoration: none; letter-spacing: -1px;
  transition: color var(--t-fast);
  text-align: center;
}
.mobile-nav a:hover { color: var(--ink); }
.mobile-nav .divider { width: 1px; height: 40px; background: var(--warm-200); margin: 8px 0; }
.mobile-nav .cta-row { margin-top: 24px; display: flex; gap: 12px; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: grid; place-items: center;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
  background: var(--paper);
}

/* Textured background */
.hero-texture {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-texture::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-texture::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.10) 0%, transparent 70%);
  border-radius: 50%;
  animation: drift 14s ease-in-out infinite;
}
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-40px,30px) scale(1.05); }
  66%      { transform: translate(20px,-30px) scale(0.97); }
}

.hero-accent-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.hero-number {
  position: absolute; right: 48px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-display); font-size: clamp(160px, 20vw, 260px);
  font-weight: 900; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,169,110,0.15);
  user-select: none; pointer-events: none;
  letter-spacing: -8px;
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; padding: 0 32px;
}

.hero-kicker {
  margin-bottom: 32px;
  animation: fade-up 0.8s var(--ease-out) both;
}

.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(54px, 8.5vw, 112px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  max-width: 900px;
  animation: fade-up 0.8s 0.08s var(--ease-out) both;
}
.hero-headline em {
  font-style: italic; color: var(--gold);
  position: relative; display: inline-block;
}
.hero-headline em::after {
  content: '';
  position: absolute; bottom: 4px; left: 0; right: 0; height: 3px;
  background: var(--gold); opacity: 0.4; border-radius: 2px;
}

.hero-body {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-top: 48px; gap: 60px;
  animation: fade-up 0.8s 0.18s var(--ease-out) both;
  flex-wrap: wrap;
}
.hero-desc {
  font-size: 17px; color: var(--warm-400); line-height: 1.72;
  max-width: 480px; font-weight: 300;
}
.hero-desc strong { color: var(--ink); font-weight: 600; }

.hero-actions {
  display: flex; flex-direction: column; align-items: flex-end; gap: 16px;
  flex-shrink: 0;
}
.hero-sub-cta {
  font-size: 12px; color: var(--warm-400); font-family: var(--f-mono);
  letter-spacing: 0.06em;
}

/* Hero stats strip */
.hero-stats {
  display: flex; gap: 0;
  margin-top: 80px; padding-top: 40px;
  border-top: 1px solid var(--ink-10);
  animation: fade-up 0.8s 0.28s var(--ease-out) both;
}
.hstat {
  flex: 1; padding: 0 32px 0 0;
  border-right: 1px solid var(--ink-10);
}
.hstat:last-child { border-right: none; padding-left: 32px; padding-right: 0; }
.hstat:first-child { padding-left: 0; }
.hstat-num {
  font-family: var(--f-display); font-size: 40px; font-weight: 900;
  line-height: 1; color: var(--ink); letter-spacing: -1px;
}
.hstat-num span { color: var(--gold); }
.hstat-label { font-size: 12px; color: var(--warm-400); margin-top: 6px; font-weight: 400; letter-spacing: 0.02em; }

/* ═══════════════════════════════════════════════
   TICKER / MARQUEE
═══════════════════════════════════════════════ */
.ticker {
  overflow: hidden; border-top: 1px solid var(--ink-10); border-bottom: 1px solid var(--ink-10);
  background: var(--ink); padding: 16px 0;
}
.ticker-track {
  display: flex; gap: 0; width: max-content;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-item {
  display: flex; align-items: center; gap: 20px;
  padding: 0 40px; white-space: nowrap;
  font-family: var(--f-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--warm-400);
  border-right: 1px solid rgba(255,255,255,0.06);
}
.ticker-item .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.ticker-item.highlight { color: var(--gold); }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════════ */
.sh { margin-bottom: 72px; }
.sh-center { text-align: center; }
.sh-label {
  font-family: var(--f-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px; display: block;
}
.sh-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.03em; color: var(--ink);
}
.sh-title em { font-style: italic; color: var(--gold); }
.sh-sub {
  font-size: 16px; color: var(--warm-400); line-height: 1.75;
  max-width: 560px; margin-top: 16px; font-weight: 300;
}
.sh-center .sh-sub { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════
   FEATURE CARDS — dark ink background
═══════════════════════════════════════════════ */
.features-dark {
  background: var(--ink); padding: 120px 0;
  position: relative; overflow: hidden;
}
.features-dark::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}
.features-dark .sh-label { color: var(--gold); }
.features-dark .sh-title { color: var(--paper); }
.features-dark .sh-title em { color: var(--gold); }
.features-dark .sh-sub { color: var(--warm-400); }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.feat-card {
  background: var(--ink);
  padding: 48px 40px;
  position: relative; overflow: hidden;
  cursor: default;
  transition: background var(--t-med) var(--ease);
}
.feat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, transparent 70%);
  opacity: 0; transition: opacity var(--t-med);
}
.feat-card:hover { background: rgba(255,255,255,0.02); }
.feat-card:hover::before { opacity: 1; }

.feat-num {
  font-family: var(--f-mono); font-size: 10px; color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em; margin-bottom: 32px;
}
.feat-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 24px;
  background: rgba(201,169,110,0.05);
  transition: border-color var(--t-med), transform var(--t-med) var(--spring);
}
.feat-card:hover .feat-icon {
  border-color: rgba(201,169,110,0.5);
  transform: scale(1.08) rotate(-3deg);
}
.feat-title {
  font-family: var(--f-display); font-size: 20px; font-weight: 700;
  color: var(--paper); margin-bottom: 12px; letter-spacing: -0.02em;
}
.feat-desc { font-size: 14px; color: var(--warm-400); line-height: 1.75; font-weight: 300; }

/* ═══════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════ */
.pricing-wrap {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: start;
}

.pc {
  border-radius: var(--r-lg); overflow: hidden;
  position: relative;
  transition: transform var(--t-med) var(--spring), box-shadow var(--t-med) var(--ease);
}
.pc:hover { transform: translateY(-8px); }

/* Basic */
.pc-basic {
  background: var(--paper);
  border: 1.5px solid var(--ink-10);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
}
.pc-basic:hover { box-shadow: var(--shadow-md); }

/* Standard — featured */
.pc-standard {
  background: var(--ink);
  padding: 56px 40px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.pc-standard::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(201,169,110,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.pc-standard:hover { box-shadow: 0 32px 100px rgba(12,11,9,0.3), var(--shadow-gold); }

/* Premium */
.pc-premium {
  background: var(--cream);
  border: 1.5px solid var(--ink-10);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
}
.pc-premium:hover { box-shadow: var(--shadow-md); }

.pc-badge {
  display: inline-block; font-family: var(--f-mono); font-size: 9px;
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--r-full);
  margin-bottom: 20px;
}
.pc-badge-light { background: var(--gold-glow); color: var(--gold); border: 1px solid var(--gold-line); }
.pc-badge-dark  { background: rgba(201,169,110,0.15); color: var(--gold-light); border: 1px solid rgba(201,169,110,0.3); }

.pc-tier {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--warm-400); margin-bottom: 16px;
}
.pc-standard .pc-tier { color: rgba(255,255,255,0.4); }

.pc-price {
  display: flex; align-items: baseline; gap: 2px; margin-bottom: 6px;
}
.pc-currency { font-size: 16px; font-weight: 500; color: var(--warm-400); margin-right: 2px; }
.pc-amount {
  font-family: var(--f-display); font-size: 56px; font-weight: 900;
  line-height: 1; letter-spacing: -2px; color: var(--ink);
}
.pc-standard .pc-currency { color: rgba(255,255,255,0.4); }
.pc-standard .pc-amount  { color: var(--paper); }
.pc-premium  .pc-amount  { color: var(--ink); }

.pc-tagline {
  font-size: 13px; color: var(--warm-400); margin-bottom: 36px;
  line-height: 1.6; font-weight: 300;
}
.pc-standard .pc-tagline { color: rgba(255,255,255,0.5); }

.pc-divider {
  height: 1px; margin: 28px 0;
  background: var(--ink-10);
}
.pc-standard .pc-divider { background: rgba(255,255,255,0.1); }

.pc-feats { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.pc-feats li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13.5px; color: var(--warm-600); line-height: 1.5;
}
.pc-standard .pc-feats li { color: rgba(255,255,255,0.7); }
.pc-check {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
  font-size: 9px;
}
.pc-check-light { background: var(--gold-glow); color: var(--gold); border: 1px solid var(--gold-line); }
.pc-check-dark  { background: rgba(201,169,110,0.15); color: var(--gold-light); border: 1px solid rgba(201,169,110,0.25); }

.pc-cta { margin-top: 36px; }
.pc .btn { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════ */
.steps-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 80px;
  align-items: start;
}
.steps-list { display: flex; flex-direction: column; }
.step-item {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 0; padding: 32px 0;
  border-bottom: 1px solid var(--ink-10);
  cursor: default;
}
.step-item:last-child { border-bottom: none; }
.step-n {
  font-family: var(--f-mono); font-size: 11px; color: var(--warm-200);
  letter-spacing: 0.1em; padding-top: 3px;
  transition: color var(--t-fast);
}
.step-item:hover .step-n { color: var(--gold); }
.step-body {}
.step-title {
  font-family: var(--f-display); font-size: 20px; font-weight: 700;
  color: var(--ink); margin-bottom: 8px; letter-spacing: -0.02em;
  transition: transform var(--t-med) var(--ease);
}
.step-item:hover .step-title { transform: translateX(4px); }
.step-desc { font-size: 14px; color: var(--warm-400); line-height: 1.75; font-weight: 300; max-width: 380px; }

/* ═══════════════════════════════════════════════
   VISUAL CARD (right side of HOW IT WORKS)
═══════════════════════════════════════════════ */
.steps-visual {
  position: sticky; top: calc(var(--nav-h) + 40px);
}
.steps-card {
  background: var(--ink); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.steps-card-bar {
  background: #1a1816; padding: 14px 20px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.scd { width: 10px; height: 10px; border-radius: 50%; }
.scd-r { background: #ff5f57; }
.scd-y { background: #febc2e; }
.scd-g { background: #28c840; }
.steps-card-url {
  flex: 1; background: rgba(255,255,255,0.05);
  border-radius: 6px; padding: 5px 12px;
  font-family: var(--f-mono); font-size: 10px; color: rgba(255,255,255,0.3);
  margin: 0 8px;
}
.steps-card-body { padding: 0; }
.mock-site { padding: 40px 32px; min-height: 360px; }
.mock-nav-strip {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 48px;
}
.mock-logo-sm { font-family: var(--f-display); font-size: 15px; font-weight: 900; color: var(--paper); }
.mock-nav-links { display: flex; gap: 14px; }
.mock-nav-links span { font-size: 9px; color: rgba(255,255,255,0.3); }
.mock-nav-btn { background: var(--gold); color: var(--ink); font-size: 9px; font-weight: 600; padding: 5px 12px; border-radius: 100px; }
.mock-hero-label { font-family: var(--f-mono); font-size: 8px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.mock-hero-h { font-family: var(--f-display); font-size: 26px; font-weight: 900; color: var(--paper); line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 10px; }
.mock-hero-h span { color: var(--gold); font-style: italic; }
.mock-hero-p { font-size: 10px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 220px; margin-bottom: 20px; }
.mock-btns { display: flex; gap: 8px; }
.mock-btn-g { background: var(--gold); color: var(--ink); font-size: 9px; font-weight: 600; padding: 7px 16px; border-radius: 100px; }
.mock-btn-o { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); font-size: 9px; padding: 7px 14px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.1); }
.mock-stats-row { display: flex; gap: 0; margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.mock-stat { flex: 1; }
.mock-stat-n { font-family: var(--f-display); font-size: 18px; font-weight: 900; color: var(--paper); }
.mock-stat-n span { color: var(--gold); }
.mock-stat-l { font-size: 8px; color: rgba(255,255,255,0.3); margin-top: 2px; }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testi-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.tc {
  background: var(--cream); border: 1px solid var(--ink-10);
  border-radius: var(--r-lg); padding: 40px;
  position: relative; overflow: hidden;
  transition: transform var(--t-med) var(--spring), border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.tc::before {
  content: '"';
  position: absolute; top: 20px; right: 24px;
  font-family: var(--f-display); font-size: 100px; font-weight: 900;
  color: var(--gold); opacity: 0.08; line-height: 1;
  pointer-events: none;
}
.tc:hover { transform: translateY(-4px); border-color: var(--gold-line); box-shadow: var(--shadow-md); }
.tc-stars { display: flex; gap: 3px; margin-bottom: 20px; font-size: 13px; }
.tc-quote { font-size: 15px; color: var(--warm-600); line-height: 1.78; margin-bottom: 28px; font-weight: 300; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 14px; }
.tc-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-glow); border: 1.5px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 18px; font-weight: 900; color: var(--gold);
}
.tc-name { font-weight: 600; font-size: 14px; color: var(--ink); }
.tc-role { font-size: 12px; color: var(--warm-400); margin-top: 2px; font-family: var(--f-mono); letter-spacing: 0.04em; }

/* ═══════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════ */
.cta-banner {
  background: var(--ink); border-radius: var(--r-xl);
  margin: 0 40px;
  padding: 80px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.0;
  color: var(--paper); margin-bottom: 20px; position: relative;
}
.cta-banner-title em { font-style: italic; color: var(--gold); }
.cta-banner-sub {
  font-size: 16px; color: var(--warm-400); max-width: 500px;
  margin: 0 auto 44px; line-height: 1.7; font-weight: 300;
}
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note {
  margin-top: 24px; font-family: var(--f-mono); font-size: 10px;
  color: rgba(255,255,255,0.25); letter-spacing: 0.1em; text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--paper); position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11px; color: var(--warm-400);
  text-decoration: none; letter-spacing: 0.06em;
  margin-bottom: 28px;
  transition: color var(--t-fast);
}
.back-link:hover { color: var(--ink); }

/* ═══════════════════════════════════════════════
   PACKAGE DETAIL
═══════════════════════════════════════════════ */
.pkg-layout {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 80px; align-items: start;
}
.pkg-sticky {
  position: sticky; top: calc(var(--nav-h) + 32px);
}
.pkg-box {
  background: var(--ink); border-radius: var(--r-lg); padding: 48px;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.pkg-box::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(201,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.pkg-box-price { position: relative; }
.pkg-box-price .pc-amount { font-size: 72px; color: var(--paper); }
.pkg-box-price .pc-currency { color: rgba(255,255,255,0.35); font-size: 20px; }
.pkg-box-note { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-top: 12px; font-family: var(--f-mono); letter-spacing: 0.04em; }
.pkg-box-div { height: 1px; background: rgba(255,255,255,0.08); margin: 28px 0; }

.page-feats { list-style: none; display: flex; flex-direction: column; gap: 18px; margin: 32px 0; }
.page-feats li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--warm-600); line-height: 1.5; }
.pf-check { width: 22px; height: 22px; border-radius: 50%; background: var(--gold-glow); border: 1px solid var(--gold-line); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.struct-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.struct-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--cream); border: 1px solid var(--ink-10);
  border-radius: var(--r-md); padding: 20px 24px;
  transition: border-color var(--t-fast), transform var(--t-med) var(--ease);
}
.struct-item:hover { border-color: var(--gold-line); transform: translateX(4px); }
.struct-badge {
  font-family: var(--f-mono); font-size: 9px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold-glow); color: var(--gold);
  border: 1px solid var(--gold-line); padding: 4px 10px;
  border-radius: var(--r-full); flex-shrink: 0;
}
.struct-title { font-weight: 600; font-size: 15px; color: var(--ink); }
.struct-desc  { font-size: 12px; color: var(--warm-400); margin-top: 2px; }

/* ═══════════════════════════════════════════════
   DEMO PREVIEW BOX
═══════════════════════════════════════════════ */
.demo-wrap {
  background: var(--cream); border: 1px solid var(--ink-10);
  border-radius: var(--r-lg); overflow: hidden;
}
.demo-tabs {
  display: flex; gap: 0; padding: 20px 24px 0;
  border-bottom: 1px solid var(--ink-10);
  background: var(--paper);
}
.dtab {
  font-family: var(--f-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--warm-400); background: none; border: none; cursor: pointer;
  padding: 10px 18px; border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: color var(--t-fast), border-color var(--t-fast);
}
.dtab.active { color: var(--ink); border-bottom-color: var(--gold); }
.demo-frame { padding: 32px; }

/* ═══════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: start;
}
.contact-info-links { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
.cil {
  display: flex; align-items: center; gap: 18px;
  background: var(--cream); border: 1px solid var(--ink-10);
  border-radius: var(--r-md); padding: 22px 28px;
  text-decoration: none;
  transition: border-color var(--t-fast), transform var(--t-med) var(--ease), box-shadow var(--t-med);
}
.cil:hover { border-color: var(--gold-line); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.cil-icon {
  width: 46px; height: 46px; border-radius: var(--r-sm);
  background: var(--gold-glow); border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.cil-label { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm-400); }
.cil-value { font-size: 15px; font-weight: 600; color: var(--ink); margin-top: 3px; }

.contact-form-box {
  background: var(--ink); border-radius: var(--r-lg); padding: 52px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-form-box::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cf-title { font-family: var(--f-display); font-size: 28px; font-weight: 900; color: var(--paper); letter-spacing: -0.02em; margin-bottom: 6px; position: relative; }
.cf-sub { font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 36px; font-weight: 300; position: relative; }

.fg { margin-bottom: 20px; position: relative; }
.fg label {
  display: block; font-family: var(--f-mono); font-size: 9px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 8px;
}
.fc {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm); padding: 14px 18px;
  font-family: var(--f-body); font-size: 14px; color: var(--paper);
  outline: none; transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
}
.fc:focus {
  border-color: var(--gold);
  background: rgba(201,169,110,0.04);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.fc::placeholder { color: rgba(255,255,255,0.2); }
select.fc { cursor: pointer; }
select.fc option { background: #1a1816; }
textarea.fc { resize: vertical; min-height: 100px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  width: 100%; justify-content: center; margin-top: 8px;
  font-size: 14px; padding: 17px 32px;
  position: relative;
}
.success-toast {
  display: none; margin-top: 16px;
  background: rgba(201,169,110,0.1); border: 1px solid var(--gold-line);
  border-radius: var(--r-sm); padding: 16px 20px;
  font-size: 13px; color: var(--gold-light); text-align: center;
  font-family: var(--f-mono); letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════
   COMPARISON TABLE
═══════════════════════════════════════════════ */
.ctable {
  width: 100%; border-collapse: collapse;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.ctable th {
  padding: 22px 28px; text-align: center;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 500;
  background: var(--cream); border-bottom: 1px solid var(--ink-10);
  color: var(--warm-400);
}
.ctable th:first-child { text-align: left; }
.ctable th.hl-col { background: var(--ink); color: var(--gold); }
.ctable td {
  padding: 16px 28px; font-size: 13.5px;
  border-bottom: 1px solid var(--ink-10);
  text-align: center; color: var(--warm-600);
  background: var(--paper);
}
.ctable td:first-child { text-align: left; color: var(--ink); font-weight: 500; }
.ctable td.hl-col { background: rgba(12,11,9,0.03); }
.ctable tr:last-child td { border-bottom: none; }
.ctable tr:hover td { background: var(--cream); }
.ctable tr:hover td.hl-col { background: rgba(12,11,9,0.05); }
.yes { color: var(--gold); font-size: 16px; font-weight: 700; }
.no  { color: var(--warm-200); font-size: 16px; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: 80px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr repeat(3,1fr);
  gap: 60px; margin-bottom: 60px;
}
.footer-brand .nav-logo { color: var(--paper); margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 13px; color: var(--warm-600); line-height: 1.75; max-width: 260px; font-weight: 300; }
.footer-col h5 {
  font-family: var(--f-mono); font-size: 9px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: var(--warm-600); text-decoration: none; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); font-family: var(--f-mono); letter-spacing: 0.04em; }
.footer-copy span { color: var(--gold); }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.2); font-family: var(--f-mono); }

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ═══════════════════════════════════════════════
   GOLD LINE DECORATORS
═══════════════════════════════════════════════ */
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4; margin: 0;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .pkg-layout { grid-template-columns: 1fr; }
  .pkg-sticky { position: static; }
  .steps-grid { grid-template-columns: 1fr; gap: 60px; }
  .steps-visual { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pricing-wrap { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .pc-standard { padding: 48px 40px; }
}

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .cta-banner { margin: 0 20px; padding: 60px 40px; }
  .hero-number { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .wrap, .wrap-sm, .wrap-lg { padding: 0 20px; }
  .section { padding: 80px 0; }
  .section-lg { padding: 100px 0; }
  .hero-stats { gap: 0; flex-wrap: wrap; }
  .hstat { padding: 16px 0; border-right: none; border-bottom: 1px solid var(--ink-10); width: 50%; flex: none; }
  .hstat:nth-child(odd) { padding-right: 16px; }
  .hstat:last-child { border-bottom: none; }
  .navbar { padding: 0 20px; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .feat-grid { grid-template-columns: 1fr; }
  .hero-body { flex-direction: column; gap: 32px; }
  .hero-actions { align-items: flex-start; }
  .cta-banner { margin: 0; border-radius: var(--r-lg); padding: 48px 28px; }
  .contact-form-box { padding: 36px 28px; }
  .fg-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .hstat { width: 100%; border-right: none; }
  .cta-banner-btns { flex-direction: column; align-items: stretch; }
  .cta-banner-btns .btn { justify-content: center; }
}
