/* ============================================================
   CSS VARIABLES & RESET
============================================================ */
:root {
  --green-900: #060e08;
  --green-800: #0a1509;
  --green-700: #0f1c14;
  --green-600: #162a1c;
  --green-500: #1e3826;
  --green-400: #2a5438;
  --green-300: #3d7a52;
  --green-200: #5a9e70;
  --gold-900: #8a6520;
  --gold-800: #b8943a;
  --gold-700: #c8a440;
  --gold-600: #d4b44e;
  --gold-500: #e8c96a;
  --gold-400: #f0d888;
  --gold-300: #f7e9b4;
  --cream: #faf9f6;
  --cream-dark: #f0ece0;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #8a8a8a;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-label: 'Barlow Condensed', sans-serif;
  --radius: 0px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
.display-xl { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; line-height: 1.0; }
.display-lg { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 700; line-height: 1.05; }
.display-md { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; line-height: 1.1; }
.display-sm { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; line-height: 1.2; }
.label-text { font-family: var(--font-label); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; }
.body-lg { font-size: 1.05rem; font-weight: 300; line-height: 1.85; }
.body-md { font-size: 0.95rem; font-weight: 300; line-height: 1.8; }
.body-sm { font-size: 0.85rem; font-weight: 300; line-height: 1.7; }
em.gold { color: var(--gold-800); font-style: italic; }

/* ============================================================
   LAYOUT
============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 3rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ============================================================
   SECTION HEADERS
============================================================ */
.section-header { margin-bottom: 3.5rem; }
.section-header .eyebrow { color: var(--gold-800); margin-bottom: 0.6rem; }
.section-header .rule { width: 40px; height: 2px; background: var(--gold-500); margin: 1rem 0; }
.section-header .title { margin-bottom: 1rem; }
.section-header .subtitle { color: var(--text-secondary); max-width: 600px; }
.section-header.centered { text-align: center; }
.section-header.centered .rule { margin: 1rem auto; }
.section-header.centered .subtitle { margin: 0 auto; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2rem; font-family: var(--font-label);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; transition: var(--transition);
  cursor: pointer; border: none; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1); opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-gold { background: var(--gold-800); color: var(--green-900); }
.btn-gold:hover { background: var(--gold-500); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(184,148,58,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--gold-800); }
.btn-outline:hover { background: var(--gold-800); color: var(--green-900); }
.btn-dark { background: var(--green-700); color: var(--white); }
.btn-dark:hover { background: var(--green-600); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.3); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 0.8rem; }
.btn-sm { padding: 0.65rem 1.4rem; font-size: 0.68rem; }

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10, 21, 9, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184,148,58,0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem; max-width: 1440px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 1rem;
}
.nav-logo-text { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--white); letter-spacing: 0.05em; }
.nav-logo-text span { color: var(--gold-500); }
.nav-logo-sub { font-family: var(--font-label); font-size: 0.55rem; font-weight: 700; letter-spacing: 0.4em; color: var(--gold-800); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 0.3rem; }
.nav-link {
  font-family: var(--font-label); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.75);
  padding: 0.5rem 0.9rem; transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0.9rem; right: 0.9rem;
  height: 1px; background: var(--gold-500); transform: scaleX(0);
  transform-origin: left; transition: var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta { margin-left: 1rem; }
.nav-mobile-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-mobile-btn span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--green-900); z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { font-size: 1.2rem; letter-spacing: 0.3em; color: var(--white); }
.mobile-menu-close { position: absolute; top: 2rem; right: 2rem; color: var(--white); font-size: 2rem; cursor: pointer; }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  background: var(--green-900); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #020704 0%, #0a1509 30%, #0f1c14 60%, #162a1c 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: repeating-linear-gradient(
    45deg, var(--gold-500) 0px, var(--gold-500) 1px,
    transparent 0px, transparent 50%
  );
  background-size: 40px 40px;
}
.hero-glow {
  position: absolute; right: -10%; top: 10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,148,58,0.12) 0%, transparent 70%);
}
.hero-glow-2 {
  position: absolute; left: -5%; bottom: 5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,56,38,0.8) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; padding: 8rem 3rem 4rem; max-width: 1440px; margin: 0 auto; width: 100%; }
