/* DailyMate Website — Design System (aligned with app theme) */
:root {
  --primary: #0F766E;
  --primary-dark: #0D5C55;
  --primary-darker: #0B534B;
  --primary-light: #CCFBF1;
  --background: #F4F7F7;
  --background-warm: #EBF0F0;
  --surface: #FFFFFF;
  --surface-variant: #E8EEEE;
  --on-background: #0C1929;
  --on-surface: #0C1929;
  --on-surface-variant: #334155;
  --outline: #CBD5E1;
  --mint: #16A34A;
  --coral: #EA580C;
  --sky: #0369A1;
  --amber: #CA8A04;
  --emerald: #059669;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow: 0 4px 24px rgba(15, 118, 110, 0.08);
  --shadow-lg: 0 12px 48px rgba(15, 118, 110, 0.12);
  --ease-smooth: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-out-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.4s var(--ease-smooth);
  --transition-fast: 0.25s var(--ease-smooth);
  --transition-slow: 0.6s var(--ease-smooth);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition: 0.01ms ease;
  }
}

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

html {
  scroll-behavior: smooth;
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease-smooth), transform 0.75s var(--ease-smooth);
}

.feature-card.animate-on-scroll { transition-delay: 0.05s; }
.feature-card.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.feature-card.animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.feature-card.animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.feature-card.animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.feature-card.animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }
.step-card.animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.step-card.animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.step-card.animate-on-scroll:nth-child(3) { transition-delay: 0.25s; }
.testimonial-card.animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.testimonial-card.animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.testimonial-card.animate-on-scroll:nth-child(3) { transition-delay: 0.25s; }
.pricing-card.animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.pricing-card.animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.faq-item.animate-on-scroll:nth-child(1) { transition-delay: 0.02s; }
.faq-item.animate-on-scroll:nth-child(2) { transition-delay: 0.06s; }
.faq-item.animate-on-scroll:nth-child(3) { transition-delay: 0.1s; }
.faq-item.animate-on-scroll:nth-child(4) { transition-delay: 0.14s; }
.faq-item.animate-on-scroll:nth-child(5) { transition-delay: 0.18s; }

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

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition: 0.05s ease;
    --transition-fast: 0.05s ease;
    --transition-slow: 0.1s ease;
  }
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .animate-on-scroll.is-visible { transition: none; }
  .feature-card.animate-on-scroll:nth-child(n),
  .step-card.animate-on-scroll:nth-child(n),
  .testimonial-card.animate-on-scroll:nth-child(n),
  .pricing-card.animate-on-scroll:nth-child(n),
  .faq-item.animate-on-scroll:nth-child(n) { transition-delay: 0s; }
  .hero-blob,
  .hero-orb {
    animation: none;
  }
  .pricing-badge {
    animation: none;
  }
  .stats-shine {
    animation: none;
  }
  .btn-primary::after {
    display: none;
  }
  .cta {
    animation: none;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  }

  .feature-card:hover,
  .step-card:hover,
  .why-card:hover,
  .testimonial-card:hover,
  .pricing-card-interactive:hover {
    transform: translateY(-4px);
  }

  .hero-cta .btn-primary,
  .cta .cta-buttons .btn-primary {
    animation: none;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.02); }
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(8px, -10px); }
  66% { transform: translate(-5px, 5px); }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(20px, -15px) scale(1.1); opacity: 0.8; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

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

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(15, 118, 110, 0.2); }
  50% { box-shadow: 0 0 32px rgba(15, 118, 110, 0.35); }
}

@keyframes buttonShine {
  0% { transform: translateX(-100%) skewX(-12deg); }
  100% { transform: translateX(200%) skewX(-12deg); }
}

@keyframes lineExpand {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes textureNoise {
  0% { background-position: 0 0; }
  100% { background-position: 128px 128px; }
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 4px 14px rgba(11, 83, 75, 0.4), 0 1px 3px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.15); }
  50% { box-shadow: 0 6px 24px rgba(11, 83, 75, 0.5), 0 2px 6px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
}

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--background);
  color: var(--on-background);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--primary);
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid white;
  outline-offset: 2px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 118, 110, 0.06);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.header:hover {
  border-bottom-color: rgba(15, 118, 110, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition);
}

