:root {
  --brand-gold: #FFC629;
  --gold-bright: #FFD23F;
  --gold-amber: #FFC83D;
  --gold-hover: #FFDD66;
  --gold-gradient: linear-gradient(135deg, #FFD23F, #C9960E);
  --gold-glow: 0 0 20px rgba(255,198,41,0.25);

  --bg-darkest: #0A0A0D;
  --bg-charcoal: #16171C;
  --bg-medium: #1E2024;
  --bg-elevated: #1B1C21;

  --border-slate: #30333A;
  --border-light: #3A3D45;

  --text-white: #FFFFFF;
  --text-body: #C7C9D1;
  --text-muted: #83858F;
  --text-dim: #5A5C66;
  --link-gold: #FFC629;

  --success-green: #7ED957;
  --warning-orange: #F59E0B;
  --danger-red: #FF4D4F;
  --info-blue: #4B8CFF;
  --rare-purple: #9B6BFF;
  --rare-pink: #E066FF;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-xxl: 6rem;

  --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Fira Mono', 'Roboto Mono', monospace;

  --max-width: 1180px;
  --header-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background: var(--bg-darkest);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--link-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-hover);
}

a:focus-visible,
button:focus-visible,
details:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  color: var(--text-white);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: var(--space-md); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); margin-bottom: var(--space-sm); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-bottom: var(--space-sm); }
h4 { font-size: 1.1rem; margin-bottom: var(--space-xs); }

p {
  margin-bottom: var(--space-sm);
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* --- HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(22, 23, 28, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-slate);
  height: var(--header-h);
}

.hdr-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--space-sm);
}

.hdr-logo img {
  height: 34px;
  width: auto;
}

.hdr-nav {
  margin-left: auto;
}

.hdr-nav-list {
  display: flex;
  gap: var(--space-md);
}

.hdr-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.2s ease;
}

.hdr-link:hover,
.hdr-link.active {
  color: var(--text-white);
}

.hdr-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-gold);
  border-radius: 1px;
}

.btn-cta-sm {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.2rem;
  background: var(--gold-gradient);
  color: var(--bg-darkest);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  margin-left: var(--space-sm);
}

.btn-cta-sm:hover {
  box-shadow: var(--gold-glow);
  color: var(--bg-darkest);
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- BREADCRUMB --- */
.breadcrumb-bar {
  background: var(--bg-charcoal);
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--border-slate);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '›';
  margin-right: 0.4rem;
  color: var(--text-dim);
}

.breadcrumb-item a {
  color: var(--text-muted);
}

.breadcrumb-item a:hover {
  color: var(--link-gold);
}

.breadcrumb-item span[aria-current] {
  color: var(--text-body);
}

/* --- HERO --- */
.hero-section {
  padding: var(--space-xl) 0 var(--space-xxl);
  background: linear-gradient(180deg, var(--bg-charcoal) 0%, var(--bg-darkest) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: var(--space-lg);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-compact {
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
}

.hero-compact p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-lg);
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  background: var(--gold-gradient);
  color: var(--bg-darkest);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.15s ease;
  box-shadow: 0 4px 16px rgba(255,198,41,0.18);
}

.btn-primary:hover {
  box-shadow: var(--gold-glow);
  transform: translateY(-2px);
  color: var(--bg-darkest);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.6rem;
  background: var(--gold-gradient);
  color: var(--bg-darkest);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn-gold:hover {
  box-shadow: var(--gold-glow);
  color: var(--bg-darkest);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.8rem;
  background: transparent;
  color: var(--brand-gold);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--brand-gold);
  border-radius: var(--radius-md);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  background: var(--brand-gold);
  color: var(--bg-darkest);
}

.btn-table {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  background: var(--gold-gradient);
  color: var(--bg-darkest);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  transition: box-shadow 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
}

.btn-table:hover {
  box-shadow: var(--gold-glow);
  color: var(--bg-darkest);
  transform: translateY(-1px);
}

/* --- BANNER --- */
.banner-section {
  padding: var(--space-md) 0;
}

.banner-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  background: linear-gradient(135deg, rgba(255,198,41,0.1), rgba(255,198,41,0.04));
  border: 1px solid rgba(255,198,41,0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
}

.banner-badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: var(--brand-gold);
  color: var(--bg-darkest);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}

