/* ============================================================
   SIMPLE TRUE FOODS — Launch Site Styles
   ============================================================ */

:root {
  --orange: #E84A1F;
  --orange-dark: #C13A12;
  --orange-light: #FF6B3D;
  --yellow: #F5E332;
  --yellow-soft: #FFF0A8;
  --cream: #FFF8EC;
  --cream-warm: #FAF3E7;
  --charcoal: #1A1A1A;
  --gray-700: #4A4A4A;
  --gray-500: #7C7C7C;
  --gray-300: #D6D6D6;
  --gray-100: #F2F2F2;
  --white: #FFFFFF;
  --green: #2D5016;
  --mint: #0F5C2E;
  --tamarind: #5D3A1F;
  --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 26, 26, 0.08);
  --shadow-lg: 0 20px 60px rgba(232, 74, 31, 0.15);

  --ff-display-en: 'Anton', 'Archivo Black', sans-serif;
  --ff-display-ta: 'Mukta Malar', 'Noto Sans Tamil', sans-serif;
  --ff-body: 'Inter', 'Noto Sans Tamil', system-ui, sans-serif;
  --ff-body-ta: 'Noto Sans Tamil', 'Mukta Malar', sans-serif;
  --ff-serif: 'Playfair Display', serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--ff-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232, 74, 31, 0.08);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.eyebrow.light {
  color: var(--yellow);
  background: rgba(245, 227, 50, 0.15);
}

.section-title {
  font-family: var(--ff-display-en);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-title .ta-title {
  display: block;
  font-family: var(--ff-display-ta);
  font-size: 0.85em;
  margin-bottom: 6px;
  color: var(--orange);
  font-weight: 700;
}
.section-title.light .ta-title { color: var(--yellow); }
.section-title .en-title { display: block; }

.section-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--gray-700);
  max-width: 640px;
  margin: 0 auto;
}
.section-sub.light { color: rgba(255,255,255,0.85); }

.ta-h {
  font-family: var(--ff-display-ta);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
  line-height: 1.3;
}
.ta-name {
  font-family: var(--ff-body-ta);
  font-size: 0.95rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 99px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(232, 74, 31, 0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232, 74, 31, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 248, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: all 0.25s;
  transform: translateX(-50%);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border: 1px solid var(--gray-300);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
}
.lang-option {
  color: var(--gray-500);
  transition: color 0.2s;
  cursor: pointer;
}
.lang-option.active {
  color: var(--orange);
  font-weight: 700;
}
.lang-divider { color: var(--gray-300); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #FFF8EC 0%, #FFE9D6 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(232, 74, 31, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(245, 227, 50, 0.12) 0%, transparent 40%);
  z-index: 1;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  z-index: 1;
  animation: float 12s ease-in-out infinite;
}
.hero-blob-1 {
  top: 10%; right: 10%;
  width: 400px; height: 400px;
  background: var(--orange);
  animation-delay: 0s;
}
.hero-blob-2 {
  bottom: 10%; left: 5%;
  width: 350px; height: 350px;
  background: var(--yellow);
  animation-delay: -4s;
}
.hero-blob-3 {
  top: 50%; left: 50%;
  width: 250px; height: 250px;
  background: var(--mint);
  opacity: 0.2;
  animation-delay: -8s;
}
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-40px) scale(1.08); }
  66% { transform: translate(-30px,30px) scale(0.95); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 160px);
}

