/* main.css – Aaro Cancer Care launch site */
:root {
  --navy: #002D5A;
  --teal: #2FAE90;
  --teal-light: #00CFA7;
  --orange: #FF6B35;
  --orange-light: #f37e54;
  --grey: #F6F8FA;
  --error: #dc3545;
  --success: #28a745;
  --space-xs: clamp(1rem, 2vw, 1.5rem);
  --space-sm: clamp(1.5rem, 3vw, 2rem);
  --space-md: clamp(2rem, 4vw, 3rem);
  --space-lg: clamp(3rem, 6vw, 4rem);
  --space-xl: clamp(4rem, 8vw, 6rem);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 32px;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 45, 90, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 45, 90, 0.1);
  --shadow-lg: 0 8px 20px rgba(0, 45, 90, 0.12);
  --shadow-xl: 0 12px 28px rgba(0, 45, 90, 0.15);
  
  /* Typography Scale */
  --text-hero: clamp(1.5rem, 4vw, 3rem); /*clamp(1.35rem, 5vw, 4rem);*/
  --text-section: clamp(1.5rem, 4vw, 3rem); /*clamp(1.5rem, 4vw, 3rem);*/
  --text-subsection: clamp(1rem, 3vw, 1.75rem);
  --text-body: clamp(0.8rem, 2.5vw, 1.125rem);
  --text-subtitle: clamp(0.8rem, 2.5vw, 1.25rem);
  --text-card-title: clamp(0.9rem, 2.5vw, 1.4rem);
  --text-card-body: clamp(0.75rem, 2vw, 1rem);
  --text-small: clamp(0.75rem, 2vw, 1rem);
  --text-micro: clamp(0.6rem, 1.5vw, 0.85rem);
  --text-tiny: clamp(0.55rem, 1.5vw, 0.9rem);
  --text-mini: clamp(0.5rem, 1.2vw, 0.75rem);
  --text-icon: clamp(1.2rem, 2.5vw, 2rem);
  --text-arrow: clamp(1rem, 2vw, 1.6rem);
}

/* Accessibility focus outlines */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px dashed var(--teal-light);
  outline-offset: 3px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
  text-decoration: none;
  transition: left 0.3s ease;
}
.skip-link:focus {
  left: 1rem;
}

/* Hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.3s ease;
}

.hamburger:hover {
  background-color: rgba(47, 174, 144, 0.1);
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

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

/* Prevent horizontal scrolling on mobile */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* Prevent dark mode color changes - force light mode colors */
html {
  color-scheme: light only;
}

body {
  font-family: var(--font-family);
  color: var(--navy);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: var(--text-hero);
  margin-bottom: 1rem;
  line-height: 1.1;
}

h2 {
  font-size: var(--text-section);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: var(--text-subsection);
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--text-body);
  margin-bottom: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Sections */
section {
  padding-block: var(--space-xl);
}

section:nth-of-type(even) {
  background: var(--grey);
}

.container {
  width: 100%;            /* full width, constrained only by max-width */
  max-width: 1200px;
  margin: 0 auto;         /* centre the max-width block */
  text-align: center;
  padding: 0 1rem;        /* consistent side padding */
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(47, 174, 144, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header .container {
  width: min(92%, 1200px);
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  gap: 1rem;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 2.64rem;
  height: 2.64rem;
  min-width: 2.64rem;
  min-height: 2.64rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast; /* crisper scaling on WebKit */
  image-rendering: optimizeQuality;
}

.logo-text {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 1;
  position: relative;
  top: -0.3px;
  /*white-space: nowrap;*/
}

.logo-aaro {
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  font-family: var(--font-family);
}

.logo-tagline {
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-family);
  /*white-space: nowrap;*/
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--teal);
  transition: width 0.3s ease;
}

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

