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

:root {
  --red: #B22234;
  --red-dark: #8B1A2B;
  --gold: #C8A84E;
  --gold-light: #D4B96A;
  --cream: #FFF9F0;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --gray: #666666;
  --gray-light: #F5F5F5;
  --gray-border: #E0E0E0;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --transition: 0.3s ease;
}

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

body {
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul { list-style: none; }

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.section-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  margin-bottom: 20px;
  color: var(--black);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 48px;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

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

.navbar-logo img {
  height: 44px;
  transition: height var(--transition), filter var(--transition);
  filter: brightness(0) invert(1);
}

.navbar.scrolled .navbar-logo img {
  height: 36px;
  filter: none;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-nav a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white);
  position: relative;
  padding: 4px 0;
}

.navbar.scrolled .navbar-nav a {
  color: var(--black);
}

.navbar.scrolled .navbar-cta .btn {
  color: var(--white);
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
  width: 100%;
}

.navbar-cta .btn {
  padding: 10px 28px;
  font-size: 0.85rem;
  color: var(--white);
  background: transparent;
  border-color: var(--white);
}

.navbar-cta .btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--red);
}

.navbar.scrolled .navbar-cta .btn {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.navbar.scrolled .navbar-cta .btn:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

.navbar-cta .btn::after {
  display: none;
}

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

.navbar-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .navbar-toggle span {
  background: var(--black);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--red);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.06;
  background-image:
    radial-circle(circle at 20% 50%, var(--white) 0%, transparent 50%),
    radial-circle(circle at 80% 20%, var(--white) 0%, transparent 40%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 80px;
  padding-bottom: 24px;
  height: 100%;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  margin-bottom: 16px;
}

.hero-badge img {
  height: 20px;
}

.hero-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 8px;
}

.hero h1 .highlight {
  color: var(--gold);
  display: block;
}

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  max-width: 480px;
  line-height: 1.6;
}

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

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

.hero-stat {
  text-align: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px 28px;
  min-width: 130px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.hero-stat:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.hero-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.hero-stat-icon {
  margin-bottom: 8px;
  opacity: 0.8;
}

.hero-stat:hover .hero-stat-icon {
  opacity: 1;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
  font-weight: 600;
}

.hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-product-wrapper {
  position: relative;
  animation: float 4s ease-in-out infinite;
}

.hero-product-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  z-index: 0;
  animation: glow-pulse 3s ease-in-out infinite;
}

.hero-product-wrapper img {
  position: relative;
  z-index: 1;
  max-height: min(500px, 65vh);
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3));
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.45; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.08); }
}

.hero-product-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.hero-product-ring::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
}

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

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--cream);
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-border);
}

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

.feature-item {
  text-align: center;
  padding: 20px 12px;
  transition: transform var(--transition);
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-item img {
  height: 64px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.feature-item span {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 80px 0;
  background: var(--white);
}

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

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.about-visual {
  position: relative;
  width: 400px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Dramatic light burst ---- */
.av-light-burst {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,230,200,0.5) 0%, rgba(245,230,200,0.15) 40%, transparent 70%);
  z-index: 0;
  animation: burst-pulse 4s ease-in-out infinite;
}

@keyframes burst-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.06); opacity: 1; }
}

/* ---- Scoop - tilted, pouring position ---- */
.av-scoop {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 150px;
  z-index: 4;
  transform: rotate(-30deg);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
  animation: scoop-tilt 5s ease-in-out infinite;
  transform-origin: 80% 80%;
}

.av-scoop svg {
  width: 100%;
  height: auto;
}

@keyframes scoop-tilt {
  0%, 100% { transform: rotate(-30deg) translateY(0); }
  50% { transform: rotate(-25deg) translateY(-8px); }
}

/* ---- Powder clouds (large soft blobs) ---- */
.av-powder-cloud {
  position: absolute;
  border-radius: 50%;
  background: var(--cream);
  z-index: 2;
}

.cloud-1 {
  width: 120px; height: 100px;
  top: 35%; left: 10%;
  background: #F5E6C8;
  opacity: 0.7;
  filter: blur(18px);
  animation: cloud-drift-1 6s ease-in-out infinite;
}

.cloud-2 {
  width: 90px; height: 80px;
  top: 25%; left: 25%;
  background: #F0DEB0;
  opacity: 0.5;
  filter: blur(14px);
  animation: cloud-drift-2 7s ease-in-out infinite;
}

.cloud-3 {
  width: 140px; height: 110px;
  top: 42%; left: 2%;
  background: #FFF5E0;
  opacity: 0.6;
  filter: blur(22px);
  animation: cloud-drift-3 5.5s ease-in-out infinite;
}

.cloud-4 {
  width: 80px; height: 70px;
  top: 20%; left: 5%;
  background: #F5E6C8;
  opacity: 0.45;
  filter: blur(16px);
  animation: cloud-drift-4 8s ease-in-out infinite;
}