.hero-content { max-width: 580px; }
.hero-headline {
  font-family: var(--ff-display-en);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--charcoal);
}
.hero-headline .hero-ta {
  display: block;
  font-family: var(--ff-display-ta);
  font-size: 0.62em;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 12px;
  letter-spacing: 0;
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--gray-700);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat strong {
  font-family: var(--ff-display-en);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--orange);
}
.hero-stat span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-visual {
  position: relative;
  height: 540px;
}
.hero-product {
  position: absolute;
  transition: transform 0.5s ease;
}
.hero-product img {
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.25));
}
.hero-product-1 {
  top: 0; right: 10%;
  width: 56%;
  z-index: 3;
  animation: bobble 6s ease-in-out infinite;
}
.hero-product-2 {
  top: 25%; left: 0;
  width: 48%;
  z-index: 2;
  animation: bobble 6s ease-in-out infinite -2s;
}
.hero-product-3 {
  bottom: 0; right: 0;
  width: 50%;
  z-index: 1;
  animation: bobble 6s ease-in-out infinite -4s;
}
@keyframes bobble {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-700);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px;
  height: 30px;
  border: 2px solid var(--gray-500);
  border-radius: 99px;
  position: relative;
}
.scroll-arrow::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  background: var(--orange);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot {
  0% { top: 6px; opacity: 1; }
  100% { top: 16px; opacity: 0; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */

.trust-strip {
  background: var(--charcoal);
  color: var(--white);
  padding: 18px 0;
  overflow: hidden;
}
.trust-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ============================================================
   SECTIONS GENERIC
   ============================================================ */

.section {
  padding: 100px 0;
}
.section-cream { background: var(--cream-warm); }
.section-dark {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A1810 100%);
  color: var(--white);
}
.section-orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

/* ============================================================
   WHY SECTION
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}
.why-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.why-card h4 {
  font-family: var(--ff-body);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-card p {
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.55;
}
.why-card-hero {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
}
.why-card-hero .ta-h,
.why-card-hero h4,
.why-card-hero p { color: var(--white); }
.why-card-hero .ta-h { color: var(--yellow); }
.protein-badge {
  width: 100px;
  height: 100px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--charcoal);
  box-shadow: 0 8px 30px rgba(245, 227, 50, 0.4);
  transform: rotate(-6deg);
}
.protein-num {
  font-family: var(--ff-display-en);
  font-size: 2.2rem;
  line-height: 0.9;
}
.protein-label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 4px;
  text-align: center;
}

/* Comparison Table */
.comparison {
  background: var(--white);
  padding: 40px;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}
.comparison-title {
  font-family: var(--ff-display-en);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 28px;
  color: var(--charcoal);
}
.comparison-table {
  overflow-x: auto;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.comparison-table th,
.comparison-table td {
  padding: 16px 12px;
  text-align: left;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--gray-100);
}
.comparison-table th {
  font-weight: 700;
  background: var(--cream);
  color: var(--charcoal);
}
.comparison-table th.hl {
  background: var(--orange);
  color: var(--white);
}
.comparison-table td.hl {
  background: rgba(232, 74, 31, 0.06);
  font-weight: 700;
  color: var(--orange);
}
.comparison-table tr:hover td { background: var(--cream); }
.comparison-table tr:hover td.hl { background: rgba(232, 74, 31, 0.12); }

/* ============================================================
   TECHNOLOGY
   ============================================================ */

.tech-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 64px;
}
.tech-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px 28px;
  border-radius: 24px;
  position: relative;
  backdrop-filter: blur(10px);
}
.tech-step-num {
  font-family: var(--ff-display-en);
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1;
  opacity: 0.4;
  position: absolute;
  top: 16px;
  right: 20px;
}
.tech-step-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.tech-step h3 {
  font-family: var(--ff-display-en);
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--white);
}
.tech-step p {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
}
.tech-arrow {
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: var(--orange);
}

.tech-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: 36px;
  background: rgba(245, 227, 50, 0.08);
  border-radius: 24px;
  border: 1px solid rgba(245, 227, 50, 0.2);
  margin-bottom: 32px;
}
.tech-stat {
  text-align: center;
}
.tech-stat strong {
  display: block;
  font-family: var(--ff-display-en);
  font-size: 2.4rem;
  color: var(--yellow);
  margin-bottom: 4px;
}
.tech-stat span {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.tech-callout {
  background: rgba(232, 74, 31, 0.12);
  border-left: 4px solid var(--orange);
  padding: 24px 32px;
  border-radius: 16px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.tech-callout-icon { font-size: 2.4rem; }
.tech-callout p {
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
}

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange) 0%, var(--yellow) 100%);
  z-index: 0;
}
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}
.process-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display-en);
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(232, 74, 31, 0.3);
  position: relative;
  z-index: 1;
}
.process-content {
  background: var(--white);
  padding: 24px 28px;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  flex: 1;
}
.process-content h3 {
  font-family: var(--ff-display-en);
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.process-content p {
  color: var(--gray-700);
  font-size: 0.95rem;
}

/* ============================================================
   PRODUCTS
   ============================================================ */

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab {
  padding: 12px 24px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.92rem;
  background: var(--white);
  color: var(--gray-700);
  border: 2px solid transparent;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}
.tab:hover { border-color: var(--orange); color: var(--orange); }
.tab.active {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(232, 74, 31, 0.3);
}

.product-pane {
  display: none;
}
.product-pane.active {
  display: block;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  border-top: 6px solid var(--card-color, var(--orange));
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-image {
  position: relative;
  padding: 24px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--card-color) 10%, white) 0%, white 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.product-image img {
  max-height: 240px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}
.product-card:hover .product-image img {
  transform: scale(1.05) rotate(-2deg);
}
.product-flag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--yellow);
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: 99px;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.product-info {
  padding: 24px 24px 28px;
}
.product-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 2px;
}
.product-info h3 {
  font-family: var(--ff-display-en);
  font-size: 1.5rem;
  color: var(--card-color, var(--charcoal));
  letter-spacing: -0.01em;
  flex: 1;
  min-width: 0;
}
.product-price-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.product-price {
  font-family: var(--ff-display-en);
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  background: var(--yellow);
  padding: 6px 14px;
  border-radius: 99px;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(245, 227, 50, 0.4);
  transition: transform 0.25s ease;
}
.product-card:hover .product-price {
  transform: scale(1.06) rotate(-2deg);
}
.product-price-math {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gray-700);
  text-align: right;
  line-height: 1.2;
  max-width: 130px;
  white-space: nowrap;
}

