/* ===== DESIGN TOKENS ===== */
:root {
  /* Colors – matched to the Android app palette */
  --deep-green: #244D3D;
  --leaf-green: #3F8157;
  --leaf-green-light: #5FA87A;
  --mint-green: #E9F0E5;
  --cream: #FBF8EF;
  --warm-white: #FFFCF6;
  --soft-line: #E8E0D4;
  --text-primary: #111714;
  --text-muted: #67726B;
  --lavender: #8278D8;
  --amber: #FFB54A;
  --coral: #FF8172;
  --blue-soft: #EAF1FB;

  /* Gradients */
  --bg-gradient: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 40%, #F5F7EE 100%);
  --hero-gradient: linear-gradient(135deg, var(--deep-green) 0%, #1a3d2e 30%, var(--leaf-green) 100%);
  --card-gradient: linear-gradient(145deg, rgba(255,255,255,0.85) 0%, rgba(233,240,229,0.55) 100%);
  --glow-green: radial-gradient(circle, rgba(63,129,87,0.25) 0%, transparent 70%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(36,77,61,0.06);
  --shadow-md: 0 6px 24px rgba(36,77,61,0.10);
  --shadow-lg: 0 12px 48px rgba(36,77,61,0.14);
  --shadow-glow: 0 0 40px rgba(63,129,87,0.18);

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-md: 0.4s var(--ease-out);
  --transition-slow: 0.7s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-primary);
  background: var(--bg-gradient);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul { list-style: none; }

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--mint-green);
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--deep-green);
  margin-bottom: 16px;
}

.section-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--leaf-green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
}

/* ===== AMBIENT BLOBS ===== */
.ambient-blob {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(100px);
  opacity: 0.5;
}

.blob-1 {
  width: 600px; height: 600px;
  background: var(--mint-green);
  top: -200px; left: -200px;
}

.blob-2 {
  width: 500px; height: 500px;
  background: #F2EEDC;
  top: 15%; right: -150px;
}

.blob-3 {
  width: 700px; height: 700px;
  background: var(--mint-green);
  bottom: -250px; left: -100px;
  opacity: 0.4;
}

.blob-4 {
  width: 450px; height: 450px;
  background: #DDE8D8;
  bottom: 5%; right: -100px;
  opacity: 0.4;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-md);
}

.navbar.scrolled {
  background: rgba(251,248,239,0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(232,224,212,0.5);
  padding: 10px 0;
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--deep-green);
}

.navbar-logo {
  width: 42px;
  height: 42px;
  position: relative;
}

.navbar-logo svg {
  width: 100%;
  height: 100%;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--leaf-green);
  border-radius: 2px;
  transition: width var(--transition-md);
}

.navbar-links a:hover {
  color: var(--deep-green);
}

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

.navbar-cta {
  padding: 10px 24px !important;
  background: var(--deep-green) !important;
  color: white !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all var(--transition-fast) !important;
  box-shadow: var(--shadow-sm) !important;
}

.navbar-cta:hover {
  background: var(--leaf-green) !important;
  transform: translateY(-1px) !important;
  box-shadow: var(--shadow-md) !important;
}

.navbar-cta::after { display: none !important; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--deep-green);
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(63,129,87,0.08);
  border: 1px solid rgba(63,129,87,0.15);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--leaf-green);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero-eyebrow .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf-green);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--deep-green);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--leaf-green), var(--lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--deep-green);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary:hover {
  background: var(--leaf-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary .icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

.btn-primary:hover .icon {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: transparent;
  color: var(--deep-green);
  border: 2px solid var(--soft-line);
  border-radius: var(--radius-pill);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  border-color: var(--leaf-green);
  background: rgba(63,129,87,0.05);
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  gap: 36px;
  animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--deep-green);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s var(--ease-out) 0.3s both;
}

.hero-phone {
  position: relative;
  width: 320px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(63,129,87,0.12);
  transform: perspective(1200px) rotateY(-5deg) rotateX(3deg);
  transition: transform var(--transition-slow);
}

.hero-phone:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.hero-phone img {
  width: 100%;
  border-radius: 36px;
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(232,224,212,0.5);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}

.hero-float-card.card-streak {
  top: 12%;
  right: -40px;
  animation-delay: 0s;
}

.hero-float-card.card-session {
  bottom: 18%;
  left: -50px;
  animation-delay: 1.5s;
}

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.float-icon.streak { background: rgba(255,129,114,0.12); }
.float-icon.session { background: rgba(130,120,216,0.12); }

.float-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.float-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

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

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 0;
  position: relative;
}