.nav-links a:hover {
  color: var(--teal);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4480 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  padding-top: 6rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(47, 174, 144, 0.08) 0%, transparent 70%);
  animation: heroFloat 25s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 45, 90, 0.04) 0%, transparent 70%);
  animation: heroFloat 20s ease-in-out infinite reverse;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
  33% { transform: translateY(-30px) rotate(120deg) scale(1.1); }
  66% { transform: translateY(20px) rotate(240deg) scale(0.9); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.hero h1 {
  font-size: var(--text-hero);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero .subtitle {
  font-size: var(--text-subtitle);
  line-height: 1.5;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.launching-badge {
  background: var(--orange);
  color: #fff;
  padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
  border-radius: var(--radius-xl);
  font-size: var(--text-small);
  font-weight: 700;
  margin-top: 2rem;
  display: inline-block;
  animation: badgePulse 2s ease-in-out infinite;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(47, 174, 144, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 12px 35px rgba(47, 174, 144, 0.4); }
}

.cta-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-lg);
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-family);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, #00CFA7 100%);
  box-shadow: 0 4px 14px rgba(47, 174, 144, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(47, 174, 144, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Form error states */
.form-group input.error,
.form-group textarea.error {
  border-color: var(--error);
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.error-message {
  display: none;
  color: var(--error);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

.btn-loading {
  display: none;
}

/* Features Section */
.features {
  padding: var(--space-xl) 0;
  background: var(--grey);
  position: relative;
}

.section-title {
  text-align: center;
  font-size: var(--text-section);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  font-size: var(--text-subtitle);
  color: var(--navy);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  opacity: 0.7;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.feature-card {
  background: white;
  padding: var(--space-sm);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(47, 174, 144, 0.1);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xs);
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(47, 174, 144, 0.3);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

/* SVG Icons */
.icon-svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.feature-card h3 {
  font-size: var(--text-card-title);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.feature-card p {
  color: var(--navy);
  opacity: 0.7;
  line-height: 1.5;
  font-size: var(--text-card-body);
  margin-bottom: 0;
}

/* About Section */
.about {
  background: #ffffff;
  padding: var(--space-xl) 0;
}

/* Section Header */
.about-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.about-header h2 {
  color: var(--navy);
  font-size: var(--text-section);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-subtitle {
  font-size: var(--text-subtitle);
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Journey Comparison Container */
.journey-comparison {
  max-width: 1200px;
  margin: 0 auto 5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 0 1rem;
}

/* Shared Blocks (Steps 1,2 & 7) */
.journey-common {
  background: #f9fafc;
  border-left: 4px solid var(--navy);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.journey-common h3 {
  color: var(--navy);
  font-size: var(--text-subsection);
  text-align: center;
  margin-bottom: 1.5rem;
}

.journey-common .journey-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.journey-common.final-step .journey-steps {
  grid-template-columns: 1fr;
  padding: 1rem;
}

/* Journey Cards (Traditional vs Aaro) */
.journey-branches {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}

.journey-traditional,
.journey-aaro {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.journey-traditional {
  border-left: 4px solid #ff6b6b;
}

.journey-aaro {
  border-left: 4px solid var(--teal);
}

.journey-header {
  text-align: center;
  margin-bottom: 2rem;
}

.journey-header h3 {
  color: var(--navy);
  font-size: var(--text-subsection);
}

/* Steps Styling */
.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Ensure steps in branches align vertically */
.journey-branches .journey-steps {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.journey-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: left;
}

.journey-step:hover {
  background: rgba(47, 174, 144, 0.05);
  transform: translateX(5px);
}

.step-number {
  background: var(--navy);
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.journey-traditional .step-number {
  background: #ff6b6b;
}

.journey-aaro .step-number {
  background: var(--teal);
}

.step-content h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
  text-align: left;
}

.step-content p {
  color: #555;
  font-size: var(--text-card-body);
  line-height: 1.4;
  margin: 0;
  text-align: left;
}

/* VS Divider */
.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 400px;
}

.vs-circle {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: white;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

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

/* Mission Section */
.mission {
  background: var(--grey);
  padding: var(--space-xl) 0;
}

.mission-content {
  text-align: center;
  width: 100%;
}

.mission h2 {
  color: var(--navy);
  font-size: var(--text-section);
  margin-bottom: var(--space-sm);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mission-subtitle {
  font-size: var(--text-subtitle);
  color: #666;
  max-width: 1000px;
  margin: 0 auto var(--space-md);
  line-height: 1.6;
  padding: 0 var(--space-sm);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  margin-inline: auto;
}

.benefit-item {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.benefit-visual {
  margin-top: 2rem;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Savings Visual */
.savings-visual {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.cost-stack {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  flex-shrink: 0;
}

.traditional-costs {
  position: relative;
}

.cost-item {
  background: rgba(255, 107, 107, 0.1);
  border: 2px solid rgba(255, 107, 107, 0.2);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-micro);
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  min-width: 90px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.aaro-costs .cost-item.primary {
  background: rgba(47, 174, 144, 0.1);
  border: 2px solid rgba(47, 174, 144, 0.2);
  color: var(--teal);
  font-weight: 700;
}

.savings-arrow {
  font-size: var(--text-arrow);
  color: var(--teal);
  font-weight: 800;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Time Visual */
.time-visual {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  max-width: 100%;
}

.clock-traditional,
.clock-aaro {
  font-size: var(--text-icon);
  flex-shrink: 0;
}

.time-text {
  font-size: var(--text-tiny);
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
  min-width: 70px;
  max-width: 90px;
  flex-shrink: 0;
}

.time-text small {
  font-size: var(--text-mini);
  font-weight: 400;
  color: #666;
  display: block;
  margin-top: 0.1rem;
}

.time-arrow {
  font-size: var(--text-arrow);
  color: var(--teal);
  font-weight: 800;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Quality Badges */
.quality-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.quality-badges .quality-badge-row {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.quality-badge {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: white;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-micro);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  min-width: 90px;
}

.benefit-item h4 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 0;
  font-weight: 700;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for feature cards */
.feature-card.fade-in {
  transition-delay: calc(var(--delay) * 0.1s);
}

/* Data attribute alternative for delays */
.fade-in[data-delay="1"] { transition-delay: 0.1s; }
.fade-in[data-delay="2"] { transition-delay: 0.2s; }
.fade-in[data-delay="3"] { transition-delay: 0.3s; }
.fade-in[data-delay="4"] { transition-delay: 0.4s; }
.fade-in[data-delay="5"] { transition-delay: 0.5s; }
.fade-in[data-delay="6"] { transition-delay: 0.6s; }

/* Waitlist Section */
.waitlist {
  padding: var(--space-xl) 0;
  background: #002147 !important;
  color: #333333;
  position: relative;
  overflow: hidden;
}

/* Override browser automatic phone number link styling */
.waitlist a[href^="tel:"],
.waitlist a[href*="tel:"] {
  color: white !important;
  text-decoration: none !important;
}

/* Prevent automatic phone number detection styling */
.waitlist p {
  color: white;
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* Force all text in waitlist to be white, including detected phone numbers */
.waitlist * {
  color: white !important;
}

/* Override any browser-generated phone number links */
.waitlist a {
  color: white !important;
  text-decoration: none !important;
}

/* Commented out overlay effect
.waitlist::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(47, 174, 144, 0.05) 0%, transparent 70%);
  animation: waitlistFloat 30s linear infinite;
}
*/

@keyframes waitlistFloat {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.waitlist-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.waitlist h2 {
  font-size: var(--text-section);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.waitlist p {
  font-size: var(--text-subtitle);
  margin-bottom: var(--space-md);
  color: white;
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.form-group {
  margin-bottom: var(--space-sm);
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid rgba(47, 174, 144, 0.3);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-family);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(47, 174, 144, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

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

.submit-btn {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: white;
  padding: 1.3rem 3rem;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-family);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(47, 174, 144, 0.4);
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 35px rgba(47, 174, 144, 0.5);
}

/* Footer */
.footer {
  background: #001A3A;
  color: white;
  padding: var(--space-lg) 0;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-content p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin: 0;
  font-size: inherit;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero::before,
  .hero::after {
    animation: none;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 1rem;
  }

  .header {
    padding: 0.5rem 0;
  }

  .hero {
    min-height: calc(100vh - 60px);
    padding-top: 6rem;
  }

  .hero-content {
    padding: 1.5rem 0;
  }

  /* Hero text now uses consistent clamp() functions from main styles */

  /* Launching badge now uses consistent clamp() function from main styles */

  .logo-text {
    gap: 0.3rem;
    align-items: center;
    /*white-space: nowrap;*/
  }

  .logo-aaro {  
    font-size: clamp(1.4rem, 3.3vw, 2.2rem);
    letter-spacing: -0.02em;
    position: relative;
    top: -1px;
  }

  .logo-tagline {  
    font-size: clamp(0.8rem, 2.4vw, 1.6rem);
  }

  /* Logo text now uses consistent clamp() functions from main styles */

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 75%;
    max-width: 300px;
    background: #fff;
    flex-direction: column;
    gap: 1.5rem;
    padding: calc(var(--space-lg) + 1rem) 2rem;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
    transition: right 0.3s ease;
    z-index: 999;
  }

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

  body.nav-open {
    overflow: hidden;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .btn {
    width: 100%;
    max-width: 280px;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Feature card text sizing now handled by main clamp() functions */

  .journey-common .journey-steps {
    grid-template-columns: 1fr;
  }

  .journey-branches {
    display: flex;
    flex-direction: column;
  }

  .vs-divider {
    min-height: auto;
    height: 4rem;
  }

  .vs-circle {
    width: 3rem;
    height: 3rem;
  }

  .journey-comparison {
    gap: 2rem;
  }

  .journey-common,
  .journey-traditional,
  .journey-aaro {
    padding: 1.25rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .benefit-item {
    padding: 2rem 1.5rem;
  }

  /* Fix header spacing and alignment issues */
  .hero {
    padding-top: 6rem !important;
  }

  .logo-text {
    align-items: center !important;
    white-space: nowrap !important;
    gap: 0.4rem !important;
  }

  .logo-tagline {
    font-size: var(--text-logo-sub) !important;
  }
}

/* Additional small mobile improvements */
@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0 1rem;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-content {
    padding: 1rem 0;
  }

  /* Hero text uses main clamp() functions consistently */

  .logo-aaro {
    font-size: clamp(1.4rem, 3.3vw, 2.2rem);
    letter-spacing: -0.02em;
    position: relative;
    top: -2px;
  }

  .logo-tagline {  
    font-size: clamp(0.8rem, 2.4vw, 1.6rem);
    letter-spacing: -0.01em;
  }

  /* All text elements now use consistent clamp() functions */
  .btn {
    max-width: 250px;
    padding: 0.7rem 1.25rem;
  }

  .features-grid {
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }

  /* Feature card text sizing now handled by main clamp() functions */
  .feature-card h3 {
    margin-bottom: 0.5rem;
  }

  .feature-card p {
    line-height: 1.5;
    margin-bottom: 0;
  }

  .benefits-grid {
    gap: 1.5rem;
  }
  
  .benefit-item {
    padding: 1.5rem 1rem;
  }
  
  .benefit-visual {
    height: 100px;
    margin-bottom: 1.2rem;
  }
  
  .savings-visual {
    gap: 0.5rem;
  }

  .time-visual {
    gap: 0.4rem;
  }
  
  .cost-item {
    padding: 0.4rem 0.6rem;
    min-width: 80px;
  }
  
  .quality-badge {
    padding: 0.4rem 0.6rem;
    min-width: 80px;
  }
  
  .time-text {
    line-height: 1.3;
    min-width: 100px;
    max-width: 120px;
  }

  /* All visual and benefit text elements use consistent clamp() functions */
}

/* Ultra small screens */
@media (max-width: 360px) {
  .container {
    width: 100%;
    padding: 0 0.75rem;
  }

  .logo-aaro {
    font-size: clamp(1.4rem, 3.3vw, 2.2rem);
  }

  .logo-tagline {  
    font-size: clamp(0.8rem, 2.4vw, 1.6rem);
  }
  /* All text elements use consistent clamp() functions */
  .btn {
    max-width: 220px;
    padding: 0.6rem 1rem;
  }

  .feature-card {
    padding: 1.25rem 0.75rem;
  }

  /* Feature card text uses consistent clamp() functions */

  .benefit-item {
    padding: 1.2rem 0.8rem;
  }

  .cost-item {
    min-width: 75px;
    padding: 0.35rem 0.5rem;
  }
  
  .quality-badge {
    min-width: 75px;
    padding: 0.35rem 0.5rem;
  }

  .time-text {
    min-width: 85px;
    max-width: 100px;
  }

  /* Visual elements use consistent clamp() functions */
}

/* Mobile header alignment and spacing fixes */
@media (max-width: 768px) {
  .hero {
    padding-top: 6rem !important;
  }

  .logo-text {
    align-items: center !important;
    white-space: nowrap !important;
    gap: 0.4rem !important;
  }

  .logo-tagline {
    font-size: var(--text-logo-sub) !important;
  }
}


