/* ==========================================================================
   AAsset Protect & Retrieve - Master Stylesheet
   Corporate / Security / Premium Tracker Brand
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand palette */
  --navy-900: #050B17;
  --navy-800: #0A1628;
  --navy-700: #0F1F38;
  --navy-600: #15294A;
  --steel-700: #1F2937;
  --steel-600: #2D3748;
  --steel-500: #4A5568;
  --steel-400: #718096;
  --steel-300: #A0AEC0;
  --steel-200: #CBD5E0;
  --steel-100: #E2E8F0;
  --steel-50:  #F7FAFC;

  --gold-700: #9C7C2E;
  --gold-600: #B89642;
  --gold-500: #C9A961;
  --gold-400: #D9BD7C;
  --gold-300: #E8D2A0;
  --gold-100: #F5EBD3;

  --red-700: #B0181D;
  --red-600: #E31E24;
  --red-500: #F03A40;

  --green-600: #047857;
  --green-500: #10B981;

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  /* Layout */
  --container: 1240px;
  --container-narrow: 980px;
  --radius-sm: 3px;
  --radius: 6px;
  --radius-lg: 10px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 12px rgba(5, 11, 23, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(5, 11, 23, 0.25);
  --shadow-gold: 0 8px 24px rgba(201, 169, 97, 0.18);
  --shadow-red: 0 8px 24px rgba(227, 30, 36, 0.18);

  /* Surfaces */
  --surface: #FFFFFF;
  --surface-alt: #F7FAFC;
  --ink: #0A1628;
  --ink-soft: #2D3748;
  --ink-muted: #718096;
  --line: #E2E8F0;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: 0; background: 0; font: inherit; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Containers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--container-narrow); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); }
h4 { font-size: 1.15rem; }
p { color: var(--ink-soft); }
.lede { font-size: 1.15rem; color: var(--ink-soft); line-height: 1.65; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--gold-500);
}
.eyebrow--light { color: var(--gold-400); }
.eyebrow--light::before { background: var(--gold-400); }

.section-title { margin-bottom: 16px; }
.section-sub { color: var(--ink-muted); font-size: 1.05rem; max-width: 640px; }
.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: all 200ms ease;
  cursor: pointer; border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }
.btn--primary:hover { background: var(--gold-400); border-color: var(--gold-400); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn--secondary { background: transparent; color: var(--steel-100); border-color: rgba(255,255,255,0.25); }
.btn--secondary:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }
.btn--dark { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.btn--dark:hover { background: var(--navy-700); border-color: var(--navy-700); }
.btn--red { background: var(--red-600); color: #fff; border-color: var(--red-600); }
.btn--red:hover { background: var(--red-700); border-color: var(--red-700); box-shadow: var(--shadow-red); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn .icon { width: 16px; height: 16px; }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--navy-900); color: var(--steel-200);
  font-size: 0.825rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 24px; max-width: var(--container); margin: 0 auto;
  gap: 16px;
}
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar a { color: var(--steel-200); display: inline-flex; align-items: center; gap: 6px; transition: color 150ms; }
.topbar a:hover { color: var(--gold-400); }
.topbar .icon { width: 14px; height: 14px; }
.topbar__pulse {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green-500); font-weight: 600;
}
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-500); position: relative; }
.pulse-dot::after { content:''; position: absolute; inset: 0; border-radius: 50%; background: var(--green-500); animation: pulse 2s infinite; }
@keyframes pulse { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(2.6);opacity:0} }

/* ---------- Header / Navigation ---------- */
.site-header {
  background: var(--navy-800);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: saturate(180%) blur(8px);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; max-width: var(--container); margin: 0 auto;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 4px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  display: grid; place-items: center;
  color: var(--navy-900); font-weight: 800; font-size: 1.1rem;
  letter-spacing: -0.04em; box-shadow: 0 0 0 1px rgba(201, 169, 97, 0.3);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-weight: 800; font-size: 0.95rem; letter-spacing: 0.02em; }
.brand__tag { font-size: 0.7rem; color: var(--gold-400); letter-spacing: 0.15em; text-transform: uppercase; }

