/* ===================================
   JUST WALK - MARKETING WEBSITE
   Redesigned with App Color Theme
   =================================== */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* === CSS VARIABLES (from JustWalkTheme.swift) === */
:root {
  /* Primary Backgrounds */
  --bg-primary: #121220;
  --bg-card: #1C1C2E;
  --bg-tertiary: #26263B;

  /* Accent Colors */
  --accent: #34D399;
  --accent-blue: #4085FF;
  --accent-purple: #8C45FF;
  --streak-orange: #FF731A;
  --success: #4DD966;
  --danger: #FF5959;

  /* Ring Gradient */
  --ring-start: #20A080;
  --ring-mid: #34D399;
  --ring-end: #86EFAC;

  /* Text Colors */
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-tertiary: rgba(255, 255, 255, 0.45);

  /* Derived Colors */
  --accent-glow: rgba(52, 211, 153, 0.15);
  --accent-glow-strong: rgba(52, 211, 153, 0.25);
  --blue-glow: rgba(64, 133, 255, 0.15);
  --purple-glow: rgba(140, 69, 255, 0.15);
  --orange-glow: rgba(255, 115, 26, 0.15);

  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --card-shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.5);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
}

h3 {
  font-size: 1.375rem;
}

h4 {
  font-size: 1.125rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--ring-end);
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* === UTILITY CLASSES === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-narrow {
  max-width: 800px;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-mint {
  background: linear-gradient(135deg, var(--ring-start), var(--accent), var(--ring-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-secondary { color: var(--text-secondary); }
.text-tertiary { color: var(--text-tertiary); }
.text-center { text-align: center; }

/* === SCROLL ANIMATIONS === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Stagger children animations */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* === BUTTONS === */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--ring-end));
  color: #000;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px var(--accent-glow-strong), 0 8px 32px var(--accent-glow);
  text-decoration: none;
  color: #000;
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-tertiary);
  border-color: var(--border-hover);
  text-decoration: none;
  color: var(--text-primary);
}

.btn-small {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* === HEADER (Glass Effect) === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-sm) 0;
  background: rgba(18, 18, 32, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s ease;
}

.header.scrolled {
  background: rgba(18, 18, 32, 0.95);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--ring-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  min-width: 32px;
  min-height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-desktop a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-desktop a:hover {
  color: var(--text-primary);
  text-decoration: none;
}

.nav-desktop .btn-primary {
  color: #000;
}

.nav-desktop .btn-primary:hover {
  color: #000;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 1px;
}

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

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

.nav-mobile {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--bg-card);
  padding: var(--space-md);
  border-bottom: 1px solid var(--border-color);
  flex-direction: column;
  gap: var(--space-xs);
}

.nav-mobile a {
  color: var(--text-primary);
  padding: var(--space-sm) 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile.active {
  display: flex;
}

/* === HERO === */
.hero {
  padding: calc(var(--space-3xl) + 80px) 0 var(--space-3xl);
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtle gradient background */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-glow) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, var(--blue-glow) 0%, transparent 40%);
  pointer-events: none;
}

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

.hero-content h1 {
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  max-width: 520px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.hero-note {
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

/* Phone Mockup */
.hero-image {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 300px;
  height: 620px;
  background: linear-gradient(145deg, var(--bg-tertiary), var(--bg-card));
  border-radius: 52px;
  padding: 12px;
  margin: 0 auto;
  box-shadow:
    var(--card-shadow),
    0 0 0 1px var(--border-color),
    0 0 60px var(--accent-glow);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

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

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 32px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  border-radius: 44px;
  overflow: hidden;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 44px;
}

.placeholder-screen {
  text-align: center;
  padding: var(--space-lg);
}

.placeholder-ring {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--space-md);
  position: relative;
}

.ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: var(--bg-tertiary);
  stroke-width: 10;
}

.ring-progress {
  fill: none;
  stroke: url(#ringGradient);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 70;
  animation: ring-fill 2s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes ring-fill {
  from { stroke-dashoffset: 283; }
  to { stroke-dashoffset: 70; }
}

.placeholder-steps {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  font-variant-numeric: tabular-nums;
}

.placeholder-goal {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.placeholder-badges {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
}

.badge {
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.badge-streak {
  color: var(--streak-orange);
  border-color: rgba(255, 115, 26, 0.3);
}

.badge-shield {
  color: var(--accent-blue);
  border-color: rgba(64, 133, 255, 0.3);
}

/* === WHY JUST WALK SECTION === */
.why-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-card);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.why-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(52, 211, 153, 0.1);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  background: var(--accent-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.why-icon svg {
  width: 32px;
  height: 32px;
}

.why-card h3 {
  margin-bottom: var(--space-xs);
}

.why-card p {
  font-size: 1rem;
}

/* === FEATURES === */
.features {
  padding: var(--space-3xl) 0;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature Groups */
.feature-group {
  margin-bottom: var(--space-3xl);
}

.feature-group:last-child {
  margin-bottom: 0;
}

.feature-group-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.feature-group-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.feature-group-icon.blue {
  background: var(--blue-glow);
  color: var(--accent-blue);
}

.feature-group-icon.purple {
  background: var(--purple-glow);
  color: var(--accent-purple);
}

.feature-group h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(52, 211, 153, 0.08);
  border-color: var(--border-hover);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--accent);
}

.card-icon-orange {
  background: var(--orange-glow);
  color: var(--streak-orange);
}

.card-icon-blue {
  background: var(--blue-glow);
  color: var(--accent-blue);
}

.card-icon-purple {
  background: var(--purple-glow);
  color: var(--accent-purple);
}

.card-icon-red {
  background: rgba(255, 89, 89, 0.15);
  color: var(--danger);
}

.card h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.25rem;
}

.card p {
  font-size: 1rem;
}

/* === GUIDED WALKS SECTION === */
.guided-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-card);
  overflow: hidden;
}