.cloud-5 {
  width: 100px; height: 85px;
  top: 50%; left: 18%;
  background: #F0DEB0;
  opacity: 0.4;
  filter: blur(20px);
  animation: cloud-drift-1 7s ease-in-out infinite reverse;
}

@keyframes cloud-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10px, -15px) scale(1.1); }
}
@keyframes cloud-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-8px, -20px) scale(1.15); }
}
@keyframes cloud-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15px, -10px) scale(1.08); }
}
@keyframes cloud-drift-4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-12px, 8px) scale(1.12); }
}

/* ---- Pour streams from scoop ---- */
.av-pour-stream {
  position: absolute;
  z-index: 3;
  background: #F0DEB0;
  border-radius: 50% 50% 40% 40%;
  opacity: 0.6;
}

.stream-1 {
  width: 12px; height: 60px;
  bottom: 130px; left: 70px;
  transform: rotate(15deg);
  filter: blur(3px);
  animation: stream-flow 3s ease-in-out infinite;
}

.stream-2 {
  width: 8px; height: 45px;
  bottom: 140px; left: 85px;
  transform: rotate(5deg);
  filter: blur(2px);
  opacity: 0.5;
  animation: stream-flow 3.5s ease-in-out infinite 0.3s;
}

.stream-3 {
  width: 10px; height: 50px;
  bottom: 125px; left: 55px;
  transform: rotate(25deg);
  filter: blur(4px);
  opacity: 0.4;
  animation: stream-flow 4s ease-in-out infinite 0.6s;
}

@keyframes stream-flow {
  0%, 100% { opacity: 0.3; transform: rotate(15deg) scaleY(0.9); }
  50% { opacity: 0.7; transform: rotate(15deg) scaleY(1.1); }
}

/* ---- Splash particles - frozen motion ---- */
.av-splash-particle {
  position: absolute;
  border-radius: 50%;
  z-index: 5;
}

/* Large chunks */
.sp-lg {
  background: #F5E6C8;
  box-shadow: 0 2px 8px rgba(200,168,78,0.3);
}

.sp-1 { width: 18px; height: 18px; top: 28%; left: 8%; animation: sp-float-1 5s ease-in-out infinite; }
.sp-2 { width: 22px; height: 20px; top: 18%; left: 22%; border-radius: 40% 60% 50% 50%; animation: sp-float-2 6s ease-in-out infinite; }
.sp-3 { width: 16px; height: 14px; top: 38%; left: 3%; border-radius: 50% 40% 60% 50%; animation: sp-float-3 5.5s ease-in-out infinite; }
.sp-4 { width: 20px; height: 18px; top: 14%; left: 12%; animation: sp-float-4 7s ease-in-out infinite; }
.sp-5 { width: 15px; height: 15px; top: 45%; left: 15%; border-radius: 45% 55% 50% 50%; animation: sp-float-1 6.5s ease-in-out infinite reverse; }

/* Medium particles */
.sp-md {
  background: #F0DEB0;
  box-shadow: 0 1px 4px rgba(200,168,78,0.2);
}

.sp-6  { width: 10px; height: 10px; top: 22%; left: 18%; animation: sp-float-2 4.5s ease-in-out infinite 0.2s; }
.sp-7  { width: 8px;  height: 8px;  top: 32%; left: 28%; animation: sp-float-3 5s ease-in-out infinite 0.5s; }
.sp-8  { width: 12px; height: 10px; top: 12%; left: 6%;  border-radius: 40% 60% 50% 50%; animation: sp-float-4 6s ease-in-out infinite 0.3s; }
.sp-9  { width: 9px;  height: 9px;  top: 48%; left: 6%;  animation: sp-float-1 5.5s ease-in-out infinite 0.7s; }
.sp-10 { width: 11px; height: 9px;  top: 16%; left: 30%; animation: sp-float-2 4s ease-in-out infinite 1s; }
.sp-11 { width: 8px;  height: 8px;  top: 40%; left: 24%; animation: sp-float-3 5s ease-in-out infinite 0.4s; }
.sp-12 { width: 10px; height: 10px; top: 8%;  left: 16%; animation: sp-float-4 6.5s ease-in-out infinite 0.8s; }

/* Small dust */
.sp-sm {
  background: #E8D8B0;
  opacity: 0.7;
}

