/* =============================================================================
   Camp Card - Modern CSS Stylesheet
   Scouting America Central Florida Council
   ============================================================================= */

/* -----------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   ----------------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --color-navy: #001a3a;
  --color-navy-dark: #00102c;
  --color-navy-light: #0d2c5e;
  --color-red: #d0002a;
  --color-red-dark: #b50024;
  --color-red-light: #e63950;
  --color-gold: #ffc72c;
  --color-white: #ffffff;
  --color-off-white: #f8fafc;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --color-ink: #0b1220;
  --color-muted: #64748b;

  /* Borders & Shadows */
  --border-light: rgba(0, 0, 0, 0.08);
  --border-medium: rgba(0, 0, 0, 0.12);
  --border-dark: rgba(0, 0, 0, 0.18);
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-red: 0 10px 25px -5px rgba(208, 0, 42, 0.25);
  --shadow-navy: 0 10px 25px -5px rgba(0, 26, 58, 0.25);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 9999px;

  /* Typography Scale (Fluid) */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --text-sm: clamp(0.8125rem, 0.775rem + 0.19vw, 0.875rem);
  --text-base: clamp(0.9375rem, 0.9rem + 0.19vw, 1rem);
  --text-lg: clamp(1.0625rem, 1rem + 0.31vw, 1.125rem);
  --text-xl: clamp(1.1875rem, 1.1rem + 0.44vw, 1.25rem);
  --text-2xl: clamp(1.375rem, 1.25rem + 0.63vw, 1.5rem);
  --text-3xl: clamp(1.75rem, 1.5rem + 1.25vw, 2rem);
  --text-4xl: clamp(2.25rem, 1.875rem + 1.88vw, 2.75rem);
  --text-5xl: clamp(2.75rem, 2.25rem + 2.5vw, 3.5rem);
  --text-6xl: clamp(3.5rem, 2.75rem + 3.75vw, 4.5rem);

  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 1.75;

  /* Letter Spacing */
  --tracking-tighter: -0.05em;
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.1em;

  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-prose: 72ch;
  --header-height: 80px;

  /* Transitions */
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 350ms;
}

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

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

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-ink);
  background: var(--color-white);
  min-height: 100vh;
  overflow-x: hidden;
}

img, picture, video, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

/* SVGs need explicit sizing - don't use height: auto */
svg {
  display: block;
  flex-shrink: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

p {
  margin-bottom: var(--space-4);
}

p:last-child {
  margin-bottom: 0;
}

/* -----------------------------------------------------------------------------
   Utility Classes
   ----------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-8);
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: var(--space-4);
  top: var(--space-4);
  width: auto;
  height: auto;
  padding: var(--space-3) var(--space-4);
  background: var(--color-white);
  border: 2px solid var(--color-navy);
  border-radius: var(--radius-md);
  z-index: 9999;
  font-weight: 600;
}

/* -----------------------------------------------------------------------------
   Buttons
   ----------------------------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--color-red);
  color: var(--color-white);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  box-shadow: var(--shadow-red);
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--color-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(208, 0, 42, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: transparent;
  color: var(--color-navy);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-gray-300);
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--color-gray-100);
  border-color: var(--color-gray-400);
}

.btn-secondary.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  color: var(--color-white);
  opacity: 0.9;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.btn-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* -----------------------------------------------------------------------------
   Header & Navigation
   ----------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  height: var(--header-height);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: 220px;
  height: auto;
}

@media (min-width: 768px) {
  .brand img {
    width: 280px;
  }
}

.site-nav {
  display: none;
  align-items: center;
  gap: var(--space-6);
}

@media (min-width: 1024px) {
  .site-nav {
    display: flex;
  }
}

.site-nav > a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-700);
  transition: color var(--duration-fast) var(--ease-out);
}

.site-nav > a:hover {
  color: var(--color-navy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: var(--space-4);
}

.nav-extra {
  display: none;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  background: var(--color-white);
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.hamburger {
  position: relative;
  width: 20px;
  height: 14px;
}

.hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 6px; }
.hamburger span:nth-child(3) { bottom: 0; }

/* Mobile Menu */
.site-nav.site-nav--open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: fixed;
  top: calc(var(--header-height) + var(--space-4));
  left: var(--space-4);
  right: var(--space-4);
  background: var(--color-white);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  gap: var(--space-1);
  box-shadow: var(--shadow-xl);
  z-index: 110;
}

.site-nav.site-nav--open > a {
  padding: var(--space-3) var(--space-2);
  font-size: var(--text-base);
  border-radius: var(--radius-md);
}

.site-nav.site-nav--open > a:hover {
  background: var(--color-gray-100);
}