/* ============================================================
   VALUE STRIP (between Products header and tabs)
   ============================================================ */

.value-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: linear-gradient(135deg, var(--charcoal) 0%, #2A1810 100%);
  color: var(--white);
  padding: 26px 36px;
  border-radius: 24px;
  margin-bottom: 40px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.value-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 227, 50, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.value-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.value-strip-item span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.value-strip-num {
  font-family: var(--ff-display-en);
  font-size: 2.4rem;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.01em;
}
.value-strip-hero {
  text-align: center;
  flex: 1 1 280px;
  max-width: 420px;
}
.value-strip-hero strong {
  display: block;
  font-family: var(--ff-display-en);
  font-size: 1.35rem;
  color: var(--yellow);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 4px;
}
.value-strip-hero span {
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.value-strip-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}
@media (max-width: 768px) {
  .value-strip { gap: 16px; padding: 22px 20px; }
  .value-strip-divider { display: none; }
  .value-strip-num { font-size: 2rem; }
  .value-strip-hero strong { font-size: 1.15rem; }
}
.product-desc {
  color: var(--gray-700);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.55;
}
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.meta-tag {
  background: var(--cream);
  color: var(--charcoal);
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
}
.meta-tag.stat {
  background: var(--yellow-soft);
  color: var(--charcoal);
}
.product-pair {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
  border-top: 1px dashed var(--gray-300);
  padding-top: 14px;
}
.product-pair strong { color: var(--charcoal); }

/* Placeholder cards for missing mockups */
.placeholder-card .product-image-placeholder {
  background: var(--card-color);
  min-height: 320px;
  padding: 24px;
}
.placeholder-box {
  background: var(--card-color);
  width: 240px;
  height: 280px;
  border-radius: 12px;
  padding: 24px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  transform: rotate(-3deg);
  background-image:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(0,0,0,0.15) 0%, transparent 50%);
}
.placeholder-icon {
  font-size: 3rem;
  text-align: center;
}
.placeholder-title {
  font-family: var(--ff-display-en);
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.placeholder-time {
  font-size: 0.7rem;
  text-align: center;
  background: var(--white);
  color: var(--card-color);
  padding: 6px 12px;
  border-radius: 99px;
  font-weight: 800;
  margin-top: -8px;
  letter-spacing: 0.04em;
}
.placeholder-protein {
  background: var(--yellow);
  color: var(--charcoal);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.placeholder-protein .big-num {
  font-family: var(--ff-display-en);
  font-size: 1.8rem;
  line-height: 0.9;
}
.placeholder-protein .small-label {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.placeholder-tags {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
}
.placeholder-tags span {
  background: rgba(255,255,255,0.2);
  font-size: 0.6rem;
  padding: 3px 8px;
  border-radius: 99px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ============================================================
   HOW TO USE
   ============================================================ */

.how-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.how-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 28px;
  border-radius: 16px;
  background: var(--white);
  border: 2px solid var(--gray-300);
  font-weight: 700;
  transition: all 0.25s;
  min-width: 180px;
}
.how-tab small {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 2px;
  font-weight: 500;
}
.how-tab.active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}
.how-tab.active small { color: rgba(255,255,255,0.85); }

.how-pane {
  display: none;
}
.how-pane.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-steps.how-steps-5 {
  grid-template-columns: repeat(5, 1fr);
}
.how-step {
  background: var(--white);
  padding: 36px 24px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.how-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.how-step-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}
.how-step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display-en);
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(232, 74, 31, 0.4);
}
.how-step h3 {
  font-family: var(--ff-display-en);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.how-step p {
  font-size: 0.88rem;
  color: var(--gray-700);
}

/* ============================================================
   COMBO BUILDER
   ============================================================ */

.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.combo-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  position: relative;
  border: 2px solid transparent;
}
.combo-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
}
.combo-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.combo-card h3 {
  font-family: var(--ff-display-en);
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.combo-card p {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.55;
}
.combo-tag {
  display: inline-block;
  background: var(--yellow-soft);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 99px;
  letter-spacing: 0.04em;
}

/* ============================================================
   TRUST BADGES
   ============================================================ */

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.trust-badge {
  text-align: center;
  padding: 36px 24px;
  background: var(--cream);
  border-radius: 24px;
  transition: all 0.3s;
}
.trust-badge:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.trust-badge-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.trust-badge h3 {
  font-family: var(--ff-display-en);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.trust-badge p {
  font-size: 0.88rem;
  color: var(--gray-700);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: 18px;
  padding: 22px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.2s;
}
.faq-item:hover { border-color: var(--orange); }
.faq-item[open] {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-color: var(--orange);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--charcoal);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--ff-display-en);
  font-size: 1.6rem;
  color: var(--orange);
  transition: transform 0.25s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  margin-top: 14px;
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   ABOUT
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-body {
  font-size: 1.05rem;
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-body em {
  color: var(--orange);
  font-style: italic;
  font-weight: 600;
}
.about-quote {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--cream);
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--charcoal);
}

