/* ============================================
   AFFORDABLE BAHAMAS — Landing Page Styles
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* PricePal Palette — Vibrant Blue & Green */
  --deep-navy: #0D47A1;
  --aquamarine: #2196F3;
  --aqua-deep: #1565C0;
  --aqua-light: #64B5F6;
  --aqua-pale: #E3F2FD;
  --gold: #6be00b;
  --gold-deep: #5bc40a;
  --sand: #F1FFF0;
  --off-white: #F5F9FF;
  --white: #FFFFFF;
  --green: #6be00b;

  /* Accent blues from banner */
  --blue-bright: #42A5F5;
  --blue-medium: #1E88E5;
  --blue-gradient-start: #42A5F5;
  --blue-gradient-end: #1565C0;
  --lime: #6be00b;
  --lime-deep: #5bc40a;

  /* Text */
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --text-on-dark: #E2E8F0;
  --text-on-dark-muted: #94A3B8;

  /* Typography */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;

  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
  --shadow-glow: 0 0 30px rgba(33, 150, 243, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--aquamarine);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--aqua-deep);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

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

/* Utility Classes */
.gold-text { color: var(--gold); }
.aqua-text { color: var(--aquamarine); }
.aqua-light-text { color: var(--aqua-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--lime), var(--lime-deep));
  color: var(--deep-navy);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(107, 224, 11, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107, 224, 11, 0.5);
  color: var(--deep-navy);
}

.btn-dark {
  background: var(--deep-navy);
  color: var(--white);
}

.btn-dark:hover {
  background: #0D47A1;
  transform: translateY(-2px);
  color: var(--white);
}

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

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

.btn-icon {
  width: 18px;
  height: 18px;
}

.btn-icon-right {
  width: 18px;
  height: 18px;
}

/* ============================================
   SECTION 1: NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.navbar.scrolled .nav-logo-text {
  color: var(--deep-navy);
}

.navbar.scrolled .nav-link {
  color: var(--text-secondary);
}

.navbar.scrolled .nav-link:hover {
  color: var(--aquamarine);
}

.navbar.scrolled .nav-hamburger span {
  background: var(--deep-navy);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition-base);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width var(--transition-base);
}

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

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--lime), var(--lime-deep));
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(107, 224, 11, 0.3);
}

.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107, 224, 11, 0.4);
  color: rgba(255, 255, 255, 1) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   SECTION 2: HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--blue-bright) 0%, var(--blue-medium) 35%, var(--aqua-deep) 70%, var(--deep-navy) 100%);
  overflow: hidden;
  padding-top: 80px;
  border-top: 5px solid var(--lime);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(66, 165, 245, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(107, 224, 11, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(21, 101, 192, 0.12) 0%, transparent 40%);
  animation: bgFloat 20s ease-in-out infinite alternate;
}

@keyframes bgFloat {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.05) translate(-10px, -10px); }
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 40px 0;
}

/* Hero Product Name */
.hero-product-name {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.hero-app-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-app-name {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(107, 224, 11, 0.12);
  border: 1px solid rgba(107, 224, 11, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lime);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-app-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-on-dark);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-store-badges {
  display: flex;
  gap: 12px;
  align-items: center;
}

.store-badge {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.store-badge:hover {
  transform: scale(1.05);
}

.store-badge-svg {
  height: 40px;
  width: auto;
}

.store-badge-img {
  height: 168px;
  width: auto;
  max-width: 200px;
  border-radius: 8px;
  display: block;
  background: transparent;
  padding: 0 5px;
}

.store-badge-styled {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 8px 16px 8px 12px;
  transition: all var(--transition-fast);
}

.store-badge:hover .store-badge-styled {
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-badge-text small {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.store-badge-text strong {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-store-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.store-badge {
  display: inline-flex;
  transition: transform var(--transition-fast);
}

.store-badge:hover {
  transform: scale(1.05);
}

/* Hero Visual / Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.phone-mockup {
  position: relative;
  z-index: 2;
}

/* Hero phone screenshot (no frame) */
.hero-phone .phone-screenshot {
  width: 280px;
  height: auto;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  object-fit: cover;
}

/* Simple bordered screenshot (retailer, etc.) */
.phone-screenshot {
  width: 280px;
  height: auto;
  display: block;
  border: 4px solid rgba(88, 192, 13, 0.21);
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 1);
  object-fit: cover;
}

.phone-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--aqua-light);
  font-size: 16px;
  font-weight: 600;
}

.phone-placeholder small {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

/* Floating cards around phone */
.hero-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.hero-floating-card strong {
  font-size: 13px;
  display: block;
  color: var(--text-primary);
}

.hero-floating-card small {
  font-size: 11px;
  color: var(--text-muted);
}

.hero-floating-card.card-1 {
  top: 20%;
  right: -10px;
  animation-delay: 0s;
}

.hero-floating-card.card-2 {
  bottom: 25%;
  left: -20px;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ============================================
   SECTION 3: STATS BAR
   ============================================ */
.stats-bar {
  background: var(--white);
  padding: 60px 0;
  position: relative;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 10px 20px;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--deep-navy);
  line-height: 1;
  margin-bottom: 6px;
}

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

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--aqua-light), transparent);
}