.banner-text p {
  color: var(--text-body);
  margin: 0;
  font-size: 0.95rem;
}

.banner-text strong {
  color: var(--text-white);
  font-family: var(--font-mono);
}

/* --- CONTENT SECTIONS --- */
.content-section {
  padding: var(--space-xl) 0;
}

.section-alt {
  background: var(--bg-charcoal);
}

.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.two-col-layout.reverse .col-visual {
  order: -1;
}

.col-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: var(--space-sm);
}

/* --- FEATURE GRID --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.feature-card {
  background: var(--bg-medium);
  border: 1px solid var(--border-slate);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.feature-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- INFO CARDS --- */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.info-card {
  background: var(--bg-medium);
  border: 1px solid var(--border-slate);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- NAV CARDS --- */
.nav-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.nav-card {
  display: block;
  background: var(--bg-medium);
  border: 1px solid var(--border-slate);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.15s ease;
}

.nav-card:hover {
  border-color: var(--brand-gold);
  transform: translateY(-3px);
}

.nav-card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-xs);
}

.nav-card h4 {
  color: var(--text-white);
}

.nav-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- STEPS --- */
.steps-block {
  margin: var(--space-lg) 0;
}

.step-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-slate);
}

.step-item:last-child {
  border-bottom: none;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: var(--bg-darkest);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
}

.step-body p {
  font-size: 0.92rem;
  color: var(--text-body);
}

.steps-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.h-step {
  text-align: center;
  padding: var(--space-md);
  background: var(--bg-medium);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-slate);
}

.h-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gold-gradient);
  color: var(--bg-darkest);
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: var(--space-xs);
}

.h-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --- TABLES --- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--space-md) 0;
  border-radius: var(--radius-md);
}

.info-table,
.promo-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-medium);
  border: 1px solid var(--border-slate);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.info-table th,
.info-table td,
.promo-table th,
.promo-table td {
  padding: 0.8rem 1.2rem;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-slate);
}

.info-table th {
  background: var(--bg-charcoal);
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
  width: 200px;
}

.info-table td {
  color: var(--text-white);
}

.promo-table thead th {
  background: var(--bg-charcoal);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.promo-table tbody td {
  color: var(--text-body);
  vertical-align: middle;
}

.promo-table tbody tr:last-child td {
  border-bottom: none;
}

.code-badge {
  display: inline-block;
  background: rgba(255,198,41,0.12);
  color: var(--brand-gold);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.status-active {
  color: var(--success-green);
  font-weight: 600;
  font-size: 0.88rem;
}

/* --- CHECKLIST --- */
.checklist-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-md);
}

.check-list {
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-body);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: 700;
}

.checklist-compact {
  list-style: none;
  background: var(--bg-medium);
  border: 1px solid var(--border-slate);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: var(--space-md) 0;
}

.checklist-compact li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-body);
}

.checklist-compact li::before {
  content: '☐';
  position: absolute;
  left: 0;
  color: var(--brand-gold);
}

.numbered-steps {
  list-style: none;
  counter-reset: steps;
  margin: var(--space-md) 0;
}

.numbered-steps li {
  counter-increment: steps;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  color: var(--text-body);
}

.numbered-steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: var(--bg-darkest);
  font-weight: 800;
  font-size: 0.78rem;
  border-radius: 50%;
}

/* --- CALLOUT / WARNING --- */
.callout-box {
  background: var(--bg-medium);
  border: 1px solid var(--border-slate);
  border-left: 3px solid var(--brand-gold);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
}

.warning-card {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-md);
}

.warning-card p {
  color: var(--warning-orange);
  margin: 0;
  font-size: 0.92rem;
}

.warning-card strong {
  color: var(--text-white);
}

.warning-prominent {
  background: rgba(255,77,79,0.08);
  border-color: rgba(255,77,79,0.3);
}

.warning-prominent p {
  color: var(--danger-red);
}

.warning-list {
  list-style: none;
  margin: var(--space-md) 0;
}

.warning-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: var(--text-body);
}

.warning-list li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  color: var(--warning-orange);
}

.support-list {
  list-style: none;
  margin: var(--space-md) 0;
}

.support-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-slate);
  font-size: 0.92rem;
}

.support-list li:last-child {
  border-bottom: none;
}