.sp-13 { width: 5px; height: 5px; top: 20%; left: 2%;  animation: sp-float-1 4s ease-in-out infinite 0.1s; }
.sp-14 { width: 4px; height: 4px; top: 30%; left: 32%; animation: sp-float-2 3.5s ease-in-out infinite 0.3s; }
.sp-15 { width: 6px; height: 6px; top: 10%; left: 25%; animation: sp-float-3 5s ease-in-out infinite 0.6s; }
.sp-16 { width: 3px; height: 3px; top: 42%; left: 20%; animation: sp-float-4 4.5s ease-in-out infinite 0.2s; }
.sp-17 { width: 5px; height: 5px; top: 52%; left: 10%; animation: sp-float-1 3.8s ease-in-out infinite 0.9s; }
.sp-18 { width: 4px; height: 4px; top: 24%; left: 35%; animation: sp-float-2 5.2s ease-in-out infinite 0.4s; }
.sp-19 { width: 3px; height: 3px; top: 36%; left: 0%;  animation: sp-float-3 4.2s ease-in-out infinite 1.1s; }
.sp-20 { width: 5px; height: 5px; top: 6%;  left: 20%; animation: sp-float-4 3.5s ease-in-out infinite 0.5s; }
.sp-21 { width: 4px; height: 4px; top: 55%; left: 22%; animation: sp-float-1 4.8s ease-in-out infinite 0.7s; }
.sp-22 { width: 3px; height: 3px; top: 15%; left: 10%; animation: sp-float-2 5s ease-in-out infinite 1.3s; }

@keyframes sp-float-1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(6px, -10px); }
}
@keyframes sp-float-2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-8px, -6px); }
}
@keyframes sp-float-3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5px, 8px); }
}
@keyframes sp-float-4 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-6px, -12px); }
}

/* ---- Powder mist / haze ---- */
.av-mist {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.mist-1 {
  width: 200px; height: 160px;
  top: 30%; left: -5%;
  background: rgba(245,230,200,0.2);
  filter: blur(30px);
  animation: mist-drift 8s ease-in-out infinite;
}

.mist-2 {
  width: 160px; height: 120px;
  top: 15%; left: 15%;
  background: rgba(240,222,176,0.15);
  filter: blur(25px);
  animation: mist-drift 10s ease-in-out infinite reverse;
}

.mist-3 {
  width: 180px; height: 140px;
  top: 50%; left: -2%;
  background: rgba(245,230,200,0.12);
  filter: blur(28px);
  animation: mist-drift 9s ease-in-out infinite 2s;
}

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

/* ---- Product can ---- */
.about-product-img {
  position: relative;
  z-index: 6;
  max-height: 270px;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.2));
  animation: product-hover 5s ease-in-out infinite;
}

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

/* ---- 44 Nutrients badge ---- */
.about-image-badge {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: var(--red);
  color: var(--white);
  padding: 18px 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 7;
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(178,34,52,0.3); }
  50% { box-shadow: 0 8px 32px rgba(178,34,52,0.5); }
}

.about-image-badge .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.about-image-badge .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
  counter-reset: highlight;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid transparent;
  position: relative;
  transition: all 0.3s ease;
  cursor: default;
  overflow: hidden;
}

.about-highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-highlight-item:hover {
  border-color: var(--red);
  box-shadow: 0 6px 24px rgba(178,34,52,0.1);
  transform: translateY(-3px);
}

.about-highlight-item:hover::before {
  opacity: 1;
}

.about-highlight-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.about-highlight-item:hover .about-highlight-icon {
  background: var(--red);
}

.about-highlight-item:hover .about-highlight-icon img {
  filter: brightness(0) invert(1);
}

.about-highlight-icon img {
  height: 28px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.about-highlight-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-highlight-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}

.about-highlight-desc {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.4;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
  padding: 100px 0;
  background: var(--cream);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.benefit-icon img {
  height: 44px;
  object-fit: contain;
}

.benefit-card h3 {
  margin-bottom: 12px;
  color: var(--red);
}

.benefit-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== NUTRITION SECTION ===== */
.nutrition {
  padding: 100px 0;
  background: var(--white);
}

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

.nutrition-content {
  position: sticky;
  top: 120px;
}

.nutrition-table {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.nutrition-table-header {
  background: var(--red);
  color: var(--white);
  padding: 20px 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nutrition-table-row {
  padding: 14px 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 12px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-border);
  transition: background var(--transition);
}

.nutrition-table-row:hover {
  background: var(--white);
}

.nutrition-table-row:last-child {
  border-bottom: none;
}

.nutrition-table-row .nutrient {
  font-weight: 600;
  color: var(--black);
}

.nutrition-table-row .value {
  color: var(--gray);
}

.nutrition-table-row .rda {
  color: var(--red);
  font-weight: 600;
}

.nutrition-serving-info {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--gray);
}

/* ===== AMINO ACIDS SECTION ===== */
.amino-acids {
  padding: 100px 0;
  background: var(--red);
  color: var(--white);
}

.amino-acids .section-label {
  color: var(--gold);
}

.amino-acids .section-title {
  color: var(--white);
}

.amino-acids .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.amino-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.amino-item {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}

.amino-item:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}