/* ============================================
   SECTION HEADERS (Shared)
   ============================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--aqua-pale);
  color: var(--blue-medium);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Light variant (for dark backgrounds) */
.section-header.light .section-tag {
  background: rgba(144, 224, 239, 0.15);
  color: var(--aqua-light);
}

.section-header.light .section-tag.light {
  background: rgba(144, 224, 239, 0.15);
  color: var(--aqua-light);
}

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

.section-subtitle.light {
  color: var(--text-on-dark);
}

/* ============================================
   SECTION 4: CONSUMERS
   ============================================ */
.consumers-section {
  padding: var(--section-padding);
  background: var(--off-white);
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--lime));
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--aqua-pale), rgba(33, 150, 243, 0.12));
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--blue-medium);
}

.feature-icon-wrap i,
.feature-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-screenshot-placeholder {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, var(--aqua-pale), #e3f2fd);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--blue-medium);
  font-size: 13px;
  font-weight: 500;
}

.feature-screenshot-placeholder i,
.feature-screenshot-placeholder svg {
  width: 28px;
  height: 28px;
  opacity: 0.5;
}

/* Real screenshot containers */
.feature-screenshot-wrap {
  width: 100%;
  height: 600px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: transparent;
  border: 1px solid transparent;
  text-align: center;
}

.feature-screenshot {
  width: 287px;
  height: 600px;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
  background-color: #fff;
  border: 1px solid #c4c4c4;
}

/* Section CTA */
.section-cta {
  text-align: center;
  padding: 48px;
  background: linear-gradient(135deg, var(--blue-medium), var(--deep-navy));
  border-radius: var(--radius-xl);
  color: var(--white);
}

.section-cta h3 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 10px;
}

.section-cta p {
  color: var(--text-on-dark);
  margin-bottom: 24px;
  font-size: 17px;
}

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

/* ============================================
   SECTION 5: RETAILERS
   ============================================ */
.retailers-section {
  padding: var(--section-padding);
  background: var(--sand);
}

/* Retailer App Showcase */
.retailer-app-showcase {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.retailer-app-phone {
  display: flex;
  justify-content: center;
}

.retailer-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(107, 224, 11, 0.1);
  border: 1px solid rgba(107, 224, 11, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lime-deep);
  margin-bottom: 16px;
}

.retailer-app-badge i,
.retailer-app-badge svg {
  width: 16px;
  height: 16px;
}

.retailer-app-info h3 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 14px;
}

.retailer-app-info > p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.retailer-app-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.retailer-app-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
}

.retailer-app-feature:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.retailer-app-feature > i,
.retailer-app-feature > svg {
  width: 22px;
  height: 22px;
  color: var(--blue-medium);
  flex-shrink: 0;
  margin-top: 2px;
}

.retailer-app-feature strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.retailer-app-feature span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Retailer Divider */
.retailer-divider {
  text-align: center;
  margin: 60px 0;
  position: relative;
}

.retailer-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.retailer-divider span {
  position: relative;
  display: inline-block;
  padding: 8px 24px;
  background: var(--sand);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.06);
}

.retailer-features {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 48px;
}

.retailer-feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.retailer-feature-block.reverse {
  direction: rtl;
}

.retailer-feature-block.reverse > * {
  direction: ltr;
}

.retailer-feature-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--aqua-pale);
  line-height: 1;
  margin-bottom: 8px;
}

.retailer-feature-content h3 {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
}

.retailer-feature-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.feature-checklist i,
.feature-checklist svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

/* Desktop Mockup */
.desktop-mockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0,0,0,0.06);
}

.desktop-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}

