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

:root {
  --navy: #0d1b2a;
  --navy-mid: #1a2f45;
  --navy-light: #243b55;
  --gold: #c9a84c;
  --gold-light: #e8c87a;
  --gold-pale: #f5e9c8;
  --cream: #faf7f0;
  --white: #ffffff;
  --gray-100: #f4f4f4;
  --gray-200: #e8e8e8;
  --gray-400: #9a9a9a;
  --gray-600: #5a5a5a;
  --text: #1a1a1a;
  --text-light: #4a4a4a;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(13,27,42,0.16);
  --transition: 0.25s ease;
  --max-w: 1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── UTILITY ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--gold { background: var(--gold-pale); }
.text-center { text-align: center; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.eyebrow--light { color: var(--gold-light); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p { color: var(--text-light); max-width: 680px; }
.section--dark p { color: rgba(255,255,255,0.72); }

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 640px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,168,76,0.35); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline--light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline--light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-lg { padding: 18px 36px; font-size: 15px; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 500;
  padding: 8px 18px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--gold-light); color: var(--navy); }

.nav-toggle { display: none; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-content .lead {
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.stat-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-2px);
}
.stat-card .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card .label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* ── PLATFORM BADGES ── */
.platforms-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.platforms-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.platforms-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  margin-right: 32px;
  flex-shrink: 0;
}
.platform-badges { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.badge {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 16px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.badge:hover { color: var(--gold); border-color: var(--gold); }

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }
.section-header--center { text-align: center; }
.section-header--center p { margin: 0 auto; }

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

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--gold);
}
.card--dark {
  background: var(--navy-mid);
  border-color: rgba(255,255,255,0.08);
}
.card--dark:hover { border-color: var(--gold); }

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.card p { font-size: 0.95rem; max-width: none; }

/* ── SERVICE CARDS ── */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: 0.4s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card .num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 16px;
  font-style: italic;
}
.service-card h3 { margin-bottom: 14px; }
.service-card ul { margin-top: 20px; }
.service-card ul li {
  font-size: 14px;
  color: var(--gray-600);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card ul li::before { content: '→'; color: var(--gold); font-size: 12px; }

/* ── PROCESS ── */
.process-steps { position: relative; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}
.step-content h3 { margin-bottom: 12px; font-size: 1.3rem; }
.step-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.tag {
  font-size: 12px;
  font-weight: 500;
  background: var(--gold-pale);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
}
.pricing-card--featured {
  background: var(--navy);
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.pricing-card .tier { font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.pricing-card h3 { font-size: 1.6rem; margin-bottom: 8px; }
.pricing-card--featured h3 { color: var(--white); }
.pricing-card .price { font-family: var(--font-display); font-size: 2.8rem; color: var(--navy); margin-bottom: 4px; }
.pricing-card--featured .price { color: var(--gold); }
.pricing-card .price-note { font-size: 13px; color: var(--gray-400); margin-bottom: 32px; }
.pricing-card--featured .price-note { color: rgba(255,255,255,0.5); }
.pricing-card .features { margin-bottom: 36px; }
.pricing-card .features li {
  font-size: 14px;
  color: var(--text-light);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pricing-card--featured .features li { color: rgba(255,255,255,0.72); border-color: rgba(255,255,255,0.08); }
.check { color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── RESULTS / STATS ── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.result-item {
  background: var(--navy-mid);
  padding: 48px 32px;
  text-align: center;
  transition: var(--transition);
}
.result-item:hover { background: var(--navy-light); }
.result-item .big-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.result-item .result-label { font-size: 14px; color: rgba(255,255,255,0.6); }

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 40px;
  font-family: var(--font-display);
  font-size: 180px;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  pointer-events: none;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--white);
  max-width: 800px;
  line-height: 1.55;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; position: relative; z-index: 1; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
}
.author-info .name { font-weight: 600; color: var(--white); font-size: 15px; }
.author-info .role { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ── PLATFORMS PAGE ── */
.platform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-200);
}
.platform-row:last-child { border-bottom: none; }
.platform-row.reverse { direction: rtl; }
.platform-row.reverse > * { direction: ltr; }
.platform-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  position: relative;
  overflow: hidden;
}
.platform-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.platform-content h3 { font-size: 1.8rem; margin-bottom: 16px; }
.platform-features { margin-top: 24px; }
.platform-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.platform-features li .icon { color: var(--gold); font-size: 16px; flex-shrink: 0; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.faq-question {
  padding: 24px 0;
  font-weight: 500;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  color: var(--text);
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 300;
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 24px; }
.faq-answer p { max-width: none; font-size: 15px; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 8px; letter-spacing: 0.02em; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.field textarea { resize: vertical; min-height: 140px; }

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-item h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-item p { font-size: 14px; max-width: none; }

/* ── INSIGHTS ── */
.insight-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.insight-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.insight-thumb {
  height: 200px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.insight-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.15) 0%, transparent 60%);
}
.insight-body { padding: 28px 28px 32px; }
.insight-meta { display: flex; gap: 16px; margin-bottom: 14px; align-items: center; }
.insight-cat { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.insight-date { font-size: 12px; color: var(--gray-400); }
.insight-card h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.3; }
.read-more { font-size: 13px; font-weight: 500; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; }
.read-more:hover { gap: 10px; }

/* ── ABOUT / TEAM ── */
.team-card {
  text-align: center;
  padding: 36px 28px;
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--navy);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  border: 3px solid var(--gold-pale);
}
.team-card h3 { margin-bottom: 4px; font-size: 1.15rem; }
.team-card .role { font-size: 13px; color: var(--gold); font-weight: 500; margin-bottom: 12px; display: block; }
.team-card p { font-size: 14px; margin: 0 auto; }

.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-pale));
}
.timeline-item { padding: 0 0 40px 36px; position: relative; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
}
.timeline-item .year { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 6px; text-transform: uppercase; }
.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p { font-size: 14px; max-width: none; }

/* ── VALUES ── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; border-radius: var(--radius-lg); overflow: hidden; }
.value-item {
  background: var(--navy-mid);
  padding: 48px 36px;
  border: 1px solid rgba(255,255,255,0.06);
}
.value-icon { font-size: 2rem; margin-bottom: 20px; }
.value-item h3 { color: var(--white); margin-bottom: 12px; }
.value-item p { color: rgba(255,255,255,0.6); font-size: 15px; max-width: none; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 600px; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--gold);
  padding: 72px 0;
}
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { color: var(--navy); max-width: 520px; }
.cta-band p { color: rgba(13,27,42,0.7); margin-top: 8px; max-width: 400px; }
.cta-band .btn-primary {
  background: var(--navy);
  color: var(--white);
  white-space: nowrap;
}
.cta-band .btn-primary:hover { background: var(--navy-light); box-shadow: 0 4px 24px rgba(13,27,42,0.3); }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand span { color: var(--gold); }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .platform-row { grid-template-columns: 1fr; gap: 40px; }
  .platform-row.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .testimonial { padding: 36px 28px; }
  .testimonial blockquote { font-size: 1.2rem; }
  .process-step { grid-template-columns: 48px 1fr; gap: 16px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .page-hero { padding: 130px 0 60px; }
}