.logo:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.logo:active {
  transform: scale(0.98);
}

.logo-icon,
.logo-img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.logo-img {
  display: block;
}

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

.nav-links a {
  position: relative;
  color: var(--on-surface-variant);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-smooth);
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--on-surface);
  transition: var(--transition);
}

.nav-toggle:hover span,
.nav-toggle:focus-visible span {
  background: var(--primary);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.nav-links a:focus-visible,
.logo:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Buttons — high contrast green so they’re clearly visible */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth), background 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth), color 0.4s var(--ease-smooth);
  border: 2px solid transparent;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--primary-darker) 0%, var(--primary-dark) 40%, var(--primary) 100%);
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 14px rgba(11, 83, 75, 0.4), 0 1px 3px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 50%);
  pointer-events: none;
  border-radius: inherit;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transform: translateX(-100%) skewX(-12deg);
  transition: transform 0.7s var(--ease-smooth);
  pointer-events: none;
  border-radius: inherit;
}

.btn-primary:hover::after {
  transform: translateX(100%) skewX(-12deg);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(11, 83, 75, 0.45), 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 50%, #0e8277 100%);
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth), background 0.4s var(--ease-smooth);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1);
  box-shadow: 0 2px 12px rgba(11, 83, 75, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition-duration: 0.15s;
}

.btn-outline {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: rgba(15, 118, 110, 0.1);
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

.btn-outline:active {
  transform: scale(0.98);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.btn-store-icon {
  width: 20px;
  height: 20px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    #D1FAE5 0%,
    #E0F2FE 35%,
    #F0FDFA 65%,
    #F8FAFC 100%
  );
  opacity: 0.98;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(at 15% 25%, rgba(15, 118, 110, 0.12) 0%, transparent 45%),
    radial-gradient(at 85% 75%, rgba(15, 118, 110, 0.08) 0%, transparent 45%);
}

/* Subtle noise texture */
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Dot grid decoration */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(15, 118, 110, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 12s ease-in-out infinite;
}

.hero-blob-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-light);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-blob-2 {
  width: 300px;
  height: 300px;
  background: #E0F2FE;
  bottom: -50px;
  left: -50px;
  animation-delay: -4s;
}

.hero-blob-3 {
  width: 240px;
  height: 240px;
  background: rgba(202, 138, 4, 0.15);
  top: 50%;
  left: 60%;
  animation: floatSlow 14s ease-in-out infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(15, 118, 110, 0.15);
  width: 120px;
  height: 120px;
  animation: orb-float 8s ease-in-out infinite;
}

.hero-orb-1 {
  top: 20%;
  right: 15%;
  animation-delay: -2s;
}

.hero-orb-2 {
  bottom: 25%;
  left: 10%;
  width: 80px;
  height: 80px;
  animation-delay: -5s;
  animation-duration: 10s;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(15, 118, 110, 0.12);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
  animation: fadeInUp 0.9s var(--ease-smooth) both;
  transition: background 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
}

.hero-badge:hover {
  background: rgba(15, 118, 110, 0.18);
  transform: scale(1.02);
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--on-background);
  animation: fadeInUp 0.9s var(--ease-smooth) 0.1s both;
}

.hero-title em {
  color: var(--primary);
  font-style: normal;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--on-surface-variant);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.65;
  animation: fadeInUp 0.9s var(--ease-smooth) 0.2s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.75rem;
  animation: fadeInUp 0.9s var(--ease-smooth) 0.35s both;
}

.hero-cta .btn-primary {
  animation: ctaGlow 2.5s ease-in-out infinite;
}

.hero-cta .btn-primary:hover {
  animation: none;
}

.hero-trust {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  opacity: 0.95;
  animation: fadeInUp 0.9s var(--ease-smooth) 0.45s both;
  margin-bottom: 0.5rem;
}

.hero-note {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  opacity: 0.9;
  animation: fadeInUp 0.9s var(--ease-smooth) 0.5s both;
}

/* Stats */
.stats {
  position: relative;
  padding: 3rem 0;
  background: var(--surface);
  border-top: 1px solid rgba(15, 118, 110, 0.06);
  border-bottom: 1px solid rgba(15, 118, 110, 0.06);
  overflow: hidden;
}

.stats-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(15, 118, 110, 0.03) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: gradient-shift 15s ease infinite;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  transition: transform 0.5s var(--ease-smooth), background 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