.toolbar-title {
  margin-left: 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #22c55e; }

.desktop-screen {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}

.desktop-mockup.large .desktop-screen {
  min-height: 350px;
}

.desktop-screenshot {
  width: 100%;
  height: auto;
}

.screen-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  padding: 40px;
}

.screen-placeholder i,
.screen-placeholder svg {
  opacity: 0.4;
}

.screen-placeholder span {
  font-size: 15px;
  font-weight: 600;
}

.screen-placeholder small {
  font-size: 12px;
}

/* ============================================
   SECTION 6: GOVERNMENT
   ============================================ */
.government-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--deep-navy), #0A2A5E);
  color: var(--white);
}

.gov-subsection {
  margin-bottom: 80px;
}

.gov-subsection:last-child {
  margin-bottom: 0;
}

.gov-subsection-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.gov-subsection-title i,
.gov-subsection-title svg {
  width: 28px;
  height: 28px;
  color: var(--aquamarine);
}

.gov-subsection-desc {
  font-size: 16px;
  color: var(--text-on-dark);
  margin-bottom: 36px;
  max-width: 600px;
}

.gov-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.gov-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition-base);
}

.gov-feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(33, 150, 243, 0.3);
  transform: translateY(-2px);
}

.gov-feature-card i,
.gov-feature-card svg {
  width: 24px;
  height: 24px;
  color: var(--aquamarine);
  margin-bottom: 14px;
}

.gov-feature-card h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.gov-feature-card p {
  font-size: 14px;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
}

.gov-screenshot-showcase {
  max-width: 900px;
  margin: 0 auto;
}

/* Shelf App Features */
.shelf-app-features {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: center;
}

.shelf-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shelf-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.shelf-feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.shelf-feature-item > i,
.shelf-feature-item > svg {
  width: 22px;
  height: 22px;
  color: var(--aquamarine);
  flex-shrink: 0;
  margin-top: 2px;
}

.shelf-feature-item strong {
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
  color: var(--white);
}

.shelf-feature-item p {
  font-size: 13px;
  color: var(--text-on-dark-muted);
  margin: 0;
  line-height: 1.5;
}

.shelf-app-phone {
  display: flex;
  justify-content: center;
}

.phone-mockup.small .phone-screenshot {
  width: 220px;
}

/* ============================================
   SECTION 7: HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: var(--section-padding);
  background: var(--white);
}

.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 0 28px;
  flex: 1;
  position: relative;
}

.step-number {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: var(--deep-navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.step-icon-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--aqua-pale), rgba(33, 150, 243, 0.12));
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--blue-medium);
}

.step-icon-wrap i,
.step-icon-wrap svg {
  width: 32px;
  height: 32px;
}

.step h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 80px;
  flex-shrink: 0;
}

.step-connector svg {
  width: 60px;
  height: 20px;
}

/* ============================================
   SECTION 8: ECOSYSTEM
   ============================================ */
.ecosystem {
  padding: var(--section-padding);
  background: var(--off-white);
}

.ecosystem-diagram {
  position: relative;
}

.eco-center {
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-medium), var(--deep-navy));
  border-radius: 50%;
  margin: 0 auto 48px;
  color: var(--white);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(33, 150, 243, 0.25);
}

.eco-center-icon i,
.eco-center-icon svg {
  width: 32px;
  height: 32px;
}

.eco-center span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.eco-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.eco-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.eco-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.eco-card.consumers-card::before { background: var(--aquamarine); }
.eco-card.retailers-card::before { background: var(--lime); }
.eco-card.retailers-web-card::before { background: var(--gold-deep); }
.eco-card.gov-card::before { background: var(--deep-navy); }
.eco-card.inspector-card::before { background: var(--green); }

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

.eco-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin: 0 auto 16px;
}

