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

:root {
  --omm-blue: #0B1121;
  --omm-blue-90: rgba(11, 17, 33, 0.92);
  --omm-blue-light: #141D2F;
  --omm-blue-lighter: #1C2844;
  --omm-gold: #EDAA2B;
  --omm-gold-hover: #F5BC4C;
  --omm-gold-glow: rgba(237, 170, 43, 0.5);
  
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  --section-padding: 100px;
  --container-max: 1200px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ================================================
   RESET
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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;
  overflow-x: hidden;
}

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
   ================================================ */
.text-gold { color: var(--omm-gold); }

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

.section-title {
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  margin-bottom: 20px;
}

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

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

.section-intro.light { color: rgba(255,255,255,0.7); }

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

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

/* ================================================
   BUTTONS WITH GLOW
   ================================================ */
.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.02em;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
}

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

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

.btn-primary:hover {
  background: var(--omm-gold-hover);
  border-color: var(--omm-gold-hover);
  transform: translateY(-3px);
}

.btn-glow {
  box-shadow: 0 0 20px var(--omm-gold-glow), 0 4px 15px rgba(0,0,0,0.2);
}

.btn-glow:hover {
  box-shadow: 0 0 35px var(--omm-gold-glow), 0 8px 25px rgba(0,0,0,0.3);
}

.btn-dark {
  background: var(--omm-blue);
  color: var(--white);
  border-color: var(--omm-blue);
}

.btn-dark:hover {
  background: var(--omm-blue-light);
  transform: translateY(-3px);
}

.btn-glow-dark {
  box-shadow: 0 0 20px rgba(11, 17, 33, 0.5), 0 4px 15px rgba(0,0,0,0.2);
}

.btn-glow-dark:hover {
  box-shadow: 0 0 30px rgba(11, 17, 33, 0.6), 0 8px 25px rgba(0,0,0,0.3);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--omm-blue);
  border-color: var(--white);
  transform: translateY(-3px);
}

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

.btn-outline-light:hover {
  background: var(--white);
  color: var(--omm-blue);
  transform: translateY(-3px);
}

.btn-full { width: 100%; }

/* ================================================
   HEADER
   ================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--omm-blue);
  transition: all 0.4s var(--ease);
}

.header.scrolled {
  background: rgba(11, 17, 33, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

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

/* LOGO - FIXED SIZE */
.logo img {
  height: 70px;
  width: auto;
  transition: all 0.3s var(--ease);
}

.header.scrolled .logo img {
  height: 60px;
}

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

.nav-menu > li > a {
  padding: 12px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  border-radius: 8px;
  transition: all 0.3s var(--ease);
}

.nav-menu > li > a:hover {
  color: var(--omm-gold);
  background: rgba(237, 170, 43, 0.1);
}

.nav-menu .btn {
  margin-left: 20px;
  padding: 14px 28px;
}

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

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s var(--ease);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=1920&h=1080&fit=crop') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--omm-blue-90);
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--omm-gold-glow) 0%, transparent 70%);
  opacity: 0.3;
  filter: blur(80px);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.1); }
}

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

.hero-content {
  max-width: 750px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--omm-gold);
  margin-bottom: 24px;
  text-shadow: 0 0 30px var(--omm-gold-glow);
}

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

.hero-title .text-gold {
  text-shadow: 0 0 60px var(--omm-gold-glow);
}

.hero-description {
  font-size: 1.375rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  max-width: 620px;
  line-height: 1.7;
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 560px;
}

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

/* ================================================
   BELOW FOLD - GOLD
   ================================================ */
.below-fold {
  padding: 80px 0;
  background: var(--omm-gold);
}

.fold-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fold-left h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--omm-blue);
  margin-bottom: 24px;
}

.fold-left p {
  font-size: 1.1875rem;
  color: var(--omm-blue);
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 32px;
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 2px solid rgba(11, 17, 33, 0.1);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--omm-blue);
  letter-spacing: -0.03em;
  min-width: 140px;
}

.stat-text {
  font-size: 1.0625rem;
  color: var(--omm-blue);
  opacity: 0.75;
  line-height: 1.5;
}

/* ================================================
   VISIBILITY
   ================================================ */
.visibility-section {
  padding: 100px 0;
  background: var(--white);
}

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

.visibility-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--gray-900);
  margin-bottom: 20px;
}

.visibility-highlight {
  font-size: 1.625rem;
  color: var(--omm-gold);
  font-weight: 700;
  margin-bottom: 28px;
}