.site-nav.site-nav--open .nav-actions {
  flex-direction: column;
  margin: var(--space-4) 0 0;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-light);
}

.site-nav.site-nav--open .nav-actions > * {
  width: 100%;
  justify-content: center;
}

.site-nav.site-nav--open .nav-extra {
  display: flex;
  flex-direction: column;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-light);
}

.site-nav.site-nav--open .nav-extra a {
  padding: var(--space-3) var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-muted);
}

body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 105;
}

/* -----------------------------------------------------------------------------
   Hero Section
   ----------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #2c4f79 0%, var(--color-navy) 50%, var(--color-navy-dark) 100%);
  color: var(--color-white);
  padding: var(--space-12) 0 var(--space-24);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(208, 0, 42, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  margin-bottom: var(--space-6);
  backdrop-filter: blur(8px);
}

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

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

.hero-copy h1 {
  font-size: var(--text-6xl);
  font-weight: 900;
  letter-spacing: var(--tracking-tighter);
  line-height: 0.95;
  margin-bottom: var(--space-2);
}

.hero-copy h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  opacity: 0.95;
  margin-bottom: var(--space-6);
}

.hero-description {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  opacity: 0.9;
  max-width: 540px;
}

.hero-description strong {
  color: var(--color-gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.store-badge {
  display: flex;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  transition: all var(--duration-normal) var(--ease-out);
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

.store-badge img {
  height: 44px;
  width: auto;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.trust-number {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-white);
}

.trust-label {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  opacity: 0.7;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Hero Card */
.hero-card {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 500px;
}

@media (min-width: 1024px) {
  .hero-card {
    justify-self: end;
    max-width: 100%;
    transform: rotate(-5deg) translateY(10px);
  }
}

.hero-card img {
  width: 100%;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-2xl);
}

/* Hero Card Composite (bg + lockup overlay) */
.hero-card-composite {
  position: relative;
  width: 100%;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }
}

@keyframes cardShine {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.hero-card-composite::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: cardShine 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
  border-radius: var(--radius-2xl);
}

.hero-card-composite .card-bg {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  box-shadow: none;
  border-radius: var(--radius-2xl);
}

.hero-card-composite .card-lockup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  max-width: 450px;
  height: auto;
  border: none;
  box-shadow: none;
  border-radius: 0;
  z-index: 5;
  /* Centered overlay - appears as one unified card */
}

.card-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, rgba(208, 0, 42, 0.3) 0%, transparent 60%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
}

/* -----------------------------------------------------------------------------
   Social Proof Section
   ----------------------------------------------------------------------------- */
.social-proof {
  padding: var(--space-8) 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--border-light);
}

.social-proof-label {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-muted);
  margin-bottom: var(--space-6);
}

.social-proof-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
}

.proof-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-gray-50);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-gray-600);
}

.proof-icon {
  width: 18px;
  height: 18px;
  color: var(--color-navy);
}

/* -----------------------------------------------------------------------------
   Section Headers
   ----------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-red);
  margin-bottom: var(--space-3);
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
}

/* -----------------------------------------------------------------------------
   Quick Features Strip (Compact)
   ----------------------------------------------------------------------------- */
.quick-features {
  padding: var(--space-16) 0 var(--space-20);
  background: var(--color-white);
}

.quick-features .section-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.quick-features .section-title {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.quick-features .section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-muted);
}

.quick-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  max-width: 700px;
  margin: 0 auto var(--space-10);
}

@media (min-width: 768px) {
  .quick-features-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
  }
}

.quick-feature {
  text-align: center;
  padding: var(--space-4);
}

.quick-feature * {
  box-sizing: border-box;
}

.quick-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  color: var(--color-gray-400);
}

.quick-feature-icon svg {
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  min-width: 32px;
  min-height: 32px;
  flex-shrink: 0;
}

.quick-feature h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-1);
}

.quick-feature p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: var(--leading-snug);
}

.quick-features-cta {
  text-align: center;
}

.quick-features-cta .btn-primary {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  font-weight: 600;
  min-width: 260px;
}

/* -----------------------------------------------------------------------------
   Detailed Features Section
   ----------------------------------------------------------------------------- */
.features {
  padding: var(--space-20) 0;
  background: var(--color-gray-50);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: var(--space-8);
  background: var(--color-white);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  transition: all var(--duration-normal) var(--ease-out);
}

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

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  max-width: 56px;
  min-height: 56px;
  max-height: 56px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
}

.feature-icon svg {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px;
  max-width: 28px;
  min-height: 28px;
  max-height: 28px;
  flex-shrink: 0;
}