.consumers-card .eco-card-icon { background: var(--aqua-pale); color: var(--aqua-deep); }
.retailers-card .eco-card-icon { background: #E8FFE0; color: #2E7D32; }
.retailers-web-card .eco-card-icon { background: #FFF3D6; color: var(--gold-deep); }
.gov-card .eco-card-icon { background: #E0E7ED; color: var(--deep-navy); }
.inspector-card .eco-card-icon { background: #DCFCE7; color: #15803D; }

.eco-card-icon i,
.eco-card-icon svg {
  width: 26px;
  height: 26px;
}

.eco-card h4 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.eco-card-audience {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.eco-card p:last-child {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   SECTION 9: COVERAGE
   ============================================ */
.coverage {
  padding: var(--section-padding);
  background: var(--white);
}

/* Island Coverage Cards */
.islands-coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.island-coverage-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.island-coverage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.island-coverage-card.primary {
  background: linear-gradient(135deg, var(--blue-medium), var(--deep-navy));
  color: var(--white);
  grid-column: span 2;
}

.island-coverage-card.primary h3 {
  color: var(--white);
  font-size: 22px;
}

.island-coverage-card.primary .island-coverage-stores {
  color: rgba(255, 255, 255, 0.9);
}

.island-coverage-card.primary .island-coverage-details {
  color: rgba(255, 255, 255, 0.6);
}

.island-coverage-card.primary .island-coverage-icon i {
  color: var(--lime);
}

.island-coverage-card.coming-soon {
  border: 2px dashed rgba(0, 0, 0, 0.1);
  background: var(--white);
}

.island-coverage-card.coming-soon .island-coverage-icon i {
  color: #FFB703;
}

.island-coverage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.island-coverage-icon i {
  width: 24px;
  height: 24px;
  color: var(--aquamarine);
}

.island-coverage-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.primary-badge {
  background: rgba(107, 224, 11, 0.2);
  color: var(--lime);
}

.active-badge {
  background: rgba(107, 224, 11, 0.12);
  color: #4a9e08;
}

.upcoming-badge {
  background: rgba(255, 183, 3, 0.15);
  color: #c68a00;
}

.island-coverage-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.island-coverage-stores {
  font-size: 15px;
  font-weight: 700;
  color: var(--aquamarine);
  margin-bottom: 8px;
}

.island-coverage-details {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.coverage-expansion-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  padding: 16px 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.coverage-expansion-note i {
  width: 18px;
  height: 18px;
  color: var(--aquamarine);
  flex-shrink: 0;
}

.coverage-expansion-note p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 900px) {
  .islands-coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .island-coverage-card.primary {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .islands-coverage-grid {
    grid-template-columns: 1fr;
  }
  .island-coverage-card.primary {
    grid-column: span 1;
  }
}

.islands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.island-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

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

.island-card.primary {
  background: linear-gradient(135deg, var(--blue-medium), var(--deep-navy));
  color: var(--white);
}

.island-card.primary h3,
.island-card.primary .island-detail {
  color: var(--white);
}

.island-card.coming-soon {
  opacity: 0.7;
  border: 2px dashed var(--aqua-light);
}

.island-icon {
  margin-bottom: 12px;
}

.island-icon i,
.island-icon svg {
  width: 28px;
  height: 28px;
  color: var(--aquamarine);
}

.island-card.primary .island-icon i,
.island-card.primary .island-icon svg {
  color: var(--lime);
}

.island-card h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.island-detail {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.island-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.island-card.primary .island-badge {
  background: rgba(118, 255, 3, 0.2);
  color: var(--lime);
}

.island-badge.active {
  background: #DCFCE7;
  color: #15803D;
}

.island-badge.upcoming {
  background: rgba(33, 150, 243, 0.1);
  color: var(--blue-medium);
}

/* ============================================
   SECTION 10: FAQ
   ============================================ */
.faq-section {
  padding: var(--section-padding);
  background: var(--off-white);
}

.faq-container {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: rgba(33, 150, 243, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--aquamarine);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--aquamarine);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--aquamarine);
  font-weight: 600;
}

/* ============================================
   SECTION 11: PARTNERS
   ============================================ */
.partners-section {
  padding: var(--section-padding);
  background: var(--white);
}

.partners-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.partner-item:hover {
  border-color: rgba(33, 150, 243, 0.2);
  transform: translateY(-2px);
}

.partner-item.highlight {
  background: linear-gradient(135deg, var(--blue-medium), var(--deep-navy));
  color: var(--white);
}

.partner-item.highlight span {
  color: var(--white);
}

.partner-item.highlight small {
  color: var(--aqua-light);
}

.partner-icon-placeholder {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(33, 150, 243, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.partner-item.highlight .partner-icon-placeholder {
  background: rgba(255, 255, 255, 0.15);
}

.partner-icon-placeholder i,
.partner-icon-placeholder svg {
  width: 24px;
  height: 24px;
  color: var(--aqua-deep);
}

.partner-item.highlight .partner-icon-placeholder i,
.partner-item.highlight .partner-icon-placeholder svg {
  color: var(--aqua-light);
}

.partner-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.partner-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.partner-item small {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   SECTION 12: FOOTER
   ============================================ */
.site-footer {
  position: relative;
  background: var(--deep-navy);
  color: var(--white);
  padding-top: 40px;
}

.footer-wave {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  padding: 60px 0 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--aquamarine);
  color: var(--white);
}

.footer-social i,
.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--white);
  transition: color var(--transition-fast);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-contact a {
  color: var(--aquamarine);
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--aqua-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: var(--white);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--white);
  font-size: 13px;
}

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

.footer-credit {
  text-align: center;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 16px;
}

.footer-credit p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: var(--aquamarine);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--deep-navy);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--aquamarine);
  transform: translateY(-2px);
}

.back-to-top i,
.back-to-top svg {
  width: 22px;
  height: 22px;
}

/* ============================================
   ANIMATIONS (Scroll Reveal)
   ============================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   RESPONSIVE — TABLET (768px - 1199px)
   ============================================ */
@media (max-width: 1199px) {
  .hero-container {
    gap: 40px;
  }

  .hero-headline {
    font-size: clamp(36px, 4.5vw, 52px);
  }

  .hero-phone .phone-screenshot {
    width: 240px;
  }

  .phone-screenshot {
    width: 240px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gov-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .eco-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   RESPONSIVE — MOBILE (<768px)
   ============================================ */
@media (max-width: 767px) {
  :root {
    --section-padding: 70px 0;
  }

  /* NAV */
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-base);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 14px 0;
    color: var(--text-primary) !important;
    font-size: 16px;
    border-bottom: 1px solid #f1f5f9;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta-btn {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
  }

  /* Overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
  }

  .nav-overlay.active {
    display: block;
  }

  /* HERO */
  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-store-badges {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-phone .phone-screenshot {
    width: 220px;
  }

  .phone-screenshot {
    width: 220px;
  }

  .hero-floating-card {
    display: none;
  }

  .hero-wave svg {
    height: 50px;
  }

  /* STATS */
  .stats-grid {
    flex-direction: column;
    gap: 24px;
  }

  .stat-divider {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--aqua-light), transparent);
  }

  .stat-number {
    font-size: 40px;
  }

  /* FEATURES */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* RETAILERS */
  .retailer-app-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .retailer-app-phone {
    order: -1;
  }

  .retailer-app-showcase .phone-screenshot {
    width: 240px;
  }

  .retailer-feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .retailer-feature-block.reverse {
    direction: ltr;
  }

  /* GOVERNMENT */
  .gov-features-grid {
    grid-template-columns: 1fr;
  }

  .shelf-app-features {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .shelf-app-phone {
    order: -1;
  }

  /* HOW IT WORKS */
  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .step-connector {
    padding-top: 0;
    transform: rotate(90deg);
  }

  /* ECOSYSTEM */
  .eco-cards {
    grid-template-columns: 1fr;
  }

  /* COVERAGE */
  .islands-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  /* PARTNERS */
  .partners-grid {
    flex-direction: column;
    align-items: center;
  }

  .partner-item {
    width: 100%;
    max-width: 300px;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* BUTTONS */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-lg {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (<480px)
   ============================================ */
@media (max-width: 479px) {
  .hero-headline {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .feature-card {
    padding: 24px;
  }

  .section-cta {
    padding: 32px 20px;
  }
}

/* ============================================
   TABLET LANDSCAPE (768px - 1024px) — Extra
   ============================================ */
@media (min-width: 768px) and (max-width: 1024px) {
  .islands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .eco-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .retailer-app-showcase {
    grid-template-columns: 260px 1fr;
    gap: 40px;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .navbar, .back-to-top, .hero-bg-pattern, .hero-wave, .footer-wave {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  section {
    page-break-inside: avoid;
  }
}

/* ============================================
   PARTNERS TIERED LAYOUT
   ============================================ */
.partners-tier {
  margin-bottom: 36px;
}

.partners-tier:last-child {
  margin-bottom: 0;
}

.partners-tier-label {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
  position: relative;
}

.partners-tier-label::before,
.partners-tier-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 80px);
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.partners-tier-label::before {
  left: 0;
}

.partners-tier-label::after {
  right: 0;
}

.partners-tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 400px;
  margin: 0 auto;
}

.partners-tier-grid.single {
  grid-template-columns: 1fr;
  max-width: 300px;
  gap: 0;
}

.partner-item.featured {
  border: 2px solid rgba(33, 150, 243, 0.2);
  background: rgba(33, 150, 243, 0.04);
}

.partner-item.featured .partner-icon-placeholder {
  width: 80px;
  height: 80px;
}

.partner-item.featured .partner-logo-img {
  width: 68px;
  height: 68px;
}

.partner-item.featured span {
  font-weight: 700;
  font-size: 15px;
}

@media (max-width: 767px) {
  .partners-tier-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .partners-tier-label::before,
  .partners-tier-label::after {
    width: calc(50% - 60px);
  }
}

/* ============================================
   BETA MODAL POPUP
   ============================================ */
.beta-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.beta-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.beta-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  padding: 40px 36px 32px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.beta-modal-overlay.hidden .beta-modal {
  transform: translateY(20px);
}

.beta-modal-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--aquamarine), var(--lime));
}

.beta-modal-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--lime), var(--lime-deep));
  color: var(--deep-navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
}

.beta-modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  margin-bottom: 20px;
}

.beta-modal h3 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--deep-navy);
  margin: 0 0 12px;
}