.stat-item:hover {
  transform: translateY(-4px);
  background: rgba(15, 118, 110, 0.05);
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.06);
}

.stat-value-wrap {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  line-height: 1;
}

.stat-value-wrap .stat-value,
.stat-value-wrap .stat-suffix {
  display: inline;
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-value-symbol {
  display: inline-block;
  line-height: 1;
}

.stat-suffix {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
  margin-left: 0;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  margin-top: 0.25rem;
}

/* Section common */
.section-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--on-background);
  transition: color var(--transition);
}

.section-subtitle {
  text-align: center;
  color: var(--on-surface-variant);
  margin-bottom: 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  transition: color var(--transition);
}

/* Features */
.features {
  position: relative;
  padding: 6rem 0;
}

.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(15, 118, 110, 0.04) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}

.features::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.06) 0%, transparent 70%);
  top: 2rem;
  right: 5%;
  pointer-events: none;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  perspective: 1200px;
}

.feature-card {
  background: var(--surface);
  padding: 1.75rem;
  min-height: 220px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 118, 110, 0.06);
  border-left: 4px solid var(--primary);
  transition: transform 0.6s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth), border-left-width 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth);
  overflow: visible;
  transform-style: preserve-3d;
}

.feature-card:hover {
  transform: translateY(-6px) rotateX(1deg) rotateY(-1deg);
  box-shadow: 0 20px 56px rgba(15, 118, 110, 0.14);
  border-left-width: 6px;
}

.feature-card p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  overflow: visible;
}

.feature-card .feature-icon {
  transition: transform var(--transition), background var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.08);
}

.feature-card-mood { border-left-color: var(--coral); }
.feature-card-journal { border-left-color: var(--amber); }
.feature-card-goals { border-left-color: var(--mint); }
.feature-card-finance { border-left-color: var(--sky); }
.feature-card-health { border-left-color: var(--emerald); }
.feature-card-automation { border-left-color: var(--primary); }

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: rgba(15, 118, 110, 0.08);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.feature-card-mood .feature-icon { background: rgba(234, 88, 12, 0.12); }
.feature-card-journal .feature-icon { background: rgba(202, 138, 4, 0.12); }
.feature-card-goals .feature-icon { background: rgba(22, 163, 74, 0.12); }
.feature-card-finance .feature-icon { background: rgba(3, 105, 161, 0.12); }
.feature-card-health .feature-icon { background: rgba(5, 150, 105, 0.12); }
.feature-card-automation .feature-icon { background: rgba(15, 118, 110, 0.12); }

.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--on-background);
}

.feature-card p {
  color: var(--on-surface-variant);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* How It Works */
.how-it-works {
  position: relative;
  padding: 6rem 0;
  background: var(--surface);
}

.how-it-works::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 118, 110, 0.15), transparent);
}

.how-it-works::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 50%;
  top: 3rem;
  left: 8%;
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  perspective: 1000px;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  min-height: 240px;
  background: var(--background);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 118, 110, 0.08);
  transition: transform 0.6s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth), border-color 0.4s var(--ease-smooth);
  overflow: visible;
  transform-style: preserve-3d;
}

.step-card:hover {
  transform: translateY(-6px) translateZ(6px) rotateX(2deg);
  box-shadow: 0 12px 40px rgba(15, 118, 110, 0.1);
  border-color: rgba(15, 118, 110, 0.15);
}

.step-card p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: visible;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-darker), var(--primary));
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(15, 118, 110, 0.35);
}

.step-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--on-background);
}

.step-card p {
  color: var(--on-surface-variant);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Why */
.why {
  position: relative;
  padding: 6rem 0;
}

.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, transparent 0%, rgba(15, 118, 110, 0.02) 50%, transparent 100%);
  pointer-events: none;
}

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  perspective: 1100px;
}

.why-card {
  background: var(--surface);
  padding: 2rem;
  min-height: 200px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 118, 110, 0.06);
  text-align: center;
  transition: transform 0.6s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth), border-color 0.4s var(--ease-smooth);
  overflow: visible;
  transform-style: preserve-3d;
}

.why-card:hover {
  transform: translateY(-6px) translateZ(4px) rotateX(1.5deg);
  box-shadow: 0 20px 56px rgba(15, 118, 110, 0.12);
  border-color: rgba(15, 118, 110, 0.1);
}