.amino-item .name {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.amino-item .amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

.amino-item .unit {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== HOW TO USE ===== */
.how-to-use {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.steps-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 56px;
  padding: 0 10px;
}

/* Connecting line across all steps */
.steps-line {
  position: absolute;
  top: 48px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: var(--gray-border);
  z-index: 0;
}

.steps-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  animation: line-fill 1.5s ease forwards 0.5s;
}

@keyframes line-fill {
  to { transform: scaleX(1); }
}

.step-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 18%;
  padding: 0;
}

/* Step number badge */
.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: -10px;
  right: 10px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--white);
  background: var(--red);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(178,34,52,0.3);
}

.step-icon {
  width: 96px;
  height: 96px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 3px solid var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
}

/* Outer ring on hover */
.step-card:hover .step-icon {
  border-color: var(--red);
  box-shadow: 0 8px 30px rgba(178,34,52,0.15);
  transform: translateY(-6px);
}

.step-icon img {
  height: 44px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.step-card:hover .step-icon img {
  transform: scale(1.1);
}

.step-body {
  background: var(--white);
  border-radius: 14px;
  padding: 20px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-border);
  transition: all 0.4s ease;
  width: 100%;
}

.step-card:hover .step-body {
  border-color: var(--red);
  box-shadow: 0 6px 24px rgba(178,34,52,0.08);
  transform: translateY(-4px);
}

.step-card h3 {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--black);
}

.step-card:hover h3 {
  color: var(--red);
}

.step-card p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ===== CERTIFICATIONS ===== */
.certifications {
  padding: 80px 0;
  background: var(--white);
}

.cert-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition);
}

.cert-item:hover {
  transform: scale(1.08);
}

.cert-item img {
  height: 64px;
  object-fit: contain;
}

.cert-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== CTA SECTION ===== */
.cta {
  padding: 100px 0;
  background: var(--red);
  text-align: center;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

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

.cta-buttons .btn {
  flex: 1 1 240px;
  max-width: 280px;
  justify-content: center;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--gold);
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
  padding: 160px 0 80px;
  background: var(--red);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
}

.page-header .breadcrumb {
  margin-top: 16px;
  font-size: 0.9rem;
}

.page-header .breadcrumb a {
  color: var(--gold);
}

.page-header .breadcrumb span {
  color: rgba(255,255,255,0.5);
  margin: 0 8px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--cream);
  border-radius: 16px;
  transition: all var(--transition);
}

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

.contact-info-card .icon {
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card .icon svg {
  color: var(--white);
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.contact-info-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: 8px;
}

.contact-form > p {
  color: var(--gray);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-border);
  border-radius: 12px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  padding: 80px 0;
}

.legal-content .container {
  max-width: 840px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--red);
}

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

.legal-content p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.legal-content ul li {
  list-style: disc;
  color: var(--gray);
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.legal-content .last-updated {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-border);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

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

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--red-dark);
  transform: translateY(-4px);
}

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

  .hero-tagline { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }

  .hero-image {
    order: -1;
  }

  .hero-product-wrapper img {
    max-height: 340px;
  }

  .hero-product-ring {
    width: 320px;
    height: 320px;
  }

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

  .about .container,
  .nutrition .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    width: 320px;
    height: 360px;
  }

  .about-product-img { max-height: 220px; }
  .av-scoop { width: 110px; bottom: 20px; }
  .av-light-burst { width: 260px; height: 260px; }

  .nutrition-content {
    position: static;
  }

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

  .amino-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-timeline {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .steps-line { display: none; }
  .step-card { width: 30%; }

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

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

@media (max-width: 768px) {
  .navbar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
  }

  .navbar-overlay.open {
    display: block;
  }

  .navbar-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 24px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 1002;
  }

  .navbar-nav.open {
    right: 0;
  }

  .navbar-nav a {
    color: var(--black) !important;
    font-size: 1rem;
  }

  .navbar-cta {
    width: 100%;
  }

  .navbar-cta .btn {
    width: 100%;
    justify-content: center;
    background: var(--red) !important;
    border-color: var(--red) !important;
    color: var(--white) !important;
  }

  .navbar-cta .btn:hover {
    background: var(--red-dark) !important;
    border-color: var(--red-dark) !important;
  }

  .navbar-toggle {
    display: flex;
    z-index: 1003;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  .hero {
    height: auto;
    max-height: none;
    padding: 100px 0 40px;
  }

  .hero-product-wrapper img {
    max-height: 280px;
  }

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

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

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

  .step-card { width: 45%; }

  .nutrition-table-header,
  .nutrition-table-row {
    grid-template-columns: 1.5fr 1fr 1fr;
    font-size: 0.8rem;
    padding: 12px 16px;
  }

  .nutrition-table-header .rda-col,
  .nutrition-table-row .rda {
    display: none;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .features-strip .container {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .step-card { width: 100%; }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }
}