.beta-modal p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 8px;
}

.beta-modal-note {
  font-size: 13px !important;
  color: var(--text-tertiary) !important;
  background: var(--off-white);
  border-radius: 10px;
  padding: 12px 16px;
  margin: 16px 0 24px !important;
}

.beta-modal-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--lime), var(--lime-deep));
  color: var(--deep-navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 16px rgba(107, 224, 11, 0.3);
}

.beta-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107, 224, 11, 0.45);
}

@media (max-width: 479px) {
  .beta-modal {
    padding: 36px 24px 28px;
  }
  .beta-modal-icon {
    width: 60px;
    height: 60px;
  }
  .beta-modal h3 {
    font-size: 20px;
  }
  .beta-modal p {
    font-size: 14px;
  }
}

/* ============================================
   BETA NOTICE BANNER
   ============================================ */
.beta-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--deep-navy);
  border-top: 3px solid var(--lime);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.beta-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.beta-banner-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
}

.beta-banner-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 224, 11, 0.15);
  border-radius: 10px;
}

.beta-banner-icon i,
.beta-banner-icon svg {
  width: 22px;
  height: 22px;
  color: var(--lime);
}

.beta-banner-text {
  flex: 1;
}

.beta-banner-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.beta-banner-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}

.beta-banner-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.beta-banner-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.beta-banner-close i,
.beta-banner-close svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767px) {
  .beta-banner-content {
    padding: 14px 16px;
    gap: 12px;
  }
  .beta-banner-icon {
    display: none;
  }
  .beta-banner-text strong {
    font-size: 14px;
  }
  .beta-banner-text p {
    font-size: 12px;
  }
}