.why-card p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: visible;
}

.why-icon {
  transition: transform var(--transition);
}

.why-card:hover .why-icon {
  transform: scale(1.15);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--on-background);
}

.why-card p {
  color: var(--on-surface-variant);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Pricing */
.pricing {
  padding: 6rem 0;
  background: var(--surface);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  padding-top: 1.5rem;
  overflow: visible;
}

/* Pricing section wave decoration */
.pricing {
  position: relative;
  overflow: hidden;
}

.pricing-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--background);
  clip-path: ellipse(120% 100% at 50% 0%);
  z-index: 0;
}

.pricing::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(15, 118, 110, 0.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

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

.pricing-card {
  position: relative;
  padding: 2rem;
  min-height: 280px;
  background: var(--background);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(15, 118, 110, 0.12);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.pricing-card-featured {
  overflow: visible;
}

.pricing-card p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: visible;
}

.pricing-cards {
  perspective: 1000px;
}

.pricing-card {
  transform-style: preserve-3d;
  transition: border-color 0.4s var(--ease-smooth), transform 0.6s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth);
}

.pricing-card-interactive:hover {
  transform: translateY(-6px) translateZ(4px) rotateY(-1.5deg);
  box-shadow: 0 20px 56px rgba(15, 118, 110, 0.15);
}

.pricing-card:hover {
  border-color: rgba(15, 118, 110, 0.3);
}

.pricing-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(15, 118, 110, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-smooth);
  pointer-events: none;
}

.pricing-card:hover .pricing-card-glow {
  opacity: 1;
}

.pricing-card-featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.06) 0%, rgba(15, 118, 110, 0.02) 100%);
  box-shadow: 0 0 0 1px rgba(15, 118, 110, 0.1);
}

.pricing-card-featured:hover {
  box-shadow: 0 8px 32px rgba(15, 118, 110, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 1rem;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--primary-darker), var(--primary));
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(15, 118, 110, 0.35);
  animation: pulse-soft 3s ease-in-out infinite;
  z-index: 2;
}

.pricing-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--on-background);
}

.pricing-price {
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.5rem;
}


.pricing-was {
  font-size: 1.0625rem;
  color: #94a3b8;
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-color: #c2410c;
  text-decoration-thickness: 2px;
  text-decoration-style: solid;
}

.pricing-now {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0;
}

.pricing-currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  vertical-align: top;
}

.pricing-amount {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.pricing-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--on-surface-variant);
}

.pricing-save {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  margin-bottom: 0.75rem;
}

.pricing-trial {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Testimonials */
.testimonials {
  position: relative;
  padding: 6rem 0;
  background: var(--surface);
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(15, 118, 110, 0.035) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  perspective: 1000px;
}

.testimonial-card {
  background: var(--background);
  padding: 2rem;
  min-height: 200px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 118, 110, 0.08);
  transition: transform 0.6s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth), border-color 0.4s var(--ease-smooth);
  overflow: visible;
  transform-style: preserve-3d;
}

.testimonial-card:hover {
  transform: translateY(-6px) translateZ(4px) rotateY(1.5deg);
  box-shadow: 0 16px 48px rgba(15, 118, 110, 0.12);
  border-color: rgba(15, 118, 110, 0.12);
}

.testimonial-card .testimonial-text {
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: visible;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--on-surface-variant);
  margin-bottom: 1.25rem;
}

.testimonial-text::before {
  content: '"';
}

.testimonial-text::after {
  content: '"';
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.testimonial-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--on-background);
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--on-surface-variant);
}

/* FAQ */
.faq {
  padding: 6rem 0;
}

.faq {
  position: relative;
}

.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

.faq::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.05) 0%, transparent 70%);
  bottom: 2rem;
  right: 10%;
  pointer-events: none;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 118, 110, 0.08);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth), transform 0.3s var(--ease-smooth);
}

.faq-item:hover {
  box-shadow: 0 8px 32px rgba(15, 118, 110, 0.08);
}

.faq-item[open] {
  border-color: rgba(15, 118, 110, 0.25);
  box-shadow: 0 8px 32px rgba(15, 118, 110, 0.1);
}

.faq-question {
  transition: color var(--transition), background-color var(--transition);
}