.visibility-content p {
  font-size: 1.1875rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.8;
}

.visibility-cta {
  font-size: 1.5rem;
  margin-top: 32px;
}

.visibility-cta strong { color: var(--omm-blue); }

/* ================================================
   SERVICES - NEW CARD STRUCTURE
   ================================================ */
.services {
  padding: var(--section-padding) 0 120px;
  background: var(--omm-blue);
  position: relative;
}

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

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

.service-card {
  background: var(--omm-blue-light);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--omm-blue-lighter);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: var(--omm-gold);
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.4),
    0 0 40px rgba(237, 170, 43, 0.15);
}

.service-card .card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card .card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--omm-blue-light) 100%);
}

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

.service-card:hover .card-image img {
  transform: scale(1.1);
}

.service-card .card-body {
  padding: 28px 32px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.375rem;
  color: var(--omm-gold);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-card p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  flex: 1;
}

/* ================================================
   PARTNERSHIP
   ================================================ */
.partnership {
  padding: var(--section-padding) 0;
  background: var(--white);
}

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

.partnership-content p {
  color: var(--gray-600);
  margin-bottom: 20px;
  font-size: 1.125rem;
  line-height: 1.75;
}

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

.highlight-box {
  background: var(--omm-gold);
  border-radius: 16px;
  padding: 32px 36px;
  margin: 32px 0 36px;
  box-shadow: 0 8px 30px rgba(237, 170, 43, 0.3);
}

.highlight-box p {
  font-size: 1.25rem !important;
  color: var(--omm-blue) !important;
  font-weight: 700;
  margin-bottom: 10px !important;
  line-height: 1.5 !important;
}

.highlight-label {
  font-size: 1.0625rem;
  color: var(--omm-blue);
  opacity: 0.7;
  font-style: italic;
}

.partnership-benefits {
  background: var(--omm-blue);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

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

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

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

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

.check {
  color: var(--omm-gold);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.3;
  text-shadow: 0 0 10px var(--omm-gold-glow);
}

.benefits-footer {
  margin-top: 28px !important;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-style: italic;
  color: var(--omm-gold) !important;
  font-size: 1.0625rem;
}

/* ================================================
   BUILT FOR
   ================================================ */
.built-for {
  padding: var(--section-padding) 0;
  background: var(--omm-blue);
  position: relative;
}

.criteria-heading {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 48px;
}

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

.criteria-card {
  background: var(--omm-blue-light);
  padding: 36px 24px;
  border-radius: 20px;
  border: 1px solid var(--omm-blue-lighter);
  text-align: center;
  transition: all 0.4s var(--ease);
}

.criteria-card:hover {
  border-color: var(--omm-gold);
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.3),
    0 0 30px rgba(237, 170, 43, 0.1);
}

.criteria-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--omm-gold);
  color: var(--omm-blue);
  font-weight: 800;
  font-size: 1.5rem;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 0 25px var(--omm-gold-glow);
  transition: all 0.3s var(--ease);
}

.criteria-card:hover .criteria-icon {
  transform: scale(1.1);
  box-shadow: 0 0 40px var(--omm-gold-glow);
}

.criteria-card h4 {
  font-size: 1.0625rem;
  color: var(--white);
}

.built-for-tagline {
  font-size: 1.625rem;
  font-style: italic;
  color: var(--omm-gold);
  font-weight: 600;
  text-align: center;
  text-shadow: 0 0 40px var(--omm-gold-glow);
}

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

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

.showcase-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s var(--ease);
}

.showcase-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

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

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

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--omm-blue-90) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

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

.showcase-overlay h4 {
  font-size: 1.5rem;
  color: var(--white);
}

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

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

.revshare-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

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

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

.revshare-item {
  padding: 44px 32px;
  background: var(--omm-blue);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
}

.revshare-item:hover {
  transform: translateY(-8px);
  border-color: var(--omm-gold);
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.2),
    0 0 30px rgba(237, 170, 43, 0.1);
}

.revshare-label {
  display: block;
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.revshare-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--omm-gold);
  line-height: 1.4;
}

.revshare-results {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 56px;
  margin-bottom: 40px;
  text-align: left;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.revshare-results h3 {
  font-size: 1.375rem;
  margin-bottom: 28px;
  color: var(--gray-900);
}

.revshare-results ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 48px;
}

.revshare-results li {
  font-size: 1.0625rem;
  color: var(--gray-600);
  padding-left: 32px;
  position: relative;
}

