@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --teal-800: #0D9488;
  --teal-700: #0F766E;
  --teal-600: #14B8A6;
  --teal-500: #2DD4BF;
  --teal-50: #F0FDFA;
  --cream: #FFFBF0;
  --cream-dark: #FFF8E7;
  --mint-50: #F0FDFA;
  --amber-600: #D97706;
  --coral: #E8715A;
  --dark: #1A1A2E;
  --dark-teal: #0A3D3D;
  --text-primary: #1A1A2E;
  --text-secondary: #64748B;
  --text-light: #94A3B8;
  --card-glass: rgba(255, 255, 255, 0.78);
  --card-glass-border: rgba(255, 255, 255, 0.3);
  --shadow-organic: 0 8px 32px rgba(13, 148, 136, 0.08);
  --shadow-lift: 0 20px 60px rgba(0, 0, 0, 0.08);
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 50px;
}

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

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-800);
  background: var(--teal-50);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-800);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.4);
  background: var(--teal-700);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--teal-800);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--teal-800);
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.btn-secondary:hover {
  background: var(--teal-50);
  transform: translateY(-2px);
}

.btn-store {
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-out;
  border-radius: 8px;
  overflow: hidden;
}

.btn-store:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.btn-store img {
  height: 48px;
  display: block;
}

.btn-store-footer {
  border: none;
  padding: 0;
}

.btn-store-footer img {
  height: 40px;
}

/* ===== ANIMATIONS ===== */
@keyframes breathe {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 251, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13, 148, 136, 0.08);
  transition: all 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text strong {
  font-size: 1.25rem;
  color: var(--teal-800);
  font-weight: 700;
}

.nav-logo-text span {
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

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

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

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

.nav-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.nav-mobile {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--mint-50) 50%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('images/leaves-bg.png') no-repeat center / cover;
  opacity: 0.15;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-title span {
  color: var(--teal-800);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(13, 148, 136, 0.1);
}

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

.hero-stat .number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-800);
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15), 0 0 0 8px #1a1a2e, 0 0 0 10px #333;
  animation: float 6s ease-in-out infinite;
}

.phone-mockup img {
  width: 100%;
  display: block;
}

.phone-mockup-2 {
  position: absolute;
  right: -40px;
  top: 60px;
  width: 220px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 0 0 6px #1a1a2e, 0 0 0 8px #333;
  animation: float 6s ease-in-out 1s infinite;
  z-index: 2;
}

.phone-mockup-2 img {
  width: 100%;
  display: block;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--mint-50) 0%, #fff 100%);
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-header .section-subtitle {
  margin: 0 auto;
}

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

.feature-card {
  background: var(--card-glass);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.3s ease-out;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-800), var(--teal-500));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-600));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.3rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== FOOD DEMO (Dark) ===== */
.food-demo {
  padding: 100px 0;
  background: var(--dark-teal);
  position: relative;
  overflow: hidden;
}

.food-demo::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('images/leaves-bg.png') no-repeat center / cover;
  opacity: 0.06;
}

.food-demo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.food-demo .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--teal-500);
}

.food-demo .section-title {
  color: #fff;
}

.food-demo .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.food-demo-phone {
  display: flex;
  justify-content: center;
}

.food-demo-phone .phone-mockup {
  animation: float 7s ease-in-out infinite;
}

