/* ====================================================
   MARVELOUS VENTURES — Main Stylesheet
   ==================================================== */

:root {
  --bg-base: #050810;
  --bg-elev: #0B0E18;
  --bg-card: #11151F;
  --bg-card-hover: #161B27;
  --border-subtle: rgba(201, 169, 97, 0.12);
  --border-glow: rgba(201, 169, 97, 0.35);
  --gold-100: #F8EAB8;
  --gold-200: #E8D08A;
  --gold-300: #D4AF37;
  --gold-400: #C9A961;
  --gold-500: #A8893E;
  --gold-600: #6B5523;
  --gold-700: #3A2D14;
  --text-primary: #EDE9DE;
  --text-secondary: #A8A29A;
  --text-muted: #6B6760;
  --gradient-gold: linear-gradient(135deg, #F8EAB8 0%, #D4AF37 45%, #8B6F2B 100%);
  --gradient-gold-v: linear-gradient(180deg, #F8EAB8 0%, #D4AF37 50%, #8B6F2B 100%);
  --gradient-gold-soft: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0) 100%);
  --shadow-glow: 0 0 60px rgba(212, 175, 55, 0.15);
  --shadow-deep: 0 30px 60px rgba(0, 0, 0, 0.5);

  --font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 'Helvetica Neue', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}

::selection {
  background: var(--gold-300);
  color: var(--bg-base);
}

/* ========== LOGO ========== */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-mark {
  width: 46px;
  height: 56px;
  position: relative;
  flex-shrink: 0;
}

.logo-mark svg { width: 100%; height: 100%; display: block; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.22em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 0.5em;
  color: var(--text-secondary);
  margin-top: 5px;
  font-weight: 500;
  padding-left: 2px;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(5, 8, 16, 0.7);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease;
}

.header.scrolled { background: rgba(5, 8, 16, 0.92); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-menu {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-menu a:hover { color: var(--gold-200); }

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold-300);
  transition: width 0.3s, left 0.3s;
  transform: translateX(-50%);
}

.nav-menu a:hover::after { width: 100%; }

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

.btn-outline {
  padding: 12px 28px;
  border: 1px solid var(--border-glow);
  background: transparent;
  color: var(--gold-200);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.btn-outline:hover {
  color: var(--bg-base);
  border-color: var(--gold-300);
}

.btn-outline:hover::before { opacity: 1; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 12px;
  cursor: pointer;
  letter-spacing: 0.1em;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-glow);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--gold-200);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  padding: 160px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold-200);
  text-transform: uppercase;
  margin-bottom: 32px;
  background: rgba(212, 175, 55, 0.04);
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-300);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-300);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
  max-width: 600px;
}

.feature-mini {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-mini-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-glow);
  display: grid;
  place-items: center;
  color: var(--gold-300);
  flex-shrink: 0;
  background: rgba(212, 175, 55, 0.04);
}

.feature-mini-icon svg { width: 17px; height: 17px; }

.feature-mini h4 {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold-200);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

.feature-mini p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 18px 38px;
  background: var(--gradient-gold);
  color: var(--bg-base);
  border: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::after { left: 100%; }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.btn-arrow { transition: transform 0.3s; }
.btn-primary:hover .btn-arrow,
.btn-outline:hover .btn-arrow { transform: translateX(4px); }

/* ========== HERO MAP ========== */
.hero-map {
  position: relative;
  aspect-ratio: 1.4 / 1;
  width: 100%;
}

.hero-map svg { width: 100%; height: 100%; }

.map-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 66% 35%, rgba(212, 175, 55, 0.22) 0%, transparent 50%);
  filter: blur(40px);
  z-index: -1;
}

/* ========== STATS ========== */
.stats { padding: 100px 0 80px; position: relative; }

.stats-card {
  background: linear-gradient(180deg, rgba(17, 21, 31, 0.8) 0%, rgba(13, 16, 24, 0.5) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.3fr repeat(5, 1fr);
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
  opacity: 0.4;
}

.stats-intro {
  border-right: 1px solid var(--border-subtle);
  padding-right: 32px;
}

.stats-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}

.stats-intro p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

.stat-item { text-align: center; }

.stat-value {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-weight: 500;
}

/* ========== SECTION TITLES ========== */
.section-title-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--gold-300);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}

.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-400);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 700px;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 380px;
  line-height: 1.7;
  font-weight: 300;
}

/* ========== PROCESS ========== */
.process { padding: 100px 0; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-line {
  position: absolute;
  top: 56px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-400) 15%, var(--gold-400) 85%, transparent 100%);
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 16px;
  z-index: 2;
}

