/* ================================================
   OnMap Media - Fortune 500 Quality Stylesheet
   ================================================ */

:root {
  /* Brand Colors */
  --gold: #EDAA2B;
  --gold-hover: #D99E1F;
  --gold-light: #FDF6E7;
  --navy: #0A0E1A;
  --navy-mid: #111827;
  --navy-light: #1C2536;
  
  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* Typography */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  /* Spacing */
  --section-padding: 100px;
  --container-max: 1200px;
  
  /* Effects */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 48px rgba(0,0,0,0.16);
}

/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--gray-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

a { color: inherit; text-decoration: none; transition: all 0.3s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
strong { font-weight: 700; color: var(--gray-800); }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ================================================
   TYPOGRAPHY SYSTEM
   ================================================ */
.text-gold { color: var(--gold); }

.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 20px;
}

.section-title.light { color: var(--white); }

.section-intro {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-intro {
  margin: 0 auto;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(237, 170, 43, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-full { width: 100%; }

/* ================================================
   HEADER
   ================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease);
}

.header.scrolled {
  box-shadow: 0 1px 0 var(--gray-100), var(--shadow-sm);
}

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

.logo img {
  height: 44px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  padding: 10px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gray-700);
  border-radius: 8px;
}

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

.nav-menu .btn {
  margin-left: 16px;
  padding: 12px 24px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 100% 80% at 10% 90%, rgba(237, 170, 43, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(237, 170, 43, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
  margin-bottom: 56px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(3.5rem, 9vw, 6rem);
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  max-width: 540px;
}

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

/* Stats Bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  max-width: 800px;
  box-shadow: var(--shadow-xl);
}

.stat-card {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid var(--gray-100);
}

.stat-card:last-child { border-right: none; }

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ================================================
   VALUE PROP - GOLD BACKGROUND
   ================================================ */
.value-prop {
  padding: 80px 0;
  background: var(--gold);
}

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

.value-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.value-content p {
  font-size: 1.1875rem;
  color: var(--navy);
  line-height: 1.8;
  opacity: 0.85;
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--gray-50);
  padding: 36px 32px;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease);
}

.service-card:hover {
  background: var(--white);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border-radius: 14px;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.1875rem;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ================================================
   PARTNERSHIP SECTION
   ================================================ */
.partnership {
  padding: var(--section-padding) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.partnership::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(237, 170, 43, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.partnership-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.partnership-content p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.partnership-content p strong {
  color: var(--white);
}

.highlight-box {
  background: rgba(237, 170, 43, 0.12);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 28px 0 32px;
}

.highlight-box p {
  font-size: 1.125rem !important;
  color: var(--gold) !important;
  font-weight: 700;
  margin-bottom: 8px !important;
  line-height: 1.5 !important;
}

.highlight-label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

.partnership-benefits {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.partnership-benefits h3 {
  color: var(--white);
  font-size: 1.375rem;
  margin-bottom: 12px;
}

.benefits-intro {
  color: rgba(255,255,255,0.6) !important;
  font-size: 1rem !important;
  margin-bottom: 20px !important;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,0.9);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
  line-height: 1.5;
}

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

.check {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
}

.benefits-footer {
  margin-top: 20px !important;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-style: italic;
  color: var(--gold) !important;
}

/* ================================================
   BUILT FOR SECTION
   ================================================ */
.built-for {
  padding: var(--section-padding) 0;
  background: var(--gray-50);
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.criteria-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: all 0.4s var(--ease);
}

.criteria-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.criteria-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 50%;
  margin: 0 auto 18px;
}

.criteria-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  letter-spacing: 0;
}

.criteria-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
}

.built-for-tagline {
  font-size: 1.375rem;
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
}

/* ================================================
   SHOWCASE SECTION
   ================================================ */
.showcase {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.showcase-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.showcase-item:hover img {
  transform: scale(1.08);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 26, 0.95) 0%, rgba(10, 14, 26, 0.4) 40%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.showcase-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 6px;
}

.showcase-overlay h4 {
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about {
  padding: var(--section-padding) 0;
  background: var(--gray-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-content p {
  margin-bottom: 18px;
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.about-content .lead {
  font-size: 1.1875rem;
  color: var(--gray-700);
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-values span {
  padding: 10px 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-700);
}

.about-mission {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mission-card, .vision-card {
  padding: 36px;
  border-radius: 20px;
}

.mission-card {
  background: var(--navy);
}

.vision-card {
  background: var(--gold);
}

.card-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}

.mission-card .card-label { color: var(--gold); }
.vision-card .card-label { color: var(--navy); opacity: 0.7; }

.mission-card p {
  color: rgba(255,255,255,0.85);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.vision-card p {
  color: var(--navy);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ================================================
   WHY REVSHARE SECTION
   ================================================ */
.why-revshare {
  padding: var(--section-padding) 0;
  background: var(--white);
}

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

.revshare-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 12px;
}

.revshare-intro {
  font-size: 1.25rem;
  color: var(--gray-700);
  font-weight: 600;
  margin-bottom: 48px;
}

.revshare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.revshare-item {
  padding: 32px 24px;
  background: var(--gray-50);
  border-radius: 16px;
  border: 1px solid var(--gray-100);
}

.revshare-label {
  display: block;
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.revshare-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
}

.revshare-footer {
  font-size: 1.125rem;
  color: var(--gold);
  font-weight: 700;
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials {
  padding: var(--section-padding) 0;
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: 20px;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.testimonial-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border-radius: 14px;
  font-size: 1.375rem;
}

.testimonial-category {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.testimonial-card h4 {
  font-size: 1.125rem;
  margin-bottom: 14px;
  letter-spacing: 0;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-form-wrapper h2 {
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.contact-form-wrapper > p {
  color: var(--gray-500);
  font-size: 1.0625rem;
  margin-bottom: 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(237, 170, 43, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-faq h3 {
  font-size: 1.5rem;
  margin-bottom: 28px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--gray-50);
  border-radius: 14px;
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq-item[open] {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 22px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform 0.3s var(--ease);
}

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

.faq-item p {
  padding: 0 28px 22px;
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.7;
}

/* ================================================
   FINAL CTA SECTION
   ================================================ */
.final-cta {
  padding: var(--section-padding) 0;
  background: var(--navy);
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-main {
  font-size: 1.375rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}

.cta-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 40px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  transition: all 0.3s var(--ease);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-links h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a,
.footer-links li {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.9375rem;
}

.footer-legal {
  display: flex;
  gap: 28px;
}

.footer-legal a {
  color: rgba(255,255,255,0.35);
  font-size: 0.9375rem;
}

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

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  :root { --section-padding: 80px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .criteria-grid { grid-template-columns: repeat(3, 1fr); }
  .revshare-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: span 3; margin-bottom: 24px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 64px; }
  .container { padding: 0 24px; }
  
  .nav-toggle { display: flex; }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.4s var(--ease);
  }
  
  .nav-menu.active { transform: translateY(0); opacity: 1; }
  
  .nav-menu a {
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
    width: 100%;
  }
  
  .nav-menu .btn { margin: 20px 0 0; width: 100%; }
  
  .hero { min-height: auto; padding: 120px 0 64px; }
  .hero-title { font-size: clamp(2.75rem, 12vw, 4rem); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-card { padding: 24px 16px; }
  
  .services-grid { grid-template-columns: 1fr; }
  .partnership-grid { grid-template-columns: 1fr; gap: 48px; }
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-value { font-size: 1.5rem; }
  .criteria-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

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

.hero-content { animation: fadeInUp 0.8s var(--ease) forwards; }
.hero-stats { animation: fadeInUp 0.8s var(--ease) 0.2s forwards; opacity: 0; }

.service-card, .criteria-card, .testimonial-card, .stat-card, .showcase-item {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s var(--ease);
}

.service-card.animate-in, .criteria-card.animate-in, 
.testimonial-card.animate-in, .stat-card.animate-in,
.showcase-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animations */
.service-card:nth-child(2), .criteria-card:nth-child(2), .testimonial-card:nth-child(2), .showcase-item:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3), .criteria-card:nth-child(3), .testimonial-card:nth-child(3), .showcase-item:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4), .criteria-card:nth-child(4) { transition-delay: 0.3s; }
.service-card:nth-child(5), .criteria-card:nth-child(5) { transition-delay: 0.4s; }
.service-card:nth-child(6) { transition-delay: 0.5s; }
