@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* CoreAxis Theme Colors */
  --primary: #3b82f6; /* Premium Indigo/Blue */
  --primary-hover: #2563eb;
  --primary-light: rgba(59, 130, 246, 0.1);
  
  --bg-primary: #030712; /* Deepest black-slate */
  --bg-secondary: #090e1a; /* Cool dark slate */
  
  --text-primary: #f9fafb; /* Stark white */
  --text-secondary: #9ca3af; /* Calm slate gray */
  --text-muted: #6b7280; /* Dark gray for minor details */
  
  --border-color: #1f2937; /* Thin gray border */
  --border-focus: #3b82f6;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
  
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-primary);
  /* Cool repeating grid background */
  background-image: 
    linear-gradient(to right, rgba(59, 130, 246, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(59, 130, 246, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  background-attachment: fixed;
}

/* Dark Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border: 2px solid var(--bg-primary);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
}

/* Header Navigation (CoreAxis Style floating transparent glass) */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(3, 7, 18, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
  transition: var(--transition);
}

header.scrolled {
  background-color: rgba(3, 7, 18, 0.95);
  padding: 0.5rem 0;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Fixed Logo Aspect Ratio & Enlarge */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
}

.logo-link:hover {
  opacity: 0.9;
}

.logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

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

/* App Store download button */
.cta-button {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.cta-button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

/* Sections Base Layout */
section {
  padding: 8rem 1.5rem;
  position: relative;
}

section.bg-alt {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.section-header {
  max-width: 650px;
  margin-bottom: 4rem;
}

.section-header-center {
  max-width: 650px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Centered Hero Layout with subtle blue glows */
.hero {
  padding-top: 14rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.hero-brand-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero-logo-img {
  height: 200px; /* ENLARGED: Extremely clear and prominent brand icon heading */
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.hero-subtitle {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: -0.5rem;
  margin-bottom: 0.25rem;
}

.hero-desc-centered {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
}

.download-badges-centered {
  margin-top: 0.5rem;
  margin-bottom: 3.5rem;
}

.hero-simulator-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  position: relative;
  z-index: 5;
}

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

.store-badge-link:hover {
  transform: translateY(-2px);
}

/* Phone Simulator - Bezelless Design */
.phone-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 290px;
  height: 590px;
  background: #090d16;
  border-radius: 36px;
  box-shadow: var(--shadow-lg), 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  border: 8px solid #1f2937;
  overflow: hidden;
}

/* Sleek Display Notch */
.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 18px;
  background: #030712;
  border-radius: 100px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notch-camera {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1f2937;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  overflow: hidden;
}

/* Simulated Content Screens */
.sim-screen {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(0.98);
  display: flex;
  flex-direction: column;
  padding: 2.75rem 1.25rem 1.25rem;
  z-index: 1;
}

.sim-screen.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}

.sim-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0.5rem;
}

.sim-back-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  color: #111827;
}

.sim-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  text-align: center;
  flex: 1;
}

.sim-draco-container {
  position: relative;
  height: 100px;
  margin: 0.5rem 0;
  display: flex;
  justify-content: center;
}

.sim-draco {
  height: 90px;
  object-fit: contain;
}

.sim-speech-bubble {
  position: absolute;
  right: 5px;
  top: 10px;
  background: white;
  border-radius: 12px;
  padding: 0.4rem 0.65rem;
  max-width: 120px;
  box-shadow: var(--shadow-md);
  font-size: 0.7rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.25;
  border: 1px solid #e5e7eb;
}

.sim-speech-bubble::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 14px;
  border-width: 6px 6px 6px 0;
  border-style: solid;
  border-color: transparent white transparent transparent;
}

.sim-target-container {
  display: flex;
  justify-content: center;
  margin: 0.25rem 0;
}

.sim-target-balloon {
  background: #f97316;
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sim-target-balloon.teal {
  background: #06b6d4;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.sim-target-balloon.pink {
  background: #ec4899;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.sim-target-balloon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.sim-target-shadow {
  width: 50px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0.15rem auto 0.75rem;
}

.sim-choices {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  margin-top: auto;
}

.sim-choice-card {
  flex: 1;
  background: white;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 2px solid #e5e7eb;
  transition: var(--transition);
}

.sim-choice-card:hover {
  transform: translateY(-2px);
  border-color: #111827;
}

.sim-choice-letter {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
}

.sim-choice-card img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.sim-choice-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: #4b5563;
  text-transform: uppercase;
}

.sim-choice-heart {
  font-size: 1.25rem;
  color: #ec4899;
}

.sim-choice-shape {
  width: 24px;
  height: 24px;
}
.sim-choice-shape.heart {
  color: #ec4899;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sim-choice-shape.square {
  background: #22c55e;
  border-radius: 4px;
}
.sim-choice-shape.circle {
  background: #ec4899;
  border-radius: 50%;
}