.hero-eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold-800); }
.hero-eyebrow-text { color: var(--gold-800); }
.hero-title { color: var(--white); margin-bottom: 1.5rem; max-width: 800px; }
.hero-sub { color: rgba(255,255,255,0.6); margin-bottom: 3rem; max-width: 520px; }
.hero-slogan {
  font-style: italic; color: var(--gold-500);
  margin: -0.5rem 0 1.8rem; max-width: 640px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem; }
.hero-stats { display: flex; gap: 3rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1; }
.hero-stat-num span { color: var(--gold-500); }
.hero-stat-label { color: rgba(255,255,255,0.45); font-size: 0.75rem; font-weight: 400; margin-top: 0.3rem; letter-spacing: 0.1em; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.3); z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll-text { font-family: var(--font-label); font-size: 0.6rem; letter-spacing: 0.3em; }
.hero-scroll-arrow { width: 20px; height: 20px; border-right: 1px solid rgba(255,255,255,0.3); border-bottom: 1px solid rgba(255,255,255,0.3); transform: rotate(45deg); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ============================================================
   TRUST BAR / CLIENTS
============================================================ */
.trust-bar { background: var(--green-800); border-top: 1px solid rgba(184,148,58,0.15); border-bottom: 1px solid rgba(184,148,58,0.15); padding: 1.8rem 0; overflow: hidden; }
.trust-label { font-family: var(--font-label); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.35em; color: rgba(255,255,255,0.3); text-align: center; margin-bottom: 1.2rem; }
.trust-scroll { display: flex; gap: 0; width: max-content; animation: scroll-left 25s linear infinite; }
.trust-scroll:hover { animation-play-state: paused; }
.trust-item {
  display: flex; align-items: center; justify-content: center;
  padding: 0 2.5rem; border-right: 1px solid rgba(184,148,58,0.12);
  min-width: 180px;
}
.trust-item-name { font-family: var(--font-label); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; color: rgba(255,255,255,0.45); white-space: nowrap; transition: var(--transition); }
.trust-item:hover .trust-item-name { color: var(--gold-500); }
.trust-dot { width: 5px; height: 5px; background: var(--gold-800); border-radius: 50%; margin-right: 0.8rem; flex-shrink: 0; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   SERVICES SPLIT
============================================================ */
.services-split { background: var(--cream); }
.services-split-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.services-panel {
  padding: 5rem; display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden; transition: var(--transition-slow);
}
.services-panel-light { background: var(--cream); }
.services-panel-dark { background: var(--green-700); }
.services-panel:hover { transform: scale(1.01); }
.services-panel-num { font-family: var(--font-display); font-size: 5rem; font-weight: 700; line-height: 1; opacity: 0.08; position: absolute; top: 2rem; right: 2.5rem; }
.services-panel-light .services-panel-num { color: var(--green-700); }
.services-panel-dark .services-panel-num { color: var(--gold-500); }
.services-panel-eyebrow { color: var(--gold-800); margin-bottom: 0.8rem; }
.services-panel-title { margin-bottom: 1.5rem; }
.services-panel-light .services-panel-title { color: var(--green-700); }
.services-panel-dark .services-panel-title { color: var(--white); }
.services-panel-body { margin-bottom: 2rem; }
.services-panel-light .services-panel-body { color: var(--text-secondary); }
.services-panel-dark .services-panel-body { color: rgba(255,255,255,0.65); }
.services-panel-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2.5rem; }
.services-panel-list-item { display: flex; align-items: center; gap: 0.8rem; }
.services-panel-list-icon { color: var(--gold-800); font-size: 0.85rem; flex-shrink: 0; }
.services-panel-list-text { font-size: 0.88rem; }
.services-panel-light .services-panel-list-text { color: var(--text-secondary); }
.services-panel-dark .services-panel-list-text { color: rgba(255,255,255,0.7); }

/* ============================================================
   DIFFERENTIATOR CALLOUT
============================================================ */
.differentiator {
  background: linear-gradient(135deg, #060e08 0%, #0a1509 50%, #0f1c14 100%);
  position: relative; overflow: hidden;
}
.diff-pattern { position: absolute; inset: 0; opacity: 0.04; background: repeating-conic-gradient(var(--gold-500) 0% 25%, transparent 0% 50%) 0 0 / 30px 30px; }
.diff-glow { position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(184,148,58,0.08) 0%, transparent 70%); }
.diff-inner { position: relative; z-index: 2; }
.diff-tag { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(184,148,58,0.1); border: 1px solid rgba(184,148,58,0.2); padding: 0.4rem 1rem; color: var(--gold-500); margin-bottom: 1.5rem; }
.diff-title { color: var(--white); margin-bottom: 1.5rem; }
.diff-body { color: rgba(255,255,255,0.55); margin-bottom: 3rem; max-width: 700px; }
.diff-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); }
.diff-card { background: rgba(10,21,9,0.8); padding: 2rem; transition: var(--transition); }
.diff-card:hover { background: rgba(22,42,28,0.9); }
.diff-card-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.diff-card-title { font-family: var(--font-label); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: var(--gold-500); margin-bottom: 0.8rem; }
.diff-card-body { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.diff-vs { display: flex; align-items: center; gap: 2rem; margin-top: 3rem; padding: 1.5rem 2rem; background: rgba(184,148,58,0.06); border-left: 2px solid var(--gold-800); }
.diff-vs-item { flex: 1; }
.diff-vs-label { font-family: var(--font-label); font-size: 0.6rem; letter-spacing: 0.3em; margin-bottom: 0.5rem; }
.diff-vs-label.them { color: rgba(255,255,255,0.3); }
.diff-vs-label.us { color: var(--gold-800); }
.diff-vs-text { font-size: 0.9rem; }
.diff-vs-text.them { color: rgba(255,255,255,0.4); }
.diff-vs-text.us { color: var(--white); font-weight: 500; }
.diff-vs-divider { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; color: var(--gold-800); }

/* ============================================================
   PACKAGES
============================================================ */
.packages { background: var(--white); }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pkg-card {
  border: 1px solid #e8e4da; position: relative; overflow: hidden;
  transition: var(--transition-slow); display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.12); }