/* ============================================
   COVERAGE MAP SECTION
   ============================================ */
.coverage {
  padding: 80px 0;
  background: var(--off-white);
}

.coverage-map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
}

.coverage-map {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  z-index: 1;
}

.coverage-legend {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.active {
  background: var(--lime);
  box-shadow: 0 0 6px rgba(107, 224, 11, 0.5);
}

.legend-dot.upcoming {
  background: #FFB703;
  box-shadow: 0 0 6px rgba(255, 183, 3, 0.5);
}

.coverage-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.coverage-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-width: 180px;
}

.coverage-stat strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.coverage-stat span {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Custom Leaflet tooltip */
.leaflet-tooltip.island-tooltip {
  background: var(--deep-navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.leaflet-tooltip.island-tooltip::before {
  border-top-color: var(--deep-navy);
}

.island-tooltip-content strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.island-tooltip-content span {
  font-weight: 400;
  opacity: 0.8;
  font-size: 12px;
}

.island-popup h4 {
  margin: 0 0 4px 0;
  font-size: 15px;
  color: var(--deep-navy);
}

.island-popup .popup-stores {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 6px 0;
}

.island-popup .popup-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}

.island-popup .popup-badge.active {
  background: rgba(107, 224, 11, 0.15);
  color: #4a9e08;
}

.island-popup .popup-badge.primary {
  background: rgba(33, 150, 243, 0.15);
  color: var(--aqua-deep);
}

.island-popup .popup-badge.upcoming {
  background: rgba(255, 183, 3, 0.15);
  color: #c68a00;
}

@media (max-width: 767px) {
  .coverage-map {
    height: 350px;
  }
  .coverage-stats {
    gap: 8px;
  }
  .coverage-stat {
    min-width: 140px;
    padding: 10px 16px;
  }
}
