:root {
  --bg: #0b2814;
  --bg-soft: #0f351e;
  --bg-card: rgba(10, 30, 18, 0.9);
  --accent: #ffb54a;
  --accent-green: #4f772d;
  --accent-green-hover: #5a8a35;
  --text-main: #f7fdf8;
  --text-muted: #c0d7c6;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 32px 80px rgba(0, 0, 0, 0.65);
  --radius-xl: 36px;
  --radius-lg: 20px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, sans-serif;
  background: radial-gradient(circle at top left, #234f2c 0, #07150b 48%, #030806 100%);
  color: var(--text-main);
  min-height: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  padding: 20px clamp(20px, 4vw, 40px) 0;
  position: relative;
  overflow: hidden;
}

/* Optimized Background Effects */
.page::before,
.page::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -2;
  will-change: transform, opacity;
  animation: radiantPulse 8s ease-in-out infinite alternate;
}

.page::before {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, #79d26b 0, transparent 65%);
  top: -80px;
  left: -60px;
}

.page::after {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #4ad8b1 0, transparent 65%);
  bottom: -120px;
  right: -60px;
  animation-delay: -4s;
}

/* Super Smooth Keyframe Animations */
@keyframes radiantPulse {
  0%, 100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(1.15);
  }
}

/* Optimized Leaf Decorations */
.leaf {
  position: fixed;
  width: 180px;
  height: 180px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.9));
  will-change: transform;
}

.leaf--left {
  left: -40px;
  top: 80px;
  background: radial-gradient(circle, #88d66b 0%, transparent 70%);
  animation: leafFloatSmooth 22s ease-in-out infinite alternate;
}

.leaf--right {
  right: -50px;
  bottom: -10px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, #4ad8b1 0%, transparent 70%);
  animation: leafFloatSmooth 26s ease-in-out infinite alternate;
  animation-delay: -6s;
}

.leaf--float-1,
.leaf--float-2 {
  width: 120px;
  height: 120px;
  opacity: 0.15;
  background: radial-gradient(circle, #88d66b 0%, transparent 70%);
  animation: leafDrift 20s ease-in-out infinite;
}

.leaf--float-1 {
  top: 30%;
  right: 15%;
}

.leaf--float-2 {
  width: 90px;
  height: 90px;
  top: 60%;
  left: 20%;
  opacity: 0.12;
  animation-delay: -8s;
}

@keyframes leafFloatSmooth {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-26px) translateX(16px) rotate(2deg);
  }
}

@keyframes leafDrift {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -40px) rotate(90deg);
  }
  50% {
    transform: translate(-20px, -80px) rotate(180deg);
  }
  75% {
    transform: translate(-40px, -40px) rotate(270deg);
  }
}

/* Entry Animations */
@keyframes fadeUpSoft {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownSoft {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatInRight {
  from {
    opacity: 0;
    transform: translate3d(40px, 10px, 0) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* Navigation */
.nav {
  max-width: 1140px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: fadeDownSoft 0.6s ease-out 0.05s forwards;
}

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

.nav__logo {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 20%, #f9ffdf 0, #88d66b 40%, #0c311d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.nav__logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav__subtitle {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.18em;
}

/* Hero Section */
.hero {
  max-width: 1140px;
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  grid-template-areas:
    "eyebrow visual"
    "title visual"
    "subtitle visual"
    "order visual";
  column-gap: 40px;
  row-gap: 6px;
  align-items: start;
}

.hero__eyebrow {
  grid-area: eyebrow;
  max-width: 560px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 12px;
  opacity: 0;
  animation: fadeUpSoft 0.55s ease-out 0.18s forwards;
}

.hero__title {
  grid-area: title;
  max-width: 560px;
  font-size: clamp(2.4rem, 3.4vw + 1.2rem, 3.6rem);
  line-height: 1;
  margin: 0 0 8px;
  opacity: 0;
  animation: fadeUpSoft 0.6s ease-out 0.24s forwards;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: visible;
}

.hero__title span:not(.typewriter-text) {
  background: linear-gradient(135deg, #ffffff, #b8f6a4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.05;
  display: block;
  margin-top: 0;
  padding-top: 0;
  font-size: 0.75em;
  font-weight: 500;
  overflow: visible;
  white-space: normal;
}

/* Typewriter Effect */
.typewriter-text {
  display: inline-block;
  width: fit-content;
  background: linear-gradient(135deg, #ffffff, #b8f6a4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  min-height: 1em;
  height: 1em;
  line-height: 1;
  font-weight: 800;
  overflow: visible;
  margin-bottom: 0;
  padding-bottom: 0;
}

.typewriter-text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(79, 119, 45, 0.95), rgba(255, 181, 74, 0.8));
  opacity: 0.9;
  pointer-events: none;
}

.typewriter-text::after {
  content: '|';
  display: inline;
  color: var(--accent-green);
  animation: blink 0.8s step-end infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero__subtitle {
  grid-area: subtitle;
  max-width: 560px;
  margin: 0 0 6px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUpSoft 0.6s ease-out 0.3s forwards;
}

.order-section {
  grid-area: order;
  max-width: 560px;
  margin: 12px 0 6px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  animation: fadeUpSoft 0.65s ease-out 0.38s forwards;
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.countdown-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.countdown-display {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(5, 20, 11, 0.6);
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 181, 74, 0.2);
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.countdown-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 32px;
  text-align: center;
}

.countdown-unit {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: lowercase;
  font-weight: 500;
}

.countdown-separator {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  padding: 0 2px;
  line-height: 1;
  margin-bottom: 12px;
}

/* Button with Smooth Hover */
.btn-order {
  padding: 20px 60px;
  background: var(--accent-green);
  color: white;
  font-size: 18px;
  font-weight: 700;
  border-radius: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(79, 119, 45, 0.3);
  cursor: pointer;
  border: none;
  width: fit-content;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s ease;
  font-family: "Poppins", sans-serif;
  will-change: transform;
}

.btn-order:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(79, 119, 45, 0.5);
  background: var(--accent-green-hover);
}

.btn-order:active {
  transform: translateY(-1px) scale(1);
}

/* Hero Visual */
.hero__visual {
  grid-area: visual;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  animation: floatInRight 0.7s ease-out 0.4s forwards;
  margin-top: -40px;
}

.hero__glass {
  position: relative;
  width: min(380px, 90%);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl);
  padding: 20px;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.2), rgba(5, 18, 9, 0.95));
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 120%, rgba(136, 214, 107, 0.35) 0, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.discount-badge {
  position: absolute;
  top: 20px;
  right: -10px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-hover));
  color: white;
  padding: 10px 24px;
  border-radius: 30px 0 0 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(79, 119, 45, 0.5);
  z-index: 10;
  pointer-events: none;
}