.pkg-card.featured { border-color: var(--gold-800); box-shadow: 0 0 0 1px var(--gold-800); }
.pkg-badge {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--gold-800); color: var(--green-900);
  font-family: var(--font-label); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; padding: 0.3rem 0.8rem;
}
.pkg-header { padding: 2.5rem 2.5rem 2rem; }
.pkg-number { font-family: var(--font-label); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.4em; color: var(--gold-800); margin-bottom: 0.8rem; }
.pkg-name { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--green-700); margin-bottom: 0.5rem; }
.pkg-card.dark-pkg .pkg-name { color: var(--white); }
.pkg-tagline { font-family: var(--font-label); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; color: var(--gold-800); text-transform: uppercase; margin-bottom: 1rem; }
.pkg-desc { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.7; }
.pkg-card.dark-pkg .pkg-desc { color: rgba(255,255,255,0.55); }
.pkg-divider { height: 1px; background: #ebe8e0; margin: 0 2.5rem; }
.pkg-card.dark-pkg .pkg-divider { background: rgba(255,255,255,0.08); }
.pkg-includes { padding: 1.5rem 2.5rem; flex: 1; }
.pkg-includes-label { font-family: var(--font-label); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3em; color: var(--gold-800); margin-bottom: 1rem; }
.pkg-list { display: flex; flex-direction: column; gap: 0.45rem; }
.pkg-list-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.85rem; color: var(--text-secondary); line-height: 1.4; }
.pkg-card.dark-pkg .pkg-list-item { color: rgba(255,255,255,0.6); }
.pkg-check { color: var(--gold-800); flex-shrink: 0; margin-top: 2px; font-size: 0.75rem; }
.pkg-footer { padding: 2rem 2.5rem; border-top: 1px solid #ebe8e0; }
.pkg-card.dark-pkg .pkg-footer { border-top-color: rgba(255,255,255,0.08); }
.pkg-price-label { font-family: var(--font-label); font-size: 0.6rem; letter-spacing: 0.3em; color: var(--text-muted); margin-bottom: 0.3rem; }
.pkg-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--green-700); margin-bottom: 1.2rem; }
.pkg-card.dark-pkg .pkg-price { color: var(--gold-500); }
.pkg-card-dark-bg { background: var(--green-700); }
.pkg-ideal-for { padding: 1.5rem 2.5rem; background: rgba(184,148,58,0.05); border-top: 1px solid #ebe8e0; }
.pkg-card.dark-pkg .pkg-ideal-for { background: rgba(232,201,106,0.05); border-top-color: rgba(255,255,255,0.06); }
.pkg-ideal-label { font-family: var(--font-label); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.28em; color: var(--gold-800); margin-bottom: 0.6rem; }
.pkg-ideal-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pkg-ideal-tag { font-family: var(--font-label); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em; color: var(--text-secondary); background: var(--cream); border: 1px solid #ddd9ce; padding: 0.25rem 0.6rem; }
.pkg-card.dark-pkg .pkg-ideal-tag { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
.packages-note { text-align: center; margin-top: 2.5rem; color: var(--text-muted); font-size: 0.85rem; }
.packages-note a { color: var(--gold-800); border-bottom: 1px solid var(--gold-800); }

/* ============================================================
   ACTIVATIONS CATALOG
============================================================ */
.activations { background: var(--cream); }
.activations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #ddd9ce; border: 1px solid #ddd9ce; margin-bottom: 2.5rem; }
.activation-card {
  background: var(--white); padding: 1.8rem 1.5rem;
  transition: var(--transition); position: relative; overflow: hidden;
}
.activation-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold-800);
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.activation-card:hover::before { transform: scaleX(1); }
.activation-card:hover { background: #fdfcf8; }
.activation-icon { font-size: 1.6rem; margin-bottom: 0.8rem; }
.activation-name { font-family: var(--font-label); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; color: var(--green-700); margin-bottom: 0.4rem; text-transform: uppercase; }
.activation-price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--gold-800); margin-bottom: 0.6rem; }
.activation-body { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.activations-cta { text-align: center; padding: 3rem; background: var(--green-700); }
.activations-cta-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 0.8rem; }
.activations-cta-sub { color: rgba(255,255,255,0.55); margin-bottom: 1.8rem; }

/* ============================================================
   CASE STUDIES
============================================================ */
.case-studies { background: var(--white); }
.cs-card {
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
  border: 1px solid #e8e4da; margin-bottom: 1.5rem;
}
.cs-visual {
  background: var(--green-700); position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 320px; overflow: hidden;
}
.cs-visual-bg { position: absolute; inset: 0; opacity: 0.15; background: repeating-conic-gradient(var(--gold-500) 0% 25%, transparent 0% 50%) 0 0 / 20px 20px; }
.cs-visual-content { position: relative; z-index: 2; text-align: center; padding: 3rem; }
.cs-visual-logo { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.cs-visual-type { color: var(--gold-500); }
.cs-visual-stats { display: flex; gap: 2rem; margin-top: 2rem; justify-content: center; }
.cs-stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--white); }
.cs-stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); margin-top: 0.2rem; }
.cs-content { padding: 3rem; display: flex; flex-direction: column; justify-content: space-between; }
.cs-client { font-family: var(--font-label); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.35em; color: var(--gold-800); margin-bottom: 0.6rem; }
.cs-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--green-700); margin-bottom: 1rem; line-height: 1.2; }
.cs-body { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.5rem; }
.cs-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.cs-tag { font-family: var(--font-label); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; background: var(--cream); border: 1px solid #ddd9ce; padding: 0.3rem 0.8rem; color: var(--text-secondary); }
.cs-quote { border-left: 2px solid var(--gold-800); padding-left: 1.2rem; font-family: var(--font-display); font-size: 1rem; font-style: italic; color: var(--text-secondary); line-height: 1.5; }
.cs-coming { background: var(--cream); border: 1px dashed #d4d0c4; padding: 3rem; text-align: center; }
.cs-coming-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.5rem; }

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-it-works { background: var(--green-900); }
.hiw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.hiw-grid::before { content: ''; position: absolute; top: 2.5rem; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-800), transparent); z-index: 1; }
.hiw-step { padding: 4rem 2.5rem 3rem; position: relative; z-index: 2; text-align: center; }
.hiw-number {
  width: 52px; height: 52px; border: 1px solid var(--gold-800);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--gold-500); margin: 0 auto 1.5rem;
  background: var(--green-900); position: relative; z-index: 2;
}
.hiw-title { font-family: var(--font-label); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: var(--white); margin-bottom: 0.8rem; }
.hiw-body { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.testi-card { background: var(--white); padding: 2.5rem; border: 1px solid #e8e4da; position: relative; }
.testi-quote-mark { font-family: var(--font-display); font-size: 5rem; font-weight: 700; color: var(--gold-300); position: absolute; top: 1rem; right: 1.5rem; line-height: 1; }
.testi-body { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; color: var(--text-primary); line-height: 1.7; margin-bottom: 1.5rem; position: relative; z-index: 2; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar { width: 40px; height: 40px; background: var(--green-700); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--gold-500); flex-shrink: 0; }
.testi-name { font-family: var(--font-label); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; color: var(--text-primary); }
.testi-role { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   SIMULATOR SHOWCASE
============================================================ */
.simulator { background: var(--white); }
.sim-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.sim-visual {
  background: var(--green-700); aspect-ratio: 4/3; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.sim-visual-pattern { position: absolute; inset: 0; opacity: 0.06; background: repeating-conic-gradient(var(--gold-500) 0% 25%, transparent 0% 50%) 0 0 / 25px 25px; }
.sim-visual-content { position: relative; z-index: 2; text-align: center; padding: 3rem; }
.sim-visual-title { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 0.5rem; }
.sim-visual-subtitle { color: var(--gold-500); margin-bottom: 2rem; }
.sim-visual-badge { display: inline-block; background: rgba(184,148,58,0.15); border: 1px solid rgba(184,148,58,0.3); padding: 0.5rem 1.2rem; color: var(--gold-400); font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.25em; }
.sim-features { display: flex; flex-direction: column; gap: 1.2rem; }
.sim-feature { display: flex; gap: 1.2rem; align-items: flex-start; padding-bottom: 1.2rem; border-bottom: 1px solid #ebe8e0; }
.sim-feature:last-child { border-bottom: none; }
.sim-feature-icon { width: 42px; height: 42px; background: var(--cream); border: 1px solid #ddd9ce; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.sim-feature-title { font-family: var(--font-label); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; color: var(--green-700); margin-bottom: 0.3rem; }
.sim-feature-body { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.sim-price-row { display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem; background: var(--cream); border: 1px solid #ddd9ce; margin-top: 2rem; }
.sim-price-item { flex: 1; text-align: center; }
.sim-price-val { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--green-700); }
.sim-price-label { font-size: 0.7rem; color: var(--text-muted); font-family: var(--font-label); letter-spacing: 0.12em; }

/* ============================================================
   BUILD YOUR OWN
============================================================ */
.build-own { background: var(--green-700); }
.byo-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }
.byo-title { color: var(--white); margin-bottom: 1rem; }
.byo-body { color: rgba(255,255,255,0.55); margin-bottom: 2.5rem; }
.byo-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 2.5rem; }
.byo-form-title { font-family: var(--font-label); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.25em; color: var(--gold-500); margin-bottom: 1.5rem; }
.byo-field { margin-bottom: 1.2rem; }
.byo-label { font-family: var(--font-label); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em; color: rgba(255,255,255,0.45); margin-bottom: 0.5rem; display: block; }
.byo-select, .byo-input {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); padding: 0.8rem 1rem; font-family: var(--font-body);
  font-size: 0.9rem; appearance: none; outline: none; transition: var(--transition);
}
.byo-select:focus, .byo-input:focus { border-color: var(--gold-800); background: rgba(255,255,255,0.09); }
.byo-select option { background: var(--green-700); color: var(--white); }
.byo-checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.byo-check-item { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; }
.byo-check-item input { display: none; }
.byo-check-box { width: 16px; height: 16px; border: 1px solid rgba(255,255,255,0.2); flex-shrink: 0; position: relative; transition: var(--transition); }
.byo-check-item input:checked + .byo-check-box { background: var(--gold-800); border-color: var(--gold-800); }
.byo-check-item input:checked + .byo-check-box::after { content: '✓'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: var(--green-900); font-weight: 700; }
.byo-check-text { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.byo-estimate { background: rgba(184,148,58,0.08); border: 1px solid rgba(184,148,58,0.2); padding: 1.2rem; margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.byo-estimate-label { font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.25em; color: var(--gold-800); }
.byo-estimate-val { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold-500); }

/* ============================================================
   FAQ
============================================================ */
.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.faq-item { border: 1px solid #e8e4da; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem; background: none; cursor: pointer;
  font-family: var(--font-label); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-700);
  text-align: left; transition: var(--transition);
}
.faq-question:hover { background: var(--cream); }
.faq-icon { font-size: 1.2rem; color: var(--gold-800); flex-shrink: 0; transition: var(--transition); }
.faq-answer { display: none; padding: 0 1.5rem 1.2rem; font-size: 0.88rem; color: var(--text-secondary); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open { border-color: var(--gold-800); }

/* ============================================================
   BOOKING POLICIES
============================================================ */
.policies { background: var(--cream); }
.policies-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.policy-card { background: var(--white); border: 1px solid #e8e4da; padding: 2rem 1.5rem; border-top: 2px solid var(--gold-800); }
.policy-icon { font-size: 1.5rem; margin-bottom: 0.8rem; }
.policy-title { font-family: var(--font-label); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; color: var(--green-700); margin-bottom: 0.6rem; text-transform: uppercase; }
.policy-body { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   ABOUT
============================================================ */
.about { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-visual { background: var(--green-700); position: relative; padding: 4rem; display: flex; flex-direction: column; justify-content: space-between; min-height: 500px; }
.about-visual-pattern { position: absolute; inset: 0; opacity: 0.05; background: repeating-conic-gradient(var(--gold-500) 0% 25%, transparent 0% 50%) 0 0 / 20px 20px; }
.about-visual-content { position: relative; z-index: 2; }
.about-name { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 0.3rem; }
.about-role { color: var(--gold-500); margin-bottom: 2rem; }
.about-company { font-family: var(--font-label); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3em; color: rgba(255,255,255,0.3); }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; position: relative; z-index: 2; }
.about-value { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 0.8rem; }
.about-value-label { font-family: var(--font-label); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em; color: var(--gold-800); margin-bottom: 0.3rem; }
.about-value-text { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.about-content-eyebrow { color: var(--gold-800); margin-bottom: 0.6rem; }
.about-content-title { margin-bottom: 1.5rem; color: var(--green-700); }
.about-content-body p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.85; margin-bottom: 1.2rem; }
.about-content-body strong { color: var(--text-primary); font-weight: 600; }
.about-greendot { margin-top: 2rem; padding: 1.5rem; background: var(--cream); border-left: 3px solid var(--gold-800); }
.about-greendot-label { font-family: var(--font-label); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.28em; color: var(--gold-800); margin-bottom: 0.4rem; }
.about-greendot-text { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #060e08 0%, #0f1c14 50%, #162a1c 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner-pattern { position: absolute; inset: 0; opacity: 0.03; background: repeating-conic-gradient(var(--gold-500) 0% 25%, transparent 0% 50%) 0 0 / 30px 30px; }
.cta-banner-glow { position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(circle, rgba(184,148,58,0.08) 0%, transparent 70%); }
.cta-banner-inner { position: relative; z-index: 2; padding: 5rem 2rem; }
.cta-banner-eyebrow { color: var(--gold-800); margin-bottom: 0.8rem; }
.cta-banner-title { color: var(--white); margin-bottom: 1.2rem; }
.cta-banner-sub { color: rgba(255,255,255,0.5); margin-bottom: 3rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--green-900); border-top: 1px solid rgba(184,148,58,0.15); }
.footer-top { padding: 4rem 0; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand { }
.footer-logo { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.footer-logo span { color: var(--gold-500); }
.footer-tagline { color: var(--gold-800); font-style: italic; margin-bottom: 1.2rem; }
.footer-body { font-size: 0.85rem; color: rgba(255,255,255,0.35); line-height: 1.75; max-width: 280px; margin-bottom: 1.5rem; }
.footer-contact-item { display: flex; gap: 0.6rem; align-items: center; font-size: 0.83rem; color: rgba(255,255,255,0.45); margin-bottom: 0.5rem; }
.footer-contact-item a { color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold-500); }
.footer-col-title { font-family: var(--font-label); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em; color: var(--gold-800); margin-bottom: 1.2rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link { font-size: 0.83rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-link:hover { color: var(--white); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-reg { font-size: 0.75rem; color: rgba(255,255,255,0.2); font-family: var(--font-label); letter-spacing: 0.1em; }
.footer-socials { display: flex; gap: 0.8rem; }
.footer-social { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-social:hover { border-color: var(--gold-800); color: var(--gold-500); }

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  display: flex; align-items: center; gap: 0.8rem;
  background: #25D366; color: var(--white); padding: 0.85rem 1.4rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
  cursor: pointer; transition: var(--transition);
  animation: pulse-wa 3s ease-in-out infinite;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.45); animation: none; }
.wa-float-icon { font-size: 1.3rem; }
.wa-float-text { font-family: var(--font-label); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; }
@keyframes pulse-wa { 0%,100% { box-shadow: 0 8px 30px rgba(37,211,102,0.35); } 50% { box-shadow: 0 8px 40px rgba(37,211,102,0.6); } }

/* ============================================================
   ANIMATIONS
============================================================ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.7s ease; }
.fade-in.visible { opacity: 1; }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ============================================================
   SIMULATOR PRICING
============================================================ */
.sim-pricing { background: var(--cream); }
.sim-pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #ddd9ce; border: 1px solid #ddd9ce; }
.sim-pricing-card { background: var(--white); padding: 2.5rem 1.8rem; text-align: center; transition: var(--transition); }
.sim-pricing-card:hover { background: var(--cream); }
.sim-pricing-card-dark { background: var(--green-700); }
.sim-pricing-card-dark:hover { background: var(--green-600); }
.sim-pricing-dur { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; color: var(--gold-900); margin-bottom: 1rem; text-transform: uppercase; }
.sim-pricing-card-dark .sim-pricing-dur { color: var(--gold-500); }
.sim-pricing-val { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--green-700); line-height: 1; margin-bottom: 0.9rem; }
.sim-pricing-card-dark .sim-pricing-val { color: var(--white); }
.sim-pricing-note { font-size: 0.85rem; line-height: 1.7; color: var(--text-secondary); }
.sim-pricing-card-dark .sim-pricing-note { color: rgba(255,255,255,0.55); }
.sim-pricing-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem; }
.btn-outline-dark { background: transparent; color: var(--green-700); border: 1.5px solid var(--gold-800); }
.btn-outline-dark:hover { background: var(--gold-800); color: var(--white); }

/* ============================================================
   NIGHT GOLF
============================================================ */
.night-golf {
  background: linear-gradient(135deg, #060e08 0%, #0a1509 55%, #12251a 100%);
  position: relative; overflow: hidden;
}
.night-golf::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 20%, rgba(232,201,106,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.night-golf-inner { position: relative; z-index: 2; text-align: center; }
.night-golf-body { color: rgba(255,255,255,0.6); max-width: 720px; margin: 0 auto 2.5rem; }
.night-golf-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); margin-bottom: 2.5rem; }
.night-golf-feature {
  flex: 1 1 200px; display: flex; align-items: center; justify-content: center; gap: 0.7rem;
  background: rgba(10,21,9,0.75); padding: 1.4rem 1.6rem;
  font-family: var(--font-label); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
}
.night-golf-feature-icon { font-size: 1.1rem; }

/* ============================================================
   SERVICE AREAS
============================================================ */
.service-areas { background: var(--white); }
.areas-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; }
.area-chip {
  border: 1px solid #ddd9ce; border-top: 2px solid var(--gold-800);
  background: var(--cream); padding: 0.85rem 1.6rem;
  font-family: var(--font-label); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-700);
  transition: var(--transition);
}
.area-chip:hover { background: var(--green-700); color: var(--gold-500); }

/* ============================================================
   LANDING PAGE HERO / BREADCRUMBS / PROSE
============================================================ */
.page-hero { min-height: unset; }
.page-hero .hero-content { padding: 11rem 3rem 5rem; }
.page-hero .hero-title { max-width: 900px; }
.page-hero .hero-sub { max-width: 640px; margin-bottom: 2.5rem; }
.breadcrumbs {
  font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem;
}
.breadcrumbs a { color: var(--gold-800); text-decoration: none; transition: var(--transition); }
.breadcrumbs a:hover { color: var(--gold-500); }
.breadcrumbs span { margin: 0 0.6rem; color: rgba(255,255,255,0.25); }
.prose { max-width: 820px; }
.prose.centered { margin: 0 auto; }
.prose p { color: var(--text-secondary); line-height: 1.9; margin-bottom: 1.4rem; }
.prose p:last-child { margin-bottom: 0; }
.prose h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--green-700); margin: 2.5rem 0 1rem;
}
.prose ul { list-style: none; margin: 0 0 1.4rem; padding: 0; }
.prose li {
  position: relative; padding-left: 1.6rem; margin-bottom: 0.7rem;
  color: var(--text-secondary); line-height: 1.8;
}
.prose li::before { content: '✦'; position: absolute; left: 0; color: var(--gold-800); }
.prose a { color: var(--gold-900); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--green-700); }
.prose strong { color: var(--green-700); font-weight: 600; }
.prose-dark p, .prose-dark li { color: rgba(255,255,255,0.6); }
.prose-dark h3 { color: var(--white); }
.prose-dark strong { color: var(--gold-500); }
.prose-dark a { color: var(--gold-500); }
.prose-dark a:hover { color: var(--gold-300); }
.related-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #ddd9ce; border: 1px solid #ddd9ce; }
.related-link {
  background: var(--white); padding: 2rem 1.8rem; text-decoration: none;
  display: block; transition: var(--transition);
}
.related-link:hover { background: var(--green-700); }
.related-link-label { font-family: var(--font-label); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-900); margin-bottom: 0.7rem; }
.related-link-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--green-700); margin-bottom: 0.5rem; }
.related-link-body { font-size: 0.85rem; line-height: 1.7; color: var(--text-secondary); }
.related-link:hover .related-link-title { color: var(--gold-500); }
.related-link:hover .related-link-body { color: rgba(255,255,255,0.55); }
.related-link:hover .related-link-label { color: var(--gold-800); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .activations-grid { grid-template-columns: repeat(3, 1fr); }
  .sim-pricing-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-btn { display: flex; }
  .hero-content { padding: 7rem 1.5rem 3rem; }
  .hero-stats { flex-wrap: wrap; gap: 2rem; }
  .services-split-grid { grid-template-columns: 1fr; }
  .services-panel { padding: 3rem 2rem; min-height: unset; }
  .diff-cards { grid-template-columns: 1fr; }
  .diff-vs { flex-wrap: wrap; }
  .packages-grid { grid-template-columns: 1fr; }
  .activations-grid { grid-template-columns: 1fr 1fr; }
  .cs-card { grid-template-columns: 1fr; }
  .hiw-grid { grid-template-columns: 1fr 1fr; }
  .hiw-grid::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .sim-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .byo-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .policies-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .related-links { grid-template-columns: 1fr; }
  .page-hero .hero-content { padding: 9rem 1.5rem 3.5rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section { padding: 4rem 0; }
  .container, .container-wide { padding: 0 1.5rem; }
  .nav-inner { padding: 1.2rem 1.5rem; }
}
@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hiw-grid { grid-template-columns: 1fr; }
  .policies-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .wa-float-text { display: none; }
  .wa-float { padding: 1rem; }
  .display-xl { font-size: 2.4rem; }
  .display-lg { font-size: 2rem; }
  .byo-checkboxes { grid-template-columns: 1fr; }
  .sim-pricing-grid { grid-template-columns: 1fr; }
  .sim-pricing-cta { flex-direction: column; }
  .sim-pricing-cta .btn { width: 100%; justify-content: center; }
}