.process-icon-wrap {
  width: 112px;
  height: 112px;
  margin: 0 auto 28px;
  position: relative;
  display: grid;
  place-items: center;
}

.process-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px solid var(--border-glow);
  background: var(--bg-card);
  display: grid;
  place-items: center;
  color: var(--gold-300);
  transition: all 0.4s;
  position: relative;
  z-index: 2;
}

.process-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  opacity: 0;
  transition: all 0.4s;
}

.process-step:hover .process-icon {
  transform: scale(1.05);
  border-color: var(--gold-300);
  box-shadow: var(--shadow-glow);
}

.process-step:hover .process-icon::before {
  opacity: 1;
  inset: -12px;
}

.process-icon svg { width: 36px; height: 36px; }

.process-number {
  position: absolute;
  top: -8px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-300);
  background: var(--bg-base);
  padding: 2px 10px;
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  letter-spacing: 0.1em;
  z-index: 3;
}

.process-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.process-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
  max-width: 200px;
  margin: 0 auto;
}

/* ========== NETWORK ========== */
.network { padding: 100px 0; }

.network-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.regions-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.region-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
}

.region-item:hover {
  background: var(--bg-card);
  border-color: var(--border-glow);
  transform: translateX(6px);
}

.region-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px currentColor;
}

.region-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  flex: 1;
}

.region-count {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.network-map {
  position: relative;
  aspect-ratio: 1.5 / 1;
}

.network-map svg { width: 100%; height: 100%; }

/* ========== FOCUS AREAS ========== */
.focus { padding: 100px 0; }

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.focus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.focus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.focus-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-gold-soft);
  opacity: 0;
  transition: opacity 0.4s;
}

.focus-card > * { position: relative; z-index: 1; }

.focus-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
}

.focus-card:hover::before,
.focus-card:hover::after { opacity: 1; }

.focus-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--gold-300);
  transition: transform 0.4s;
}

.focus-card:hover .focus-icon { transform: scale(1.1); }

.focus-icon svg { width: 100%; height: 100%; }

.focus-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

/* ========== PARTNERS ========== */
.partners { padding: 80px 0 100px; }

.partners-disclaimer {
  text-align: center;
  margin-top: 16px;
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.05em;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
}

.partner-logo {
  aspect-ratio: 2 / 1;
  display: grid;
  place-items: center;
  border: 1px dashed var(--border-subtle);
  border-radius: 10px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.partner-logo:hover {
  border-color: var(--border-glow);
  color: var(--gold-200);
}

/* ========== CTA ========== */
.cta { padding: 80px 0 120px; }

.cta-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elev) 100%);
  border: 1px solid var(--border-glow);
  border-radius: 28px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
}

.cta-card > * { position: relative; z-index: 1; }

.cta-eyebrow-center {
  justify-content: center;
  display: inline-flex;
  margin: 0 auto 14px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cta-title em {
  font-style: italic;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-text {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}

/* ========== FOOTER ========== */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 32px;
  background: var(--bg-elev);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 320px;
  font-weight: 300;
}

.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold-200);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  font-weight: 300;
}

.footer-col a:hover { color: var(--gold-200); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-social { display: flex; gap: 14px; }

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: grid;
  place-items: center;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.social-link:hover {
  color: var(--gold-300);
  border-color: var(--border-glow);
}

.social-link svg { width: 14px; height: 14px; }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.8s ease-out backwards; }

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-elev);
  border-left: 1px solid var(--border-subtle);
  padding: 100px 32px 32px;
  z-index: 99;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu.open { right: 0; }

.mobile-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu a:hover { color: var(--gold-300); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-map { max-width: 600px; margin: 0 auto; }
  .stats-card { grid-template-columns: 1fr; gap: 32px; padding: 40px 28px; }
  .stats-intro { border-right: none; border-bottom: 1px solid var(--border-subtle); padding-bottom: 24px; padding-right: 0; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .process-line { display: none; }
  .network-grid { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-menu { display: none; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .container { padding: 0 24px; }
  .hero { padding: 120px 0 60px; }
  .hero-features { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .section-title-block { flex-direction: column; align-items: flex-start; }
  .cta-card { padding: 48px 24px; }
  .logo-name { font-size: 18px; }
}

/* ========== PRINT ========== */
@media print {
  body { background: white; color: black; }
  .header, .footer, .cta, .hero-ctas, .nav-actions { display: none; }
}

/* ========== A11Y ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--gold-300);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-300);
  color: var(--bg-base);
  padding: 12px 24px;
  z-index: 1000;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus { left: 16px; top: 16px; }