.food-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.food-stat {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.food-stat span {
  color: var(--teal-500);
}

/* ===== BODY TYPES ===== */
.body-types {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

.body-types-header {
  text-align: center;
  margin-bottom: 60px;
}

.body-types-header .section-subtitle {
  margin: 0 auto;
}

.body-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.body-type-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s ease-out;
  box-shadow: var(--shadow-organic);
}

.body-type-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.body-type-accent {
  height: 6px;
}

.body-type-accent.vata {
  background: linear-gradient(90deg, var(--amber-600), #F59E0B);
}

.body-type-accent.pitta {
  background: linear-gradient(90deg, var(--teal-800), var(--teal-600));
}

.body-type-accent.kapha {
  background: linear-gradient(90deg, var(--coral), #F472B6);
}

.body-type-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.body-type-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, #fff);
}

.body-type-content {
  padding: 24px 28px 32px;
}

.body-type-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.body-type-content .sanskrit {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.body-type-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.body-types-cta {
  text-align: center;
}

/* ===== APP SHOWCASE ===== */
.app-showcase {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, var(--mint-50) 100%);
}

.showcase-header {
  text-align: center;
  margin-bottom: 60px;
}

.showcase-header .section-subtitle {
  margin: 0 auto;
}

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

.showcase-item {
  text-align: center;
  transition: all 0.3s ease-out;
}

.showcase-item:hover {
  transform: translateY(-6px);
}

.showcase-phone {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 16px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 0 4px #1a1a2e;
}

.showcase-phone img {
  width: 100%;
  display: block;
}

.showcase-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.showcase-item p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ===== GOALS ===== */
.goals {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.goals-header {
  text-align: center;
  margin-bottom: 48px;
}

.goals-header .section-subtitle {
  margin: 0 auto;
}

.goals-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.goals-column {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-organic);
}

.goals-column h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.goal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.goal-pill {
  display: inline-block;
  background: var(--teal-50);
  color: var(--teal-800);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: default;
}

.goal-pill:hover {
  background: var(--teal-800);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== KITS ===== */
.kits {
  padding: 100px 0;
  background: var(--cream);
}

.kits-header {
  text-align: center;
  margin-bottom: 20px;
}

.kits-header .section-subtitle {
  margin: 0 auto;
}

.kits-image {
  text-align: center;
  margin-top: 40px;
}

.kits-image img {
  max-width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lift);
}

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

.kit-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-organic);
  transition: all 0.3s ease-out;
}

.kit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.kit-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.kit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.kit-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal-800);
  margin-bottom: 12px;
}

.kit-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== COMPARISON ===== */
.comparison {
  padding: 100px 0;
  background: #fff;
}

.comparison-header {
  text-align: center;
  margin-bottom: 48px;
}

.comparison-header .section-subtitle {
  margin: 0 auto;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-organic);
}

.comparison-table thead th {
  background: var(--dark-teal);
  color: #fff;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table thead th:last-child {
  background: var(--teal-800);
}

.comparison-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  text-align: center;
  font-size: 0.9rem;
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--teal-50);
}

.check {
  color: var(--teal-800);
  font-size: 1.2rem;
}

.cross {
  color: #CBD5E1;
  font-size: 1.2rem;
}

.swayu-col {
  background: rgba(13, 148, 136, 0.04);
  font-weight: 600;
}

/* ===== CTA ===== */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-teal) 0%, #0F4C4C 50%, var(--teal-800) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('images/leaves-bg.png') no-repeat center / cover;
  opacity: 0.05;
}

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

.final-cta .section-title {
  color: #fff;
  max-width: 700px;
  margin: 0 auto 16px;
}

.final-cta .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--teal-800);
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease-out;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease-out;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 30px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-brand .nav-logo-text strong {
  color: #fff;
}

