/* ============================================================
   ABSOLUT MAILING — Premium Theme v1
   Design: Dark luxury, editorial precision, gold accents
   ============================================================ */

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

:root {
  /* Core palette */
  --ink: #0a0a0b;
  --ink2: #0d0d10;
  --ink3: #13131a;
  --surface: #18181f;
  --surface2: #1e1e26;
  --surface3: #242430;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);

  /* Accent — gold */
  --gold: #c9a84c;
  --gold2: #e8c96a;
  --gold-dim: rgba(201,168,76,0.15);
  --gold-glow: rgba(201,168,76,0.08);

  /* Text */
  --text: #f0f0f6;
  --text2: #c8c8d8;
  --text3: #9090a8;
  --white: #ffffff;

  /* Semantic */
  --green: #3ecf8e;
  --green-dim: rgba(62,207,142,0.12);
  --blue: #4f8ef7;
  --blue-dim: rgba(79,142,247,0.12);
  --red: #f26b6b;

  /* Layout */
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  /* Shadows */
  --shadow: 0 32px 80px rgba(0,0,0,0.5);
  --shadow-sm: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-gold: 0 0 60px rgba(201,168,76,0.1);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Skip link ── */
.skip-link {
  position: absolute; left: -9999px; top: 10px;
  background: var(--gold); color: var(--ink);
  padding: 10px 16px; border-radius: var(--radius-sm); z-index: 999; font-weight: 600;
}
.skip-link:focus { left: 10px; }

/* ── Layout ── */
.container { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }

/* ── Announcement topbar ── */
.topbar-announce {
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
/* subtle shimmer sweep */
.topbar-announce::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%   { left: -100%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}
.topbar-announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 44px;
  padding: 0 24px;
  flex-wrap: wrap;
}
.topbar-msg {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.topbar-icon {
  font-size: 9px;
  color: rgba(10,10,11,0.35);
  flex-shrink: 0;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
  background: rgba(0,0,0,0.12);
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.topbar-link:hover {
  background: rgba(0,0,0,0.22);
  transform: translateY(-1px);
}

/* ── Brand logo ── */
.brand { display: flex; align-items: center; }
.brand-logo {
  height: 138px;
  width: auto;
  display: block;
  /* The logo text is white — looks perfect on dark header */
}
.footer-logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  opacity: 0.92;
}
.footer-logo:hover { opacity: 1; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(10,10,11,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex; align-items: center;
  justify-content: space-between;
  min-height: 80px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.brand-wordmark span { color: var(--gold); }

.site-nav {
  display: flex; align-items: center; gap: 6px;
}
.site-nav > a, .nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.site-nav > a:hover, .nav-link:hover {
  color: var(--white);
  background: var(--surface2);
}
.nav-item { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  min-width: 240px;
  display: none;
  z-index: 100;
}
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text2);
  transition: color 0.2s, background 0.2s;
}
.dropdown a:hover { background: var(--surface3); color: var(--white); }
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { display: block; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: var(--gold) !important;
  color: #0a0a0b !important;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--gold2) !important;
  color: #0a0a0b !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.nav-toggle {
  display: none;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 4px 24px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201,168,76,0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}
.btn-ghost {
  background: var(--surface2);
  color: var(--text);
}
.btn-ghost:hover { background: var(--surface3); color: var(--white); }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.1; letter-spacing: -0.03em; color: var(--white); }
h1 { font-family: var(--font-display); font-size: clamp(48px, 6vw, 86px); font-weight: 700; letter-spacing: -0.04em; }
h2 { font-family: var(--font-display); font-size: clamp(34px, 4vw, 58px); font-weight: 700; }
h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
h4 { font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text3); }
.lead { font-size: 19px; color: var(--text2); line-height: 1.75; max-width: 680px; }
.muted { color: var(--text2); }
.small { font-size: 13px; color: var(--text3); }
.center { text-align: center; margin-inline: auto; }
.max-700 { max-width: 700px; }
.max-860 { max-width: 860px; }