.about-visual {
  position: relative;
  height: 400px;
}
.about-card-stack {
  position: relative;
  height: 100%;
}
.about-card {
  position: absolute;
  width: 220px;
  padding: 24px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  font-weight: 700;
  font-size: 1.15rem;
  transition: all 0.4s;
}
.about-card-1 { top: 0; left: 20%; transform: rotate(-6deg); background: var(--yellow); }
.about-card-2 { top: 90px; left: 50%; transform: rotate(4deg); }
.about-card-3 { top: 180px; left: 10%; transform: rotate(-2deg); background: var(--orange); color: var(--white); }
.about-card-4 { top: 270px; left: 45%; transform: rotate(6deg); }
.about-card:hover { transform: rotate(0) scale(1.05); z-index: 10; }

/* ============================================================
   CONNECT
   ============================================================ */

.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}
.connect-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
  color: var(--white);
}
.connect-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.connect-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.connect-card h3 {
  font-family: var(--ff-display-en);
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.connect-handle {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--yellow);
}
.connect-desc {
  font-size: 0.92rem;
  opacity: 0.85;
  margin-bottom: 20px;
}
.connect-cta {
  display: inline-block;
  background: var(--yellow);
  color: var(--charcoal);
  padding: 12px 28px;
  border-radius: 99px;
  font-weight: 800;
  font-size: 0.92rem;
  transition: all 0.2s;
}
.connect-card:hover .connect-cta {
  background: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.footer-tag {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--ff-display-en);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-address {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-flags {
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 600;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* ============================================================
   FLOATING IG BUTTON
   ============================================================ */

.float-ig {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(253, 29, 29, 0.4);
  transition: all 0.25s;
  z-index: 90;
}
.float-ig:hover {
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 12px 32px rgba(253, 29, 29, 0.5);
}

/* ============================================================
   LANGUAGE STATES (Tamil-first by default)
   ============================================================ */

/* Language-conditional display */
[data-lang="ta"] .hero-en { display: none; }
[data-lang="en"] .hero-ta { display: none; }
[data-lang="en"] .ta-title { display: none; }
[data-lang="ta"] .en-title { display: none; }
[data-lang="en"] .ta-h { display: none; }
[data-lang="en"] .ta-name { display: none; }
/* (no extra hiding needed — Tamil card heading sits above the English label) */

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; padding-top: 20px; }
  .hero-visual { height: 420px; max-width: 500px; margin: 0 auto; }
  .tech-steps { grid-template-columns: 1fr; }
  .tech-arrow { transform: rotate(90deg); justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how-steps.how-steps-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  }
  .hero-stats { gap: 24px; }
  .hero-stat strong { font-size: 1.8rem; }
  .how-steps,
  .how-steps.how-steps-5 { grid-template-columns: 1fr; }
  .connect-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .comparison { padding: 24px; }
  .trust-grid { justify-content: flex-start; }
  .trust-item { font-size: 0.85rem; }
  .product-card { max-width: 100%; }
  .float-ig { bottom: 16px; right: 16px; }
  .scroll-cue { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 90px 0 40px; }
  .hero-headline { font-size: clamp(2rem, 9vw, 3rem); }
  .why-card { padding: 24px 20px; }
  .product-grid { grid-template-columns: 1fr; }
  .tech-step { padding: 24px 20px; }
  .process-content { padding: 18px 20px; }
  .btn { padding: 12px 22px; font-size: 0.88rem; }
}

/* ============================================================
   AOS overrides
   ============================================================ */
[data-aos] { transition-property: transform, opacity; }