.hero__image {
  position: relative;
  z-index: 1;
  width: 85%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5));
  will-change: transform;
  animation: productFloat 4s ease-in-out infinite alternate;
  margin: 0 auto;
}

@keyframes productFloat {
  0%, 100% {
    transform: translateY(0) scale(0.97);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
  }
}

/* Price Section Above Product - Compact */
.price-section {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 12px;
  padding: 8px 14px;
  background: rgba(5, 20, 11, 0.85);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: fit-content;
  max-width: 180px;
}

.price-regular {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.6;
  letter-spacing: 0.3px;
}

.price-discount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(255, 181, 74, 0.3);
  line-height: 1.2;
}

.price-savings {
  font-size: 0.65rem;
  color: var(--accent-green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Section Styles */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 8px;
  background: linear-gradient(135deg, #ffffff, #b8f6a4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-size: 0.95rem;
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 35px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Ingredients Section */
.ingredients-section-wrapper {
  max-width: 1140px;
  margin: 0 auto 25px;
  padding: 0;
}

.ingredients-section {
  padding: 25px 30px;
  border-radius: 24px;
  background: rgba(10, 25, 16, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.75);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.ingredient-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(5, 20, 11, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.ingredient-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.ingredient-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.ingredient-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* How It Works Section */
.how-it-works-section {
  max-width: 1140px;
  margin: 0 auto 25px;
  padding: 25px 30px;
  border-radius: 24px;
  background: rgba(10, 25, 16, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.75);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 35px;
}

.step-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 20px;
  background: rgba(5, 20, 11, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.step-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.step-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(79, 119, 45, 0.1), rgba(90, 138, 53, 0.1));
  padding: 10px;
  overflow: hidden;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.step-title {
  font-size: 1.3rem;
  margin: 0 0 12px;
  color: var(--text-main);
}

.step-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.cta-center {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Screenshot Slider - Auto Scroll Left to Right */
.reviews-section {
  max-width: 100%;
  margin: 0 auto 25px;
  padding: 25px 0;
  overflow: hidden;
}

.screenshot-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.screenshot-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  animation: scrollLeft 40s linear infinite;
}

.screenshot-track:hover {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Move exactly one "set" width (6 items) so the loop reset is seamless. */
    transform: translateX(calc(-320px * 6));
  }
}

.screenshot-item {
  flex-shrink: 0;
  width: 300px;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease;
}

.screenshot-item:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.9);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* FAQ Section */
.faq-section {
  max-width: 900px;
  margin: 0 auto 25px;
  padding: 25px 30px;
}

.faq-container {
  margin-bottom: 35px;
}

.faq-item {
  margin-bottom: 14px;
  border-radius: 16px;
  background: rgba(8, 25, 14, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.faq-question {
  padding: 22px 28px;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding-right: 50px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--accent-green);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 22px 28px;
}

/* Enhanced Disclaimers Section */
.disclaimers-section {
  max-width: 1140px;
  margin: 0 auto 20px;
  padding: 25px 30px;
  border-radius: 24px;
  background: rgba(10, 20, 14, 0.95);
  border: 2px solid rgba(255, 181, 74, 0.3);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.75);
}

.disclaimers-title {
  font-size: 1.1rem;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-align: center;
}

.disclaimers-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.disclaimer-item {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: rgba(5, 15, 10, 0.5);
}

.disclaimer-item strong {
  color: var(--text-main);
}

.disclaimer-fiction,
.disclaimer-supplement,
.disclaimer-important,
.disclaimer-consult,
.disclaimer-assessment {
  border-left: 3px solid var(--accent);
  background: rgba(255, 181, 74, 0.05);
}

/* Contact Section */
.contact-section {
  max-width: 900px;
  margin: 0 auto 20px;
  padding: 20px 30px;
  border-radius: 20px;
  background: rgba(8, 25, 14, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-title {
  font-size: 1.3rem;
  margin: 0 0 16px;
  color: var(--text-main);
  text-align: center;
}

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

.contact-info p {
  margin: 8px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-info strong {
  color: var(--text-main);
}

/* Refund Policy Section */
.refund-section {
  max-width: 1140px;
  margin: 0 auto 20px;
  padding: 25px 30px;
  border-radius: 24px;
  background: rgba(10, 20, 14, 0.95);
  border: 2px solid rgba(74, 216, 177, 0.3);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.75);
}

.refund-title {
  font-size: 1.1rem;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4ad8b1;
  text-align: center;
}

.refund-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.refund-item {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: rgba(5, 15, 10, 0.5);
  border-left: 3px solid #4ad8b1;
  background: rgba(74, 216, 177, 0.05);
}

.refund-item strong {
  color: var(--text-main);
}

/* Footer */
.footer {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 30px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 20%, #f9ffdf 0, #88d66b 40%, #0c311d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-main);
}

.footer-tagline {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.18em;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

.footer-heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-main);
  margin: 0 0 8px;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--accent-green);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 8px;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  opacity: 0.7;
}

/* Optimized Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

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

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 641px) {
  /* Tablet View Optimizations */
  .order-section {
    align-items: flex-start;
  }

  .countdown-timer {
    align-self: flex-start;
    width: auto;
    align-items: flex-start;
  }

  /* Tablet: Ingredients - 3 columns */
  .ingredients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Tablet: Steps - 2 columns */
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .step-image {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 900px) and (min-width: 641px) {
  .order-section {
    align-items: center;
    width: 100%;
  }

  .countdown-timer {
    align-self: center;
    width: 100%;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "eyebrow"
      "visual"
      "order"
      "title"
      "subtitle";
    row-gap: 14px;
    margin-bottom: 15px;
  }

  .hero__visual {
    margin-top: 10px;
  }

  .order-section {
    align-items: center;
    width: 100%;
    margin: 10px 0 6px 0;
  }

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

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

  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      /* Keep in sync with base slider step width: item(300px) + gap(20px) = 320px */
      transform: translateX(calc(-320px * 6));
    }
  }
}

@media (max-width: 640px) {
  .page {
    padding: 14px 14px 0;
  }

  .hero__title {
    font-size: clamp(2rem, 7vw, 2.6rem);
    gap: 24px;
  }

  .typewriter-text::before {
    bottom: -12px;
    width: 100%;
    height: 3px;
  }

  .hero__subtitle {
    font-size: 0.9rem;
  }

  .btn-order {
    width: 100%;
    max-width: 400px;
    padding: 18px 40px;
    font-size: 16px;
  }

  /* Mobile: Ingredients - 3 columns */
  .ingredients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .ingredient-item {
    flex-direction: column;
    padding: 12px 8px;
    gap: 8px;
  }

  .ingredient-icon {
    font-size: 1.5rem;
  }

  .ingredient-text {
    font-size: 0.7rem;
    text-align: center;
  }

  /* Mobile: Steps - 2 columns */
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .step-item {
    padding: 20px 12px;
  }

  .step-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
  }

  .step-title {
    font-size: 1.1rem;
  }

  .step-description {
    font-size: 0.8rem;
  }

  .ingredients-section,
  .how-it-works-section,
  .reviews-section,
  .faq-section,
  .disclaimers-section,
  .contact-section {
    padding: 20px 15px;
    margin-bottom: 15px;
  }

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

  .footer {
    padding: 30px 20px 20px;
  }
  
  .screenshot-item {
    width: 250px;
  }
  
  /* Countdown timer mobile adjustments */
  .countdown-value {
    font-size: 1.2rem;
    min-width: 28px;
  }

  .countdown-unit {
    font-size: 0.6rem;
  }
  
  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      /* Mobile: item(250px) + gap(20px) = 270px */
      transform: translateX(calc(-270px * 6));
    }
  }
}