/* ── Label / Kicker ── */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.kicker::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background: var(--ink);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 10%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 90%, rgba(79,142,247,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong { font-size: 20px; color: var(--white); letter-spacing: -0.04em; }
.trust-item span { font-size: 12px; color: var(--text3); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.trust-divider { width: 1px; height: 40px; background: var(--border2); }

/* Hero Panel / App Preview */
.hero-visual { position: relative; }
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 6px;
  box-shadow: var(--shadow), var(--shadow-gold);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), transparent 40%, transparent 60%, rgba(79,142,247,0.1));
  z-index: -1;
}
.app-chrome {
  background: var(--ink2);
  border-radius: var(--radius);
  overflow: hidden;
}
.app-titlebar {
  background: var(--ink3);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border);
}
.app-dots { display: flex; gap: 7px; }
.app-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--surface3);
}
.app-dot:first-child { background: #f26b6b; }
.app-dot:nth-child(2) { background: #f59e0b; }
.app-dot:nth-child(3) { background: var(--green); }
.app-url {
  flex: 1;
  background: var(--surface);
  border-radius: 8px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.02em;
}
.app-body { padding: 20px; }
.app-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.app-metric {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.app-metric strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.app-metric span { font-size: 11px; color: var(--text3); font-weight: 500; margin-top: 4px; display: block; }
.app-metric.highlight strong { color: var(--gold); }

.app-chart {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 10px;
  height: 120px;
  position: relative;
  overflow: hidden;
}
.chart-label {
  font-size: 11px;
  color: var(--text3);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
}
.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--surface3);
}
.chart-bar.active { background: linear-gradient(180deg, var(--gold2), var(--gold)); }
.chart-bar.semi { background: linear-gradient(180deg, rgba(201,168,76,0.5), rgba(201,168,76,0.2)); }

.app-rows { display: grid; gap: 8px; }
.app-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 13px;
}
.app-row span { color: var(--text2); }
.app-row strong { font-weight: 600; }
.status-dot {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
}
.status-dot::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Floating badge */
.hero-badge {
  position: absolute;
  bottom: -16px; left: -20px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
}
.hero-badge-icon {
  width: 38px; height: 38px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 18px;
}
.hero-badge p { font-size: 12px; color: var(--text3); margin: 0; }
.hero-badge strong { font-size: 14px; color: var(--white); }

/* ── Section ── */
.section { padding: 96px 0; }
.section-alt { background: var(--ink2); }
.section-border-top { border-top: 1px solid var(--border); }

/* ── Divider ── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2) 20%, var(--border2) 80%, transparent);
  margin: 0;
}

/* ── Feature Grid ── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, var(--gold-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
  display: grid; place-items: center;
  margin-bottom: 20px;
  font-size: 20px;
  position: relative;
  z-index: 1;
}
.feature-card h3 { font-size: 18px; margin-bottom: 10px; position: relative; z-index: 1; }
.feature-card p { color: var(--text2); font-size: 14px; line-height: 1.7; position: relative; z-index: 1; }

/* ── Split section ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.feature-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--text2);
  font-size: 15px;
  line-height: 1.6;
}
.feature-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid rgba(62,207,142,0.3);
  display: grid; place-items: center;
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
  margin-top: 3px;
}

/* Steps */
.steps { display: grid; gap: 0; }
.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.3);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 2px;
}
.step h3 { font-size: 16px; margin-bottom: 6px; }
.step p { color: var(--text2); font-size: 14px; }

/* ── Pricing ── */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: stretch;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.plan:hover { border-color: var(--border2); transform: translateY(-4px); }
.plan.popular {
  background: var(--surface2);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-8px);
}
.plan.popular:hover { transform: translateY(-12px); }
.plan.popular::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--surface3);
  color: var(--text2);
  margin-bottom: 16px;
}
.plan.popular .plan-badge {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
}
.plan h3 { font-size: 20px; margin-bottom: 6px; }
.plan .plan-desc { font-size: 13px; color: var(--text3); margin-bottom: 20px; }
.plan-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price small {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text3);
  font-weight: 400;
  letter-spacing: 0;
}
.plan-allowances {
  background: var(--surface3);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin: 18px 0;
  display: grid;
  gap: 8px;
}
.plan-allowances span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 6px;
}
.plan-allowances span::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.plan ul { list-style: none; margin: 0 0 20px; display: grid; gap: 8px; }
.plan li {
  font-size: 13px;
  color: var(--text2);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}