.feature-icon--share {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
}

.feature-icon--track {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
}

.feature-icon--organize {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #166534;
}

.feature-icon--secure {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
  color: #9d174d;
}

.feature-icon--mobile {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  color: #3730a3;
}

.feature-icon--support {
  background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
  color: #9a3412;
}

.feature-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-3);
}

.feature-card p {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
}

/* -----------------------------------------------------------------------------
   How It Works Section
   ----------------------------------------------------------------------------- */
.how-it-works {
  padding: var(--space-20) 0;
  background: var(--color-gray-50);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .steps-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: var(--text-2xl);
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-navy);
}

.step-content h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-3);
}

.step-content p {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
  max-width: 280px;
}

.step-connector {
  display: none;
}

@media (min-width: 768px) {
  .step-connector {
    display: block;
    flex: 0 0 60px;
    height: 2px;
    background: linear-gradient(to right, var(--color-gray-300), var(--color-gray-200));
    margin-top: 32px;
  }
}

.steps-cta {
  text-align: center;
  margin-top: var(--space-12);
}

.steps-cta-note {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-muted);
}

/* -----------------------------------------------------------------------------
   Benefits Section
   ----------------------------------------------------------------------------- */
.benefits {
  padding: var(--space-20) 0;
  background: var(--color-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.benefits-content .section-label {
  text-align: left;
}

.benefits-content .section-title {
  text-align: left;
}

.benefits-intro {
  font-size: var(--text-lg);
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

.benefit-tabs {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.benefit-tab {
  padding: var(--space-6);
  background: var(--color-gray-50);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: all var(--duration-normal) var(--ease-out);
}

.benefit-tab:hover,
.benefit-tab.active {
  background: var(--color-white);
  border-color: var(--color-red);
  box-shadow: var(--shadow-md);
}

.benefit-tab h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-4);
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-gray-600);
  line-height: var(--leading-relaxed);
}

.benefit-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: var(--color-red);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.benefits-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  max-width: 400px;
}

.phone-mockup img {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
}

/* Benefits Card Composite - same style as hero */
.benefits-card-composite {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(0, 26, 58, 0.15);
  animation: cardFloat 6s ease-in-out infinite;
  animation-delay: 1s;
}

.benefits-card-composite::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: cardShine 4s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
  z-index: 10;
  border-radius: var(--radius-2xl);
}

.benefits-card-composite .card-bg {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  box-shadow: none;
  border-radius: var(--radius-2xl);
}

.benefits-card-composite .card-lockup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  max-width: 360px;
  height: auto;
  border: none;
  box-shadow: none;
  border-radius: 0;
  z-index: 5;
}

/* -----------------------------------------------------------------------------
   FAQ Section
   ----------------------------------------------------------------------------- */
.faq-section {
  padding: var(--space-20) 0;
  background: var(--color-gray-50);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

.faq-item:hover {
  border-color: var(--color-gray-300);
}

.faq-item[open] {
  border-color: var(--color-navy);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  list-style: none;
}

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

.faq-question {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-ink);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-gray-100);
  position: relative;
  transition: all var(--duration-normal) var(--ease-out);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--color-gray-500);
  transform: translate(-50%, -50%);
  transition: all var(--duration-normal) var(--ease-out);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon {
  background: var(--color-red);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: var(--color-white);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
}

.faq-answer a {
  color: var(--color-red);
  font-weight: 500;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* -----------------------------------------------------------------------------
   CTA Section
   ----------------------------------------------------------------------------- */
.cta-section {
  padding: var(--space-20) 0;
  background: var(--color-white);
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--color-navy-light) 0%, var(--color-navy) 50%, var(--color-navy-dark) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-12) var(--space-8);
  overflow: hidden;
  color: var(--color-white);
  text-align: center;
}

@media (min-width: 768px) {
  .cta-card {
    padding: var(--space-16) var(--space-12);
  }
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.cta-content > p {
  font-size: var(--text-lg);
  opacity: 0.9;
  margin-bottom: var(--space-8);
}

.cta-actions {
  margin-bottom: var(--space-6);
}

.store-badges--light .store-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.store-badges--light .store-badge:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.cta-links .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--color-white);
}

.cta-links .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cta-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-circles {
  position: absolute;
  inset: 0;
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.circle--1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
}

.circle--2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -50px;
}

.circle--3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