.revshare-results li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--omm-gold);
  font-weight: 700;
  font-size: 1.25rem;
}

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

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

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

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

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

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.about-values span {
  padding: 14px 28px;
  background: var(--gray-100);
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-700);
  transition: all 0.3s var(--ease);
}

.about-values span:hover {
  background: var(--omm-gold);
  color: var(--omm-blue);
}

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

.mission-card, .vision-card {
  padding: 44px;
  border-radius: 24px;
  transition: all 0.4s var(--ease);
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-6px);
}

.mission-card {
  background: var(--omm-blue);
  box-shadow: 0 15px 40px rgba(11, 17, 33, 0.3);
}

.mission-card:hover {
  box-shadow: 0 25px 50px rgba(11, 17, 33, 0.4);
}

.vision-card {
  background: var(--omm-gold);
  box-shadow: 0 15px 40px rgba(237, 170, 43, 0.3);
}

.vision-card:hover {
  box-shadow: 0 25px 50px rgba(237, 170, 43, 0.4);
}

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

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

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

.vision-card p {
  color: var(--omm-blue);
  font-size: 1.1875rem;
  line-height: 1.7;
}

/* ================================================
   TESTIMONIALS - NEW CARD STRUCTURE
   ================================================ */
.testimonials {
  padding: var(--section-padding) 0 120px;
  background: var(--omm-blue);
  position: relative;
}

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

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

.testimonial-card {
  background: var(--omm-blue-light);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--omm-blue-lighter);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  border-color: var(--omm-gold);
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.4),
    0 0 40px rgba(237, 170, 43, 0.15);
}

.testimonial-card .card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.testimonial-card .card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--omm-blue-light) 100%);
}

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

.testimonial-card:hover .card-image img {
  transform: scale(1.1);
}

.testimonial-card .card-body {
  padding: 28px 32px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-category {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--omm-gold);
  margin-bottom: 14px;
}

.testimonial-card h4 {
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 18px;
}

.testimonial-card p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

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

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

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

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

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

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

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

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

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

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

.contact-faq h3 {
  font-size: 1.75rem;
  margin-bottom: 32px;
}

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

.faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 2px solid var(--gray-200);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq-item[open] {
  border-color: var(--omm-gold);
  box-shadow: 0 8px 30px rgba(237, 170, 43, 0.15);
}

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

.faq-item summary:hover { color: var(--omm-gold); }

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

.faq-item summary::after {
  content: '+';
  font-size: 1.75rem;
  color: var(--omm-gold);
  font-weight: 400;
}

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

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

/* ================================================
   FINAL CTA
   ================================================ */
.final-cta {
  padding: 120px 0;
  background: var(--omm-blue);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--omm-gold-glow) 0%, transparent 70%);
  opacity: 0.15;
  filter: blur(100px);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-main {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
}

.cta-sub {
  font-size: 1.1875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
}

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

/* ================================================
   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: 56px;
  margin-bottom: 24px;
}

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

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

.social-links a {
  width: 48px;
  height: 48px;
  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.875rem;
  transition: all 0.3s var(--ease);
}

.social-links a:hover {
  background: var(--omm-gold);
  color: var(--omm-blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--omm-gold-glow);
}

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

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

.footer-links a,
.footer-links li {
  color: rgba(255,255,255,0.5);
  font-size: 1.0625rem;
  transition: all 0.3s var(--ease);
}

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

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

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

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

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

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

/* ================================================
   ANIMATIONS
   ================================================ */
[data-animate] {
  opacity: 0;
  transition: all 0.8s var(--ease);
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate].animate-in {
  opacity: 1;
  transform: translate(0);
}

/* ================================================
   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; }
  .revshare-results ul { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .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 { height: 80px; }
  .logo img { height: 50px; }
  .nav-toggle { display: flex; }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--omm-blue);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.4s var(--ease);
  }
  
  .nav-menu.active { transform: translateY(0); opacity: 1; }
  
  .nav-menu > li > a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    color: var(--white);
  }
  
  .nav-menu .btn { margin: 24px 0 0; width: 100%; }
  
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-title { font-size: clamp(2.75rem, 12vw, 4rem); }
  
  .fold-grid { grid-template-columns: 1fr; gap: 48px; }
  .stat-item { gap: 16px; }
  .stat-number { font-size: 2rem; min-width: 100px; }
  
  .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%; }
  .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; }
}