.features .container {
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.feature-card {
  background: var(--card-gradient);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(232,224,212,0.6);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  transition: all var(--transition-md);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--leaf-green), var(--lavender));
  opacity: 0;
  transition: opacity var(--transition-md);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(63,129,87,0.2);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  transition: transform var(--transition-fast);
}

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

.feature-icon.green  { background: rgba(63,129,87,0.1);  color: var(--leaf-green); }
.feature-icon.coral  { background: rgba(255,129,114,0.1); color: var(--coral); }
.feature-icon.purple { background: rgba(130,120,216,0.1); color: var(--lavender); }
.feature-icon.amber  { background: rgba(255,181,74,0.1);  color: var(--amber); }

.feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  background: var(--deep-green);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(63,129,87,0.2);
  filter: blur(120px);
}

.how-it-works::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(130,120,216,0.12);
  filter: blur(100px);
}

.how-it-works .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.how-it-works .section-badge {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
}

.how-it-works .section-badge .dot { background: var(--coral); }

.how-it-works .section-title {
  color: white;
}

.how-it-works .section-subtitle {
  color: rgba(255,255,255,0.6);
  margin: 0 auto 56px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all var(--transition-md);
}

.step-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.16);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf-green), var(--deep-green));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ===== EXERCISES ===== */
.exercises {
  padding: 100px 0;
}

.exercises .container {
  text-align: center;
}

.exercises-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.exercise-card {
  background: white;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: left;
  transition: all var(--transition-md);
  position: relative;
  overflow: hidden;
}

.exercise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--leaf-green);
}

.exercise-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.tag-balanced { background: rgba(63,129,87,0.1); color: var(--leaf-green); }
.tag-resonance { background: rgba(130,120,216,0.1); color: var(--lavender); }
.tag-range { background: rgba(255,129,114,0.1); color: var(--coral); }
.tag-speech { background: rgba(255,181,74,0.1); color: #C98A20; }

.exercise-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.exercise-detail {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.exercise-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.exercise-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== AUDIENCE ===== */
.audience {
  padding: 100px 0;
  position: relative;
}

.audience .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.audience-visual {
  position: relative;
}

.audience-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.audience-image img {
  width: 100%;
  transition: transform var(--transition-slow);
}

.audience-image:hover img {
  transform: scale(1.03);
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: var(--card-gradient);
  border: 1px solid rgba(232,224,212,0.5);
  border-radius: var(--radius-md);
  transition: all var(--transition-md);
}

.audience-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
  border-color: var(--leaf-green);
}

.audience-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.audience-item-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.audience-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--mint-green);
  position: relative;
  overflow: hidden;
}

.testimonials .container {
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: left;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-md);
}

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

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--amber);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== CTA ===== */
.cta {
  padding: 100px 0;
}

.cta-card {
  background: var(--hero-gradient);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(63,129,87,0.3);
  filter: blur(100px);
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(130,120,216,0.15);
  filter: blur(80px);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 42px;
  background: white;
  color: var(--deep-green);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.btn-cta:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
  padding: 72px 0 36px;
  border-top: 1px solid var(--soft-line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--deep-green);
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 300px;
}

.footer-heading {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--leaf-green);
  transform: translateX(4px);
  display: inline-block;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--soft-line);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-company {
  font-weight: 600;
  color: var(--deep-green);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description { margin: 0 auto 36px; }

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

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

  .hero-visual { margin-top: 40px; }

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

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

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

  .audience .container { grid-template-columns: 1fr; }

  .audience-content { order: -1; }

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

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

@media (max-width: 768px) {
  .navbar-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(251,248,239,0.96);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--soft-line);
  }

  .navbar-links.active { display: flex; }

  .mobile-menu-btn { display: block; }

  .hero { min-height: auto; padding: 100px 0 60px; }

  .hero-phone { width: 260px; }

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

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

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

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

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

  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .hero-float-card { display: none; }

  .cta-card { padding: 56px 28px; }

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