.nav__menu { display: flex; gap: 28px; align-items: center; }
.nav__menu a {
  color: var(--steel-200); font-size: 0.92rem; font-weight: 500;
  transition: color 150ms; position: relative; padding: 8px 0;
}
.nav__menu a:hover { color: #fff; }
.nav__menu a.active { color: var(--gold-400); }
.nav__menu a.active::after { content:''; position: absolute; bottom:0; left:0; right:0; height:2px; background: var(--gold-500); }

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

.nav__toggle { display: none; padding: 10px; color: #fff; }
.nav__toggle svg { width: 22px; height: 22px; }

.mobile-menu { display: none; background: var(--navy-900); border-top: 1px solid rgba(255,255,255,0.06); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 14px 24px; color: var(--steel-100); border-bottom: 1px solid rgba(255,255,255,0.04); }
.mobile-menu a:hover { background: var(--navy-800); }

/* ---------- Hero ---------- */
.hero {
  background: var(--navy-800);
  color: #fff;
  position: relative; overflow: hidden;
  padding: 96px 0 120px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(201, 169, 97, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(227, 30, 36, 0.06), transparent 60%);
  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: 60px 60px;
  mask-image: radial-gradient(ellipse 100% 60% at 50% 50%, black, transparent 80%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.hero__title { color: #fff; margin: 18px 0 24px; }
.hero__title em { color: var(--gold-400); font-style: normal; }
.hero__lede { color: var(--steel-200); font-size: 1.15rem; max-width: 540px; margin-bottom: 36px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__trust { display: flex; gap: 32px; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: 10px; color: var(--steel-200); font-size: 0.9rem; }
.hero__trust-item .icon { width: 18px; height: 18px; color: var(--gold-500); }

.hero__panel {
  position: relative;
  background: linear-gradient(180deg, var(--navy-700), var(--navy-900));
  border: 1px solid rgba(201, 169, 97, 0.18);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}
.hero__panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 20px;
}
.hero__panel-title { font-size: 0.85rem; color: var(--steel-300); letter-spacing: 0.12em; text-transform: uppercase; }
.hero__panel-status { display: inline-flex; align-items: center; gap: 8px; color: var(--green-500); font-size: 0.8rem; font-weight: 600; }
.hero__map {
  height: 260px; border-radius: 8px;
  background:
    radial-gradient(circle at 30% 40%, rgba(201, 169, 97, 0.18), transparent 30%),
    radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.15), transparent 30%),
    linear-gradient(135deg, var(--navy-600), var(--navy-800));
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.hero__map-dot {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: var(--green-500); box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25);
  top: 38%; left: 28%;
}
.hero__map-dot::after {
  content:''; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid var(--green-500); animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring { 0%{transform:scale(.6);opacity:1} 100%{transform:scale(2.4);opacity:0} }
.hero__map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.hero__panel-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.hero__stat { padding: 14px; background: rgba(255,255,255,0.025); border-radius: 6px; border: 1px solid rgba(255,255,255,0.04); }
.hero__stat-label { font-size: 0.7rem; color: var(--steel-400); letter-spacing: 0.1em; text-transform: uppercase; }
.hero__stat-value { font-size: 1.2rem; color: #fff; font-weight: 700; margin-top: 4px; }
.hero__stat-value--gold { color: var(--gold-400); }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--navy-900); padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.trust-bar__inner { display: flex; align-items: center; justify-content: space-around; gap: 32px; flex-wrap: wrap; }
.trust-bar__label { font-size: 0.75rem; color: var(--steel-400); letter-spacing: 0.18em; text-transform: uppercase; }
.trust-bar__items { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; }
.trust-bar__item { color: var(--steel-300); font-weight: 600; font-size: 0.9rem; opacity: 0.7; }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
section.sec-tight { padding: 64px 0; }
.section--dark { background: var(--navy-800); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: var(--steel-200); }
.section--dark .section-sub { color: var(--steel-300); }
.section--alt { background: var(--surface-alt); }
.section--gradient {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: #fff;
}

/* ---------- Stats strip ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stats--dark { border-color: rgba(255,255,255,0.06); }
.stat {
  padding: 40px 24px; text-align: center;
  border-right: 1px solid var(--line);
}
.stats--dark .stat { border-color: rgba(255,255,255,0.06); }
.stat:last-child { border-right: 0; }
.stat__num { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.04em; color: var(--gold-600); line-height: 1; }
.stats--dark .stat__num { color: var(--gold-400); }
.stat__label { margin-top: 10px; font-size: 0.85rem; color: var(--ink-muted); letter-spacing: 0.04em; }
.stats--dark .stat__label { color: var(--steel-300); }

/* ---------- Feature grid ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 250ms ease;
  position: relative;
}
.section--dark .feature { background: rgba(255,255,255,0.025); border-color: rgba(255,255,255,0.06); }
.feature:hover { border-color: var(--gold-500); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.section--dark .feature:hover { border-color: var(--gold-500); }
.feature__icon {
  width: 48px; height: 48px; border-radius: 8px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--gold-400);
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { margin-bottom: 12px; }
.feature p { font-size: 0.95rem; line-height: 1.65; }

/* ---------- Process / how it works ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  padding: 28px; position: relative;
  border-left: 2px solid var(--gold-500);
  background: rgba(255,255,255,0.02);
}
.step__num {
  font-family: var(--font-mono); font-size: 0.8rem;
  color: var(--gold-400); letter-spacing: 0.2em;
  margin-bottom: 14px;
}
.step h3 { color: #fff; margin-bottom: 10px; font-size: 1.2rem; }
.step p { color: var(--steel-300); font-size: 0.95rem; }

/* ---------- Comparison ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare__col {
  padding: 36px; border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: var(--surface);
}
.compare__col--us { background: var(--navy-800); border-color: var(--gold-600); color: #fff; position: relative; overflow: hidden; }
.compare__col--us::before {
  content: 'PREMIUM'; position: absolute; top: 20px; right: 20px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  background: var(--gold-500); color: var(--navy-900);
  padding: 4px 10px; border-radius: 3px;
}
.compare__col h3 { margin-bottom: 20px; }
.compare__col--us h3 { color: #fff; }
.compare__list li {
  padding: 12px 0 12px 32px; position: relative;
  border-bottom: 1px solid var(--line); font-size: 0.95rem;
}
.compare__col--us .compare__list li { border-color: rgba(255,255,255,0.08); color: var(--steel-200); }
.compare__list li::before {
  position: absolute; left: 0; top: 14px; width: 18px; height: 18px;
  border-radius: 50%; display: grid; place-items: center;
  font-size: 0.7rem; font-weight: 700;
}
.compare__list--cross li::before { content: '✕'; background: rgba(227, 30, 36, 0.12); color: var(--red-600); }
.compare__list--check li::before { content: '✓'; background: var(--gold-500); color: var(--navy-900); }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px;
  display: flex; flex-direction: column;
  transition: all 250ms ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan--featured {
  background: var(--navy-800); color: #fff;
  border-color: var(--gold-500);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
}
.plan--featured::before {
  content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  background: var(--gold-500); color: var(--navy-900);
  padding: 6px 16px; border-radius: 4px;
}
.plan__name { font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 10px; }
.plan--featured .plan__name { color: var(--gold-400); }
.plan__title { font-size: 1.6rem; margin-bottom: 18px; }
.plan--featured .plan__title { color: #fff; }
.plan__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.plan__price-num { font-size: 3rem; font-weight: 800; letter-spacing: -0.04em; }
.plan__price-curr { font-size: 1.4rem; font-weight: 600; opacity: 0.7; }
.plan__price-suffix { font-size: 0.95rem; color: var(--ink-muted); }
.plan--featured .plan__price-suffix { color: var(--steel-300); }
.plan__strike { color: var(--ink-muted); text-decoration: line-through; font-size: 1rem; margin-bottom: 18px; }
.plan--featured .plan__strike { color: var(--steel-400); }
.plan__features { margin: 28px 0; flex-grow: 1; }
.plan__features li { padding: 10px 0 10px 28px; position: relative; font-size: 0.95rem; }
.plan__features li::before {
  content: '✓'; position: absolute; left: 0; top: 10px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-500); color: var(--navy-900);
  display: grid; place-items: center; font-size: 0.7rem; font-weight: 700;
}
.plan--featured .plan__features li { color: var(--steel-200); }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  padding: 32px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); position: relative;
}
.testimonial__stars { color: var(--gold-500); margin-bottom: 16px; font-size: 1rem; letter-spacing: 2px; }
.testimonial__quote { font-size: 1rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 24px; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.testimonial__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--gold-400);
  display: grid; place-items: center; font-weight: 700; font-size: 0.95rem;
}
.testimonial__name { font-weight: 600; font-size: 0.95rem; }
.testimonial__meta { font-size: 0.825rem; color: var(--ink-muted); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: #fff; padding: 72px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201, 169, 97, 0.12), transparent 70%);
}
.cta-banner__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { font-size: 2.2rem; max-width: 560px; }
.cta-banner h2 em { color: var(--gold-400); font-style: normal; }
.cta-banner__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900); color: var(--steel-300);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-grid h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 20px; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--steel-300); transition: color 150ms; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold-400); }
.footer__about p { color: var(--steel-400); font-size: 0.92rem; margin-top: 16px; max-width: 360px; }
.footer__bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.825rem; color: var(--steel-400);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a:hover { color: var(--gold-400); }

/* ---------- Forms / Auth ---------- */
.auth-shell {
  min-height: 100vh; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  padding: 32px 16px; color: #fff;
}
.auth-card {
  width: 100%; max-width: 460px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 30px 60px -10px rgba(0,0,0,0.5);
}
.auth-card .brand { justify-content: center; margin-bottom: 32px; color: #fff; }
.auth-card h1 { font-size: 1.6rem; text-align: center; color: #fff; margin-bottom: 6px; }
.auth-card .lede { text-align: center; color: var(--steel-300); font-size: 0.95rem; margin-bottom: 24px; }
.auth-card .form-group { margin-bottom: 16px; }
.auth-card label { color: var(--steel-200); }
.auth-card input { background: rgba(0,0,0,0.2); border-color: rgba(255,255,255,0.08); color: #fff; }
.auth-card input::placeholder { color: var(--steel-500); }
.auth-card input:focus { border-color: var(--gold-500); }
.auth-card .auth-foot {
  text-align: center; margin-top: 20px; font-size: 0.9rem; color: var(--steel-300);
}
.auth-card .auth-foot a { color: var(--gold-400); font-weight: 600; }

.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 8px; letter-spacing: 0.02em; }
input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input[type="number"],
input[type="search"], input[type="date"], select, textarea {
  width: 100%; padding: 12px 14px;
  font-size: 0.95rem;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 150ms, box-shadow 150ms;
}
input:focus, select:focus, textarea:focus {
  outline: 0; border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}
.help { font-size: 0.825rem; color: var(--ink-muted); margin-top: 6px; }
.error-msg { background: rgba(227, 30, 36, 0.08); color: var(--red-700); border: 1px solid rgba(227, 30, 36, 0.2); padding: 12px 14px; border-radius: var(--radius); margin-bottom: 16px; font-size: 0.9rem; }
.success-msg { background: rgba(16, 185, 129, 0.08); color: var(--green-600); border: 1px solid rgba(16, 185, 129, 0.2); padding: 12px 14px; border-radius: var(--radius); margin-bottom: 16px; font-size: 0.9rem; }

/* ---------- Portal / Dashboard layout ---------- */
.app-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; background: var(--surface-alt); }
.sidebar { background: var(--navy-900); color: var(--steel-200); padding: 24px 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.sidebar .brand { padding: 0 24px 24px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 16px; color: #fff; }
.sidebar__nav { display: flex; flex-direction: column; padding: 0 12px; }
.sidebar__nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; margin-bottom: 4px;
  color: var(--steel-300); font-size: 0.92rem; font-weight: 500;
  border-radius: var(--radius); transition: all 150ms;
}
.sidebar__nav a:hover { background: rgba(255,255,255,0.04); color: #fff; }
.sidebar__nav a.active { background: rgba(201, 169, 97, 0.12); color: var(--gold-400); }
.sidebar__nav .icon { width: 18px; height: 18px; flex-shrink: 0; }
.sidebar__section { font-size: 0.7rem; color: var(--steel-500); letter-spacing: 0.18em; text-transform: uppercase; padding: 16px 14px 8px; }
.sidebar__user {
  margin-top: auto; padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 12px;
}
.sidebar__user-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--navy-900); display: grid; place-items: center; font-weight: 700;
}
.sidebar__user-name { color: #fff; font-size: 0.9rem; font-weight: 600; }
.sidebar__user-role { color: var(--steel-400); font-size: 0.78rem; }

.app-main { padding: 32px 40px; }
.page-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; gap: 16px; flex-wrap: wrap; }
.page-head h1 { font-size: 1.75rem; }

/* Cards / panels */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; gap: 12px; flex-wrap: wrap; }
.card-head h2, .card-head h3 { font-size: 1.15rem; }

/* KPI cards */
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.kpi {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 22px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative; overflow: hidden;
}
.kpi__label { font-size: 0.78rem; color: var(--ink-muted); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.kpi__value { font-size: 1.85rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.kpi__delta { font-size: 0.825rem; font-weight: 600; }
.kpi__delta--up { color: var(--green-600); }
.kpi__delta--down { color: var(--red-600); }
.kpi__icon {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(201, 169, 97, 0.1); color: var(--gold-600);
  display: grid; place-items: center;
}
.kpi__icon svg { width: 18px; height: 18px; }

/* Tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 18px; text-align: left; font-size: 0.92rem; border-bottom: 1px solid var(--line); }
th { background: var(--surface-alt); font-weight: 600; color: var(--ink-soft); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; }
tbody tr:hover { background: var(--surface-alt); }
tbody tr:last-child td { border-bottom: 0; }

/* Badges */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 600;
}
.badge--success { background: rgba(16, 185, 129, 0.1); color: var(--green-600); }
.badge--warn { background: rgba(245, 158, 11, 0.12); color: #B45309; }
.badge--danger { background: rgba(227, 30, 36, 0.1); color: var(--red-700); }
.badge--info { background: rgba(15, 31, 56, 0.08); color: var(--navy-700); }
.badge--gold { background: rgba(201, 169, 97, 0.12); color: var(--gold-700); }
.badge--neutral { background: var(--surface-alt); color: var(--ink-muted); border: 1px solid var(--line); }

/* Pricing on portal pay page */
.pay-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.pay-option {
  padding: 20px; border: 2px solid var(--line); border-radius: var(--radius-lg);
  background: var(--surface); cursor: pointer; transition: all 200ms;
  display: flex; align-items: center; gap: 14px;
}
.pay-option:hover { border-color: var(--gold-500); }
.pay-option.active { border-color: var(--gold-500); background: rgba(201, 169, 97, 0.04); box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1); }
.pay-option__logo {
  width: 48px; height: 48px; border-radius: 8px;
  background: var(--navy-800); display: grid; place-items: center; color: #fff;
  font-weight: 800; font-size: 0.85rem; letter-spacing: 0.04em;
  flex-shrink: 0;
}
.pay-option__name { font-weight: 600; font-size: 0.98rem; }
.pay-option__desc { font-size: 0.85rem; color: var(--ink-muted); margin-top: 2px; }

/* Utility */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
.text-muted { color: var(--ink-muted); }
.text-gold { color: var(--gold-600); }
.text-red  { color: var(--red-600); }
.text-green { color: var(--green-600); }
.text-sm { font-size: 0.85rem; }
.text-xs { font-size: 0.75rem; }
.fw-600 { font-weight: 600; } .fw-700 { font-weight: 700; }
.hide-mobile { display: initial; }
.show-mobile { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .features, .pricing, .testimonials { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stats--dark .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .app-shell { grid-template-columns: 1fr; }
  .sidebar { position: static; height: auto; }
}
@media (max-width: 720px) {
  section { padding: 64px 0; }
  .hero { padding: 64px 0 80px; }
  .nav__menu { display: none; }
  .nav__cta .btn { display: none; }
  .nav__cta .btn--primary { display: inline-flex; padding: 10px 18px; font-size: 0.85rem; }
  .nav__toggle { display: flex; }
  .features, .pricing, .testimonials, .compare, .process { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stats--dark .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .kpi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pay-options { grid-template-columns: 1fr; }
  .topbar__inner { font-size: 0.75rem; gap: 12px; }
  .topbar__left { display: none; }
  .hide-mobile { display: none; }
  .show-mobile { display: initial; }
  .app-main { padding: 20px; }
  .auth-card { padding: 28px 22px; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   PAGE HERO (for internal pages)
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  color: #fff;
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(at 25% 30%, rgba(201,169,97,0.10) 0%, transparent 45%),
    radial-gradient(at 75% 70%, rgba(15,31,56,0.6) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.4rem); margin: 14px 0 18px; }
.page-hero h1 em { color: var(--gold-500); font-style: normal; }
.page-hero--lead { padding: 80px 0 50px; }

/* ==========================================================================
   LEAD FORM PAGE
   ========================================================================== */
.lead-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.lead-grid__form {
  background: #fff;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.lead-grid__aside { display: flex; flex-direction: column; gap: 20px; }
.aside-card {
  background: #fff;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.aside-card h3 { font-size: 1.1rem; margin-bottom: 16px; }
.aside-card h4 { color: var(--gold-700); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 12px; }
.aside-card--accent {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: #fff;
  border-color: var(--gold-700);
}
.aside-card--accent h4 { color: var(--gold-400); }
.aside-card--accent p { color: var(--steel-200); font-size: 0.9rem; }
.aside-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.aside-price__strike { color: var(--steel-400); text-decoration: line-through; font-size: 1.2rem; }
.aside-price__now { color: var(--gold-400); font-size: 2.4rem; font-weight: 800; letter-spacing: -0.02em; }
.thanks-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--shadow);
  margin: 40px 0;
}
.thanks-card__icon {
  display: inline-flex;
  width: 72px; height: 72px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--green-500);
  margin-bottom: 20px;
}
.thanks-card__icon svg { width: 36px; height: 36px; }
.thanks-card h2 { margin-bottom: 12px; }
.thanks-card__actions { margin-top: 24px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form { display: flex; flex-direction: column; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.form-field input,
.form-field select,
.form-field textarea,
.form input, .form select, .form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}
.form-field textarea { resize: vertical; min-height: 100px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-top: 30px;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: #fff;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-700); margin-bottom: 12px; }
.contact-card__line { margin-bottom: 10px; line-height: 1.4; }
.contact-card__line a { color: var(--ink); font-weight: 600; }
.contact-card__line a:hover { color: var(--gold-700); }
.contact-card--accent {
  background: linear-gradient(135deg, var(--red-700), #8B1218);
  color: #fff;
  border-color: var(--red-700);
}
.contact-card--accent h3 { color: rgba(255,255,255,0.9); }
.contact-card--accent p { color: rgba(255,255,255,0.85); margin-bottom: 14px; font-size: 0.9rem; }
.contact-form {
  background: #fff;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ==========================================================================
   COVERAGE / AREAS
   ========================================================================== */
.coverage-region { margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.coverage-region:last-child { border-bottom: 0; }
.coverage-region h3 {
  color: var(--gold-700);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.coverage-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 8px;
}
.coverage-list a {
  display: block;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 0.92rem;
  transition: all .15s;
}
.coverage-list a:hover {
  border-color: var(--gold-500);
  color: var(--gold-700);
  transform: translateX(2px);
}

/* ==========================================================================
   HOW IT WORKS (step grid)
   ========================================================================== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 30px;
}
.how-step {
  background: #fff;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.how-step__num {
  display: inline-block;
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-700);
  background: var(--gold-100);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.how-step h2, .how-step h3 { margin-bottom: 12px; }
.how-step ul { margin-top: 14px; }

/* ==========================================================================
   TIMELINE
   ========================================================================== */
.timeline {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 12px 28px;
  margin-top: 30px;
  box-shadow: var(--shadow-sm);
}
.timeline__row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.timeline__row:last-child { border-bottom: 0; }
.timeline__time {
  font-family: var(--font-mono, monospace);
  font-weight: 700;
  color: var(--gold-700);
  font-size: 0.9rem;
}
.timeline__event { color: var(--ink); }

/* ==========================================================================
   INCLUDES GRID
   ========================================================================== */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.includes-item {
  background: #fff;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.92rem;
  line-height: 1.5;
  border-left: 3px solid var(--gold-500);
}
.includes-item strong { color: var(--ink); display: inline-block; margin-bottom: 4px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { display: flex; flex-direction: column; gap: 0; margin-top: 24px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 8px;
  transition: box-shadow .15s;
}
.faq__item[open] { box-shadow: var(--shadow); border-color: var(--gold-300); }
.faq__item summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 50px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold-700);
  font-weight: 400;
  transition: transform .2s;
}
.faq__item[open] summary::after { content: '−'; }
.faq__item p { padding: 0 22px 20px; color: var(--ink-soft); line-height: 1.7; }

/* ==========================================================================
   CHECK LIST
   ========================================================================== */
.check-list { display: flex; flex-direction: column; gap: 8px; margin: 12px 0; }
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 18px; height: 18px;
  background: rgba(201, 169, 97, 0.15);
  border-radius: 4px;
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 5px; top: 9px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--gold-700);
  border-bottom: 2px solid var(--gold-700);
  transform: rotate(-45deg);
}

/* ==========================================================================
   TESTIMONIALS GRID variant
   ========================================================================== */
.testimonials--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 24px;
}

/* ==========================================================================
   PLAN BADGE
   ========================================================================== */
.plan__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
}
.plan { position: relative; }

/* ==========================================================================
   FEATURES 3-COL variant
   ========================================================================== */
.features--3col { grid-template-columns: repeat(3, 1fr); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .lead-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .features--3col { grid-template-columns: 1fr; }
  .page-hero { padding: 60px 0 50px; }
  .lead-grid__form, .contact-form, .thanks-card { padding: 24px 20px; }
  .timeline__row { grid-template-columns: 80px 1fr; gap: 16px; }
}