.plan li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ── Comparison Table ── */
.table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: auto;
  box-shadow: var(--shadow-sm);
}
table { width: 100%; border-collapse: collapse; min-width: 800px; }
th, td { padding: 18px 20px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
th {
  background: var(--surface2);
  color: var(--text3);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
tr:last-child td { border-bottom: none; }
td { color: var(--text2); font-size: 14px; }
.yes { color: var(--green); font-weight: 700; }
.no { color: var(--text3); }
.warn { color: var(--gold); font-weight: 700; }
.compare-price { color: var(--white); font-weight: 700; }

/* ── CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, var(--surface2), var(--surface3));
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(201,168,76,0.07), transparent),
    radial-gradient(ellipse 40% 60% at 0% 50%, rgba(79,142,247,0.05), transparent);
  pointer-events: none;
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { color: var(--text2); max-width: 520px; }
.cta-band-actions { display: flex; gap: 12px; flex-direction: column; align-items: flex-end; }

/* ── Content pages ── */
.page-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
  background: var(--ink2);
}
.breadcrumbs { font-size: 13px; color: var(--text3); margin-bottom: 16px; }
.breadcrumbs a { color: var(--gold); font-weight: 600; }
.content { max-width: 900px; }
.content h2 { font-size: 32px; margin-top: 48px; margin-bottom: 16px; }
.content p, .content li { color: var(--text2); line-height: 1.8; margin-bottom: 14px; }
.notice {
  background: var(--blue-dim);
  border: 1px solid rgba(79,142,247,0.2);
  border-radius: var(--radius);
  padding: 18px 22px;
  color: var(--text);
  margin: 20px 0;
}
.safe-box {
  background: var(--green-dim);
  border: 1px solid rgba(62,207,142,0.2);
  border-radius: var(--radius);
  padding: 18px 22px;
  color: var(--text);
}

/* ── Contact Form ── */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label {
  display: block;
  color: var(--text2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
input, select, textarea {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text3); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
textarea { min-height: 140px; resize: vertical; }
.full { grid-column: 1 / -1; }
.hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

/* ── Highlight cards ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.card.highlight {
  background: var(--surface2);
  border-color: rgba(201,168,76,0.2);
}
.card p { color: var(--text2); }

/* ── Stat row ── */
.stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 48px 0;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 1;
}
.stat span { font-size: 13px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-top: 6px; display: block; }
.stat-divider { width: 1px; height: 60px; background: var(--border2); }

/* ── Logo strip ── */
.logo-strip { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: var(--surface2);
  color: var(--text2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── Newsletter box ── */
.newsletter-box {
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.newsletter-box h2 { font-size: 30px; margin-bottom: 8px; }
.newsletter-box p { color: var(--text2); }

/* ── Footer ── */
.site-footer {
  background: var(--ink2);
  color: var(--text2);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(5, 1fr);
  gap: 32px;
  padding: 64px 0 48px;
}
.footer-brand-txt {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer-brand-txt span { color: var(--gold); }
.footer-brand p { color: var(--text3); font-size: 13px; line-height: 1.7; max-width: 280px; margin-top: 16px; }
.footer-legal { font-size: 11px; color: var(--text4, #3a3a50); line-height: 1.7; max-width: 280px; margin-top: 12px; }
.site-footer h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text3);
  font-weight: 700;
  margin-bottom: 16px;
}
.site-footer a {
  display: block;
  color: var(--text3);
  font-size: 13px;
  margin: 0 0 10px;
  transition: color 0.2s;
}
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text3);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero-grid, .split, .cta-band, .newsletter-box { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-row { gap: 40px; }
  .hero-badge { display: none; }
  .plan.popular { transform: none; }
}
@media (max-width: 840px) {
  .topbar { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 80px; left: 16px; right: 16px;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .site-nav.open { display: flex; }
  .nav-item .dropdown {
    position: static; transform: none;
    box-shadow: none; border: none;
    padding: 4px 0 4px 16px;
    min-width: 0;
    background: transparent;
  }
  .site-nav > a, .nav-link { padding: 12px 14px; border-radius: var(--radius-sm); }
  .grid-2, .grid-3, .form-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 64px 0; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
}
@media (max-width: 600px) {
  .container { width: min(100% - 32px, 1240px); }
  .plan-grid, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-band { padding: 36px 28px; }
  .cta-band-actions { align-items: stretch; }
  .newsletter-box { padding: 32px 28px; }
  .form-card { padding: 28px 24px; }
  .stat-divider { display: none; }
  .stat-row { gap: 28px; }
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