/* -----------------------------------------------------------------------------
   Footer
   ----------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-navy-dark);
  color: var(--color-white);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 2fr;
  }
}

.footer-brand img {
  width: 180px;
  margin-bottom: var(--space-4);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--leading-relaxed);
  max-width: 280px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

@media (min-width: 640px) {
  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--duration-fast) var(--ease-out);
}

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

/* -----------------------------------------------------------------------------
   Animations
   ----------------------------------------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-fade-in {
  animation: fadeIn 0.6s var(--ease-out) forwards;
  opacity: 0;
}

.animate-slide-up {
  animation: slideUp 0.6s var(--ease-out) forwards;
  opacity: 0;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* -----------------------------------------------------------------------------
   Page Hero (Internal Pages)
   ----------------------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, #2c4f79 0%, var(--color-navy) 60%, var(--color-navy-dark) 100%);
  color: var(--color-white);
  padding: var(--space-12) 0 var(--space-16);
}

.page-hero h1 {
  font-size: var(--text-5xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tighter);
  margin-bottom: var(--space-4);
}

.page-hero p {
  font-size: var(--text-lg);
  opacity: 0.9;
  max-width: 700px;
  line-height: var(--leading-relaxed);
}

/* -----------------------------------------------------------------------------
   Content Sections (Internal Pages)
   ----------------------------------------------------------------------------- */
.content-section {
  padding: var(--space-16) 0;
  border-top: 1px solid var(--border-light);
}

.content-section--no-border {
  border-top: none;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.prose {
  max-width: var(--max-width-prose);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.prose h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.prose h3 {
  font-size: var(--text-xl);
  margin: var(--space-8) 0 var(--space-4);
}

.prose ul, .prose ol {
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.prose li {
  margin-bottom: var(--space-2);
}

.prose ul li {
  list-style: disc;
}

.prose ol li {
  list-style: decimal;
}

.prose a {
  color: var(--color-red);
  font-weight: 500;
}

.prose a:hover {
  text-decoration: underline;
}

/* Cards */
.card {
  padding: var(--space-6);
  background: var(--color-white);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
}

.card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.card p {
  font-size: var(--text-base);
  color: var(--color-muted);
}

.card ul {
  padding-left: var(--space-5);
  margin: var(--space-4) 0;
}

.card li {
  list-style: disc;
  margin-bottom: var(--space-2);
  color: var(--color-gray-600);
}

/* Callout */
.callout {
  padding: var(--space-4) var(--space-5);
  background: rgba(208, 0, 42, 0.05);
  border: 1px solid rgba(208, 0, 42, 0.2);
  border-radius: var(--radius-lg);
  margin: var(--space-6) 0;
}

.callout strong {
  color: var(--color-red);
}

/* Summary Box */
.summary {
  padding: var(--space-5) var(--space-6);
  background: rgba(13, 44, 94, 0.05);
  border: 1px solid rgba(13, 44, 94, 0.15);
  border-radius: var(--radius-xl);
  margin: var(--space-6) 0;
}

.summary h2 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.summary ul {
  padding-left: var(--space-5);
}

.summary li {
  list-style: disc;
  margin-bottom: var(--space-2);
}

.summary a {
  color: var(--color-red);
  font-weight: 500;
}

/* TOC */
.toc {
  padding: var(--space-4) var(--space-5);
  background: var(--color-white);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-6);
}

.toc summary {
  font-weight: 700;
  color: var(--color-navy);
  cursor: pointer;
}

.toc ul {
  padding-left: var(--space-5);
  margin-top: var(--space-4);
}

.toc li {
  margin-bottom: var(--space-2);
}

.toc a {
  color: var(--color-navy);
}

.toc a:hover {
  text-decoration: underline;
}

/* Details List */
.details-list details {
  background: var(--color-white);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-3);
  overflow: hidden;
}

.details-list summary {
  padding: var(--space-4) var(--space-5);
  font-weight: 700;
  color: var(--color-navy);
  cursor: pointer;
}

.details-list details p {
  padding: 0 var(--space-5) var(--space-4);
  color: var(--color-muted);
}

/* CTA Band */
.cta-band {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-8);
  background: linear-gradient(135deg, var(--color-navy-light) 0%, var(--color-navy) 100%);
  border-radius: var(--radius-xl);
  color: var(--color-white);
}

@media (min-width: 768px) {
  .cta-band {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-band h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.cta-band p {
  opacity: 0.9;
  margin: 0;
}

.cta-band .cta-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.cta-band .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--color-white);
}

.cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Forms */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  font: inherit;
  transition: all var(--duration-fast) var(--ease-out);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(0, 26, 58, 0.1);
}

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

.hint {
  font-size: var(--text-sm);
  color: var(--color-muted);
  margin-top: var(--space-2);
}

/* Tables */
.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.table th {
  font-weight: 700;
  color: var(--color-navy);
}

.table td:last-child,
.table th:last-child {
  text-align: right;
}