.support-list strong {
  color: var(--text-white);
}

/* --- CTA INLINE --- */
.cta-inline {
  text-align: center;
  margin-top: var(--space-lg);
}

/* --- FAQ --- */
.faq-list {
  margin-top: var(--space-md);
}

.faq-item {
  background: var(--bg-medium);
  border: 1px solid var(--border-slate);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xs);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: var(--border-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-white);
  cursor: pointer;
  list-style: none;
  transition: background 0.2s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--brand-gold);
  flex-shrink: 0;
  margin-left: var(--space-sm);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-question:hover {
  background: rgba(255,255,255,0.02);
}

.faq-answer {
  padding: 0 1.2rem 1rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-body);
}

/* --- LEGAL PAGES --- */
.legal-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--bg-charcoal);
  border-bottom: 1px solid var(--border-slate);
}

.legal-hero p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-content {
  padding: var(--space-xl) 0;
}

.legal-container {
  max-width: 840px;
}

.legal-section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-slate);
}

.legal-section:last-of-type {
  border-bottom: none;
}

.legal-section ul,
.legal-section ol {
  margin: var(--space-sm) 0;
}

.legal-section ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
}

.legal-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand-gold);
}

.legal-cta {
  text-align: center;
  padding-top: var(--space-lg);
}

/* --- FOOTER --- */
.site-footer {
  background: var(--bg-charcoal);
  border-top: 1px solid var(--border-slate);
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: var(--space-xl);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-slate);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

.footer-nav h4,
.footer-support h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.footer-nav ul li {
  margin-bottom: 0.4rem;
}

.footer-nav ul li a {
  color: var(--text-body);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-nav ul li a:hover {
  color: var(--brand-gold);
}

.footer-support p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-slate);
  flex-wrap: wrap;
}

.footer-disclaimer {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-slate);
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer-bottom {
  padding-top: var(--space-md);
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* --- SCROLL TO TOP --- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--bg-medium);
  border: 1px solid var(--border-slate);
  color: var(--brand-gold);
  font-size: 1.4rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--border-slate);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero-visual {
    order: -1;
    max-width: 380px;
    margin: 0 auto;
  }

  .two-col-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .two-col-layout.reverse .col-visual {
    order: 0;
  }

  .col-visual {
    max-width: 380px;
    margin: 0 auto;
  }

  .checklist-layout {
    grid-template-columns: 1fr;
  }

  .nav-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hdr-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-charcoal);
    border-bottom: 1px solid var(--border-slate);
    padding: var(--space-md);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .hdr-nav.open {
    transform: translateY(0);
  }

  .hdr-nav-list {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .hdr-link {
    display: block;
    padding: 0.6rem 0;
    font-size: 1rem;
  }

  .burger {
    display: flex;
  }

  .btn-cta-sm {
    display: none;
  }

  .hero-section {
    padding: var(--space-lg) 0;
  }

  .hero-compact {
    text-align: left;
  }

  .hero-compact p {
    margin-left: 0;
    margin-right: 0;
  }

  .feature-grid,
  .info-cards-grid {
    grid-template-columns: 1fr;
  }

  .steps-horizontal {
    grid-template-columns: 1fr 1fr;
  }

  .nav-cards-grid {
    grid-template-columns: 1fr;
  }

  .banner-card {
    flex-direction: column;
    text-align: center;
    padding: var(--space-md);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .info-table th {
    width: auto;
    min-width: 140px;
  }

  .promo-table {
    min-width: 580px;
  }

  .content-section {
    padding: var(--space-lg) 0;
  }

  .callout-box {
    padding: var(--space-md);
  }
}

@media (max-width: 480px) {
  :root {
    --space-md: 1rem;
    --space-lg: 1.75rem;
    --space-xl: 2.5rem;
  }

  .steps-horizontal {
    grid-template-columns: 1fr;
  }

  .footer-badges {
    gap: var(--space-sm);
  }

  .scroll-top {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
}
/* ===== Homepage Hero ===== */

.hero-home .hero-grid{
    display:block;
}

.hero-home .hero-content{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.hero-home .hero-content p{
    max-width:760px;
    margin:24px auto 32px;
}

.hero-home .hero-content .btn-primary{
    display:inline-flex;
}

.hero-home .hero-visual{
    display:none;
}