.footer-brand .nav-logo-text span {
  color: rgba(255, 255, 255, 0.4);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

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

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

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

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

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

  .phone-mockup-2 {
    right: -20px;
    top: 40px;
    width: 180px;
  }

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

  .food-demo-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .food-demo .section-subtitle {
    margin: 0 auto;
  }

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

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

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

  .goals-categories {
    grid-template-columns: 1fr;
  }

  .kits-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  .nav-links.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 251, 240, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(13, 148, 136, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .nav-mobile {
    display: block;
  }

  .nav-logo img {
    height: 36px;
  }

  .nav-logo-text strong {
    font-size: 1.1rem;
  }

  /* Hero */
  .hero {
    padding: 90px 0 50px;
    min-height: auto;
  }

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

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-stat .number {
    font-size: 1.2rem;
  }

  .phone-mockup {
    width: 220px;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 0 6px #1a1a2e;
  }

  .phone-mockup-2 {
    width: 150px;
    right: -10px;
    top: 30px;
    border-radius: 22px;
  }

  .btn-store img {
    height: 40px;
  }

  /* Features */
  .features {
    padding: 60px 0;
  }

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

  .feature-card {
    padding: 24px 20px;
  }

  /* Food Demo */
  .food-demo {
    padding: 60px 0;
  }

  .food-demo-inner {
    gap: 40px;
  }

  .food-stats {
    gap: 10px;
  }

  .food-stat {
    font-size: 0.8rem;
    padding: 8px 14px;
  }

  /* Body Types */
  .body-types {
    padding: 60px 0;
  }

  .body-types-grid {
    grid-template-columns: 1fr;
  }

  .body-type-img {
    height: 160px;
  }

  .body-types-cta .btn-primary {
    font-size: 0.95rem;
    padding: 14px 28px;
  }

  /* App Showcase */
  .app-showcase {
    padding: 60px 0;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .showcase-phone {
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 0 0 3px #1a1a2e;
  }

  /* Goals */
  .goals {
    padding: 60px 0;
  }

  .goals-categories {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .goals-column {
    padding: 24px 20px;
  }

  .goal-pill {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  /* Kits */
  .kits {
    padding: 60px 0;
  }

  .kits-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .kit-card {
    padding: 24px 20px;
  }

  /* Comparison - horizontal scroll */
  .comparison {
    padding: 60px 0;
  }

  .comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    padding: 0 16px;
  }

  .comparison-table {
    min-width: 600px;
    font-size: 0.8rem;
  }

  .comparison-table thead th {
    padding: 12px 10px;
    font-size: 0.75rem;
  }

  .comparison-table tbody td {
    padding: 10px 8px;
    font-size: 0.78rem;
  }

  /* CTA */
  .final-cta {
    padding: 60px 0;
  }

  .final-cta .section-title {
    font-size: 1.6rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-white,
  .btn-ghost {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .btn-store-footer img {
    height: 36px;
  }

  /* Footer */
  .footer {
    padding: 40px 0 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  .hero-stats {
    gap: 16px;
  }

  .hero-stat .number {
    font-size: 1.1rem;
  }

  .hero-stat .label {
    font-size: 0.65rem;
  }

  .phone-mockup {
    width: 200px;
  }

  .phone-mockup-2 {
    width: 130px;
    top: 20px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .food-stats {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== BRAND FILMS ===== */
.brand-films {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, #fff 40%, var(--mint-50) 100%);
}
.films-header { text-align: center; margin-bottom: 60px; }
.films-header .section-subtitle { margin: 0 auto; }
.films-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.film-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-organic);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.film-card:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(13,148,136,0.12); }

/* Video container — responsive aspect ratio */
.film-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background: #0a0a0a;
  overflow: hidden;
  cursor: pointer;
}
.film-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.film-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: all 0.4s ease;
  z-index: 2;
}
.film-overlay:hover { background: rgba(0,0,0,0.15); }
.film-overlay.playing { background: transparent; opacity: 0; }
.film-overlay.playing:hover { opacity: 1; background: rgba(0,0,0,0.15); }
.film-play-ring {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(13,148,136,0.85);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.film-overlay:hover .film-play-ring { transform: scale(1.08); background: rgba(13,148,136,0.95); }
.film-progress-track {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: rgba(255,255,255,0.15); z-index: 3;
}
.film-progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--teal-800), var(--teal-500));
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}
.film-sound-btn {
  position: absolute; bottom: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 4; transition: all 0.2s ease; padding: 0;
}
.film-sound-btn:hover { background: rgba(0,0,0,0.7); transform: scale(1.05); }
.film-info { padding: 28px 28px 32px; }
.film-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.film-info p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.film-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: #fff;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-600));
  padding: 5px 14px; border-radius: var(--radius-pill); margin-bottom: 14px;
}
.calm-badge { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.film-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-light);
}
.film-meta span { display: inline-flex; align-items: center; gap: 4px; }
.film-meta-dot { opacity: 0.4; }

/* Tablet */
@media (max-width: 1024px) {
  .films-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
}
/* Mobile */
@media (max-width: 768px) {
  .brand-films { padding: 60px 0; }
  .films-header { margin-bottom: 36px; }
  .films-grid { gap: 24px; max-width: 100%; }
  .film-card { border-radius: var(--radius-lg); }
  .film-info { padding: 20px 20px 24px; }
  .film-info h3 { font-size: 1.05rem; }
  .film-play-ring { width: 56px; height: 56px; }
  .film-play-ring svg { width: 22px; height: 22px; }
  .film-sound-btn { width: 36px; height: 36px; bottom: 12px; right: 12px; }
}
/* Small mobile */
@media (max-width: 480px) {
  .brand-films { padding: 40px 0; }
  .films-header { margin-bottom: 24px; }
  .films-grid { gap: 20px; }
  .film-card { border-radius: 16px; }
  .film-info { padding: 16px 16px 20px; }
  .film-info h3 { font-size: 0.95rem; }
  .film-info p { font-size: 0.82rem; margin-bottom: 10px; }
  .film-badge { font-size: 0.65rem; padding: 4px 10px; margin-bottom: 10px; }
  .film-meta { font-size: 0.72rem; }
  .film-play-ring { width: 48px; height: 48px; }
  .film-play-ring svg { width: 18px; height: 18px; }
  .film-sound-btn { width: 32px; height: 32px; bottom: 8px; right: 8px; }
  .film-sound-btn svg { width: 16px; height: 16px; }
}