.sim-footer-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 0.6rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  border: 1px solid #e5e7eb;
}

.sim-level-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: #111827;
}

.sim-stars {
  color: #fbbf24;
  font-size: 0.7rem;
}

/* Victory Screen Setup */
.sim-victory-content {
  margin: auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.sim-victory-cup {
  font-size: 3rem;
}

.sim-victory-title {
  font-size: 1.35rem;
  color: #111827;
}

.sim-victory-text {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #4b5563;
}

.sim-replay-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.sim-replay-btn:hover {
  background-color: var(--primary-hover);
}

.sim-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: white;
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid #e5e7eb;
  z-index: 100;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.sim-popup.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.sim-popup-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.25rem;
}

.sim-popup-title {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
}

/* Alternating Feature Showcase Rows */
.features-container {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-top: 4rem;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-image-container {
  flex: 0 0 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Sleek Phone Frame for Screenshots */
.feature-phone-frame {
  position: relative;
  width: 250px;
  height: 500px;
  background: #090d16;
  border-radius: 36px;
  border: 8px solid #1f2937;
  box-shadow: 
    0 20px 40px -15px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: var(--transition);
}

.feature-phone-frame:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 
    0 30px 50px -15px rgba(59, 130, 246, 0.2),
    0 0 0 1px rgba(59, 130, 246, 0.1);
}

.feature-phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fits perfectly since frame is exactly the same aspect ratio as screenshots! */
  display: block;
}

.feature-text-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.feature-number {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.feature-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.feature-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.feature-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.feature-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.feature-bullet-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Parents Dashboard Value System (CoreAxis style minimal grid) */
.benefits-grid {
  display: grid;
  grid-template-cols: 1fr 1fr;
  gap: 3rem 4rem;
}

.benefit-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.benefit-icon-wrapper {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.benefit-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* CoreAxis Support Overhaul Elements */
.support-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.support-main-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.support-main-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0) 70%);
  pointer-events: none;
}

.support-badge {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* support-title: Force Single Line on Desktop */
.support-title {
  font-size: 1.8rem;
  font-weight: 700;
  max-width: none;
  width: 100%;
  text-align: center;
}

.support-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 550px;
  line-height: 1.6;
}

.support-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.support-link-email {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.95rem;
}

.support-link-email:hover {
  text-decoration: underline;
}

.support-grid-three {
  display: grid;
  grid-template-cols: repeat(3, 1fr);
  gap: 2rem;
}

.support-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.support-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  text-align: left;
  height: 100%;
}

.support-card-link:hover .support-card {
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

.support-card-icon {
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.support-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-primary);
}

.support-card-title svg {
  color: var(--text-muted);
}

.support-card-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Premium Download Modal Overlay & Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 3rem;
  width: 90%;
  max-width: 480px;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 
    0 30px 60px -15px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close-btn:hover {
  color: var(--text-primary);
}

.modal-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.modal-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.modal-secondary-btn {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.modal-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-muted);
}

/* Footer Section */
footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 6rem 1.5rem 3rem;
  font-size: 0.9rem;
}

/* Centered Footer layout (columns removed) */
.footer-brand-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand-centered img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.footer-desc {
  line-height: 1.6;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-cols: 1fr;
    gap: 4rem;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-title {
    font-size: 3.25rem;
  }
  
  .feature-row {
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 1.5rem;
  }
  
  .menu-toggle {
    display: block;
    z-index: 101;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--bg-secondary);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem;
    gap: 1.5rem;
    transition: var(--transition);
    z-index: 100;
    border-left: 1px solid var(--border-color);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-cta-btn {
    display: none;
  }
  
  .benefits-grid {
    grid-template-cols: 1fr;
    gap: 1rem;
  }
  
  .support-grid-three {
    grid-template-cols: 1fr;
    gap: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  /* Alternating Features stack */
  .features-container {
    gap: 6rem;
  }
  
  .feature-row, .feature-row.reverse {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }
  
  .feature-image-container {
    flex: 0 0 auto;
  }
  
  .feature-text-container {
    align-items: center;
    text-align: center;
  }
  
  .feature-bullet-item {
    justify-content: center;
  }
  
  .hero-logo-img {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

/* Policy Pages Layout */
.policy-container {
  max-width: 800px;
  margin: 12rem auto 8rem;
  padding: 0 1.5rem;
}

.policy-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  line-height: 1.8;
  text-align: left;
}

.policy-card h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-title);
  color: var(--text-primary);
}

.policy-last-updated {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  display: block;
}

.policy-card h2 {
  font-size: 1.5rem;
  margin-top: 2.2rem;
  margin-bottom: 0.85rem;
  font-family: var(--font-title);
  color: var(--text-primary);
}

.policy-card p {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

.policy-card ul {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.policy-card li {
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
}