.guided-scroll {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.guided-scroll::-webkit-scrollbar {
  display: none;
}

.guided-card {
  flex: 0 0 280px;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-color);
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.guided-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.guided-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.guided-card-icon.interval {
  background: var(--accent-glow);
  color: var(--accent);
}

.guided-card-icon.fatburn {
  background: rgba(255, 89, 89, 0.15);
  color: var(--danger);
}

.guided-card-icon.postmeal {
  background: var(--orange-glow);
  color: var(--streak-orange);
}

.guided-card h4 {
  font-size: 1.125rem;
}

.guided-card p {
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
}

.guided-phases {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.phase-pill {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.phase-warmup {
  background: var(--orange-glow);
  color: var(--streak-orange);
}

.phase-fast {
  background: var(--accent-glow);
  color: var(--accent);
}

.phase-easy {
  background: var(--blue-glow);
  color: var(--accent-blue);
}

.phase-cooldown {
  background: var(--purple-glow);
  color: var(--accent-purple);
}

/* === PHILOSOPHY === */
.philosophy {
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.3;
}

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

.philosophy h2 {
  margin-bottom: var(--space-lg);
  font-size: clamp(2rem, 4vw, 3rem);
}

.philosophy-text {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.philosophy-highlight {
  display: inline;
  background: linear-gradient(transparent 60%, var(--accent-glow) 60%);
}

/* === PRICING === */
.pricing {
  padding: var(--space-3xl) 0;
  background: var(--bg-card);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card-featured {
  border: 2px solid var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
  transform: scale(1.03);
}

.pricing-card-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--ring-end));
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-period {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-top: var(--space-xs);
}

.pricing-savings {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: var(--space-sm);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.pricing-features li {
  padding: var(--space-sm) 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .check {
  color: var(--accent);
  font-weight: bold;
  flex-shrink: 0;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  width: 100%;
  margin-top: auto;
}

/* === FINAL CTA === */
.cta {
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, var(--accent-glow) 0%, transparent 50%),
    linear-gradient(225deg, var(--blue-glow) 0%, transparent 50%);
  pointer-events: none;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  margin-bottom: var(--space-sm);
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta > .container > p {
  margin-bottom: var(--space-xl);
  font-size: 1.25rem;
}

/* === FOOTER === */
.footer {
  padding: var(--space-2xl) 0 var(--space-lg);
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

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

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--ring-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  max-width: 36px;
  max-height: 36px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
}

.footer-tagline {
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: var(--space-sm);
}

.footer-column a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--text-primary);
  text-decoration: none;
}

/* === LEGAL PAGES === */
.legal-page {
  padding: calc(var(--space-4xl) + 60px) 0 var(--space-3xl);
}

.legal-page h1 {
  margin-bottom: var(--space-sm);
}

.legal-updated {
  color: var(--text-tertiary);
  margin-bottom: var(--space-2xl);
  font-size: 0.9375rem;
}

.legal-section {
  margin-bottom: var(--space-2xl);
}

.legal-section h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-color);
}

.legal-section h3 {
  font-size: 1.125rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-section p {
  margin-bottom: var(--space-sm);
}

.legal-section ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.legal-section li {
  margin-bottom: var(--space-xs);
  color: var(--text-secondary);
}

/* === SUPPORT PAGE === */
.support-page {
  padding: calc(var(--space-4xl) + 60px) 0 var(--space-3xl);
}

.support-intro {
  font-size: 1.25rem;
  margin-bottom: var(--space-2xl);
}

.support-section {
  margin-bottom: var(--space-2xl);
}

.support-section h2 {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-color);
}

.support-contact {
  background: var(--bg-card);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid var(--border-color);
}

.support-contact p:first-of-type {
  margin-bottom: var(--space-lg);
}

.support-email {
  font-size: 1rem;
  margin-top: var(--space-md);
  color: var(--text-secondary);
}

.support-response {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-top: var(--space-xs);
}

.support-note {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-top: var(--space-md);
}

.faq-item {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.faq-item p {
  font-size: 1rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .features-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .why-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card-featured {
    transform: none;
  }

  .pricing-card-featured:hover {
    transform: translateY(-4px);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer-brand {
    grid-column: span 2;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--space-3xl) + 60px);
    min-height: auto;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 2;
  }

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

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

  .phone-mockup {
    width: 260px;
    height: 540px;
    border-radius: 44px;
  }

  .phone-notch {
    width: 90px;
    height: 28px;
  }

  .phone-screen {
    border-radius: 36px;
  }

  .placeholder-ring {
    width: 140px;
    height: 140px;
  }

  .placeholder-steps {
    font-size: 2.25rem;
  }

  .why-grid,
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .why-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .guided-card {
    flex: 0 0 260px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-brand {
    grid-column: span 1;
    text-align: center;
    max-width: none;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm) var(--space-md);
  }

  .footer-column li {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .phone-mockup {
    width: 220px;
    height: 460px;
    border-radius: 36px;
    padding: 8px;
  }

  .phone-notch {
    width: 80px;
    height: 24px;
    top: 8px;
  }

  .phone-screen {
    border-radius: 30px;
  }

  .placeholder-ring {
    width: 100px;
    height: 100px;
  }

  .placeholder-steps {
    font-size: 1.75rem;
  }

  .placeholder-badges {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .badge {
    font-size: 0.75rem;
  }
}