.faq-item[open] .faq-question {
  color: var(--primary-dark);
}

.faq-answer {
  transition: opacity 0.35s var(--ease-smooth), transform 0.35s var(--ease-smooth);
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: visible;
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--on-background);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--on-surface-variant);
}

.faq-answer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

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

/* CTA */
.cta {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #0d9488 100%);
  background-size: 200% 200%;
  animation: gradient-shift 12s ease infinite;
  color: white;
  text-align: center;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.cta::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  bottom: -50px;
  left: 10%;
  pointer-events: none;
}

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

.cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth);
}

.cta-subtitle {
  opacity: 0.95;
  margin-bottom: 2rem;
  transition: opacity 0.5s var(--ease-smooth);
}

.cta .cta-buttons .btn-primary {
  animation: ctaGlow 2.5s ease-in-out infinite;
}

.cta .cta-buttons .btn-primary:hover {
  animation: none;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
}

.cta-buttons .btn {
  min-width: 200px;
  padding: 1rem 1.5rem;
  font-size: 1.0625rem;
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth), background 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth), color 0.4s var(--ease-smooth);
}

.cta-buttons .btn:hover {
  transform: translateY(-4px) scale(1.03);
}

.cta-buttons .btn:active {
  transform: translateY(-2px) scale(1.01);
}

.cta-buttons .btn-primary {
  background: #ffffff !important;
  color: var(--primary-darker) !important;
  text-shadow: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255,255,255,0.9);
}

.cta-buttons .btn-primary::before,
.cta-buttons .btn-primary::after {
  display: none;
}

.cta-buttons .btn-primary:hover {
  background: #f0fdfa !important;
  color: var(--primary-darker) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn-outline {
  border-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
}

.cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
}

/* Footer */
.footer {
  position: relative;
  padding: 3rem 0 2rem;
  background: var(--surface);
  border-top: 1px solid var(--outline);
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.04) 0%, transparent 70%);
  top: -100px;
  right: -80px;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem 4rem;
  margin-bottom: 2rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.footer-brand {
  min-width: 0;
}

.footer-brand .logo {
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  line-height: 1.5;
  max-width: 260px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3rem;
  min-width: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 120px;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--on-surface-variant);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.footer-col a {
  display: block;
  color: var(--on-surface-variant);
  text-decoration: none;
  font-size: 0.9375rem;
  padding: 0.15rem 0;
  transition: color var(--transition), transform var(--transition-fast);
}

.footer-col a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(15, 118, 110, 0.08);
}

.footer-copy {
  color: var(--on-surface-variant);
  font-size: 0.875rem;
}

.back-to-top {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
}

.back-to-top:hover {
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Page layout (privacy, support) */
.page {
  padding: 8rem 0 4rem;
  min-height: 100vh;
}

.page-header {
  margin-bottom: 3rem;
}

.page-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--on-background);
}

.page-subtitle {
  color: var(--on-surface-variant);
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 118, 110, 0.06);
}

.page-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: var(--primary);
}

.page-content h2:first-of-type {
  margin-top: 0;
}

.page-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--on-background);
}

.page-content p {
  margin-bottom: 1rem;
  color: var(--on-surface-variant);
  line-height: 1.7;
}

.page-content ul {
  margin: 1rem 0 1rem 1.5rem;
}

.page-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.page-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.page-content a:hover {
  text-decoration: underline;
}

/* Responsive — Tablet */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

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

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 2rem;
  }

  .footer-col {
    min-width: 100px;
  }
}

/* Responsive — Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--surface);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--outline);
    box-shadow: var(--shadow-lg);
  }

  .hero {
    padding: 7rem 0 3rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

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

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-col {
    min-width: 0;
  }

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

  .footer-tagline {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials,
  .faq {
    padding: 4rem 0;
  }

  .feature-card {
    min-height: 0;
  }

  .step-card {
    min-height: 0;
  }

  .why-card,
  .testimonial-card {
    min-height: 0;
  }

  .pricing-card {
    min-height: 0;
  }
}

/* Responsive — Small mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.875rem;
  }

  .section-subtitle {
    margin-bottom: 2rem;
  }

  .features,
  .how-it-works,
  .why,
  .pricing {
    padding: 4rem 0;
  }

  .page-content {
    padding: 1.5rem;
  }
}
