@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg-dark: #0a0c0a;
  --bg-darker: #040504;
  --bg-card: rgba(18, 23, 16, 0.75);
  --bg-card-hover: rgba(28, 36, 25, 0.85);
  --green-accent: #5e7a3b;
  --green-bright: #7ca34b;
  --green-glow: rgba(124, 163, 75, 0.4);
  --gold-accent: #cfa864;
  --gold-light: #fceabb;
  --gold-glow: rgba(207, 168, 100, 0.4);
  --text-main: #f0f2eb;
  --text-muted: #a5ad9b;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --container-width: 1200px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-main);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Metallic & Glow Effects */
.gold-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, #f8b500 50%, var(--gold-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-glow {
  text-shadow: 0 0 25px rgba(124, 163, 75, 0.4);
}

/* Buttons & CTA */
.amazon-btn-wrap {
  display: inline-block;
  transition: var(--transition);
}

.glow-btn:hover {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 10px 25px rgba(248, 181, 0, 0.4));
}

.amazon-btn-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Parallax Background */
.parallax-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
  transform: translateZ(0);
  z-index: 0;
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Tilt 3D Effect */
.tilt-element {
  transition: transform 0.2s cubic-bezier(0.2, 0, 0.2, 1);
  will-change: transform;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 4rem 0 6rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(20, 28, 16, 0.75) 0%, rgba(10, 12, 10, 0.96) 80%);
  z-index: 1;
}

.hero-glow-effect {
  position: absolute;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--green-bright) 0%, transparent 70%);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.22;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
  animation: pulseGlow 8s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
  0% { transform: translateX(-50%) scale(0.8); opacity: 0.18; }
  100% { transform: translateX(-50%) scale(1.35); opacity: 0.35; }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 920px;
}

/* HERO BADGE WRAPPER WITH CANVAS & AURA (ENLARGED TO HAND SIZE) */
.hero-badge-wrapper {
  position: relative;
  width: 330px;
  height: 330px;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.smoke-canvas {
  position: absolute;
  top: -95px;
  left: -95px;
  width: 520px;
  height: 520px;
  pointer-events: none;
  z-index: 1;
}

.green-aura-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 163, 75, 0.65) 0%, rgba(94, 122, 59, 0.25) 50%, transparent 78%);
  filter: blur(30px);
  z-index: 0;
  animation: auraPulse 4s infinite alternate ease-in-out;
}

@keyframes auraPulse {
  0% { transform: scale(0.92); opacity: 0.65; }
  100% { transform: scale(1.18); opacity: 0.98; }
}

.hero-badge-logo {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 320px;
  filter: drop-shadow(0 0 45px rgba(124, 163, 75, 0.7));
  animation: floatBadge 6s ease-in-out infinite;
}

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

.hero-headline {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  background: linear-gradient(180deg, #ffffff 30%, #88a860 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-accent);
  margin-bottom: 1.6rem;
}

.hero-description {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-features-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4.5rem;
  width: 100%;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(124, 163, 75, 0.22);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.25rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--green-bright);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 35px var(--green-glow);
}

.feature-icon-wrapper {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: rgba(94, 122, 59, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green-bright);
  box-shadow: 0 0 15px rgba(124, 163, 75, 0.2);
}

.feature-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

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

/* ===== INGREDIENTS SECTION ===== */
.ingredients-section {
  background: linear-gradient(180deg, #11170d 0%, #070906 100%);
  padding: 7rem 0 6rem;
  position: relative;
}

.ingredients-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.texture-circle-container {
  position: relative;
  display: inline-block;
  margin-bottom: 2.2rem;
}

.texture-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-bright) 0%, rgba(94, 122, 59, 0.4) 50%, transparent 75%);
  opacity: 0.6;
  filter: blur(25px);
  animation: auraPulse 4s infinite alternate ease-in-out;
}

.texture-rotating-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px dashed var(--gold-accent);
  opacity: 0.7;
  animation: rotateRing 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-texture-circle {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--green-accent);
  box-shadow: 0 0 50px var(--green-glow), 0 0 25px rgba(207, 168, 100, 0.4);
  transition: var(--transition);
}

.hero-texture-circle:hover {
  transform: scale(1.08) rotate(4deg);
  border-color: var(--green-bright);
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gold-accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-lead {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.ingredient-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ingredient-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-accent);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 35px var(--gold-glow);
}

.ingredient-img-wrap {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.4rem;
  border: 3px solid var(--green-accent);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  background: #141a12;
}

.ingredient-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ingredient-card:hover .ingredient-img {
  transform: scale(1.12);
}

.ingredient-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.ingredient-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== SHOWCASE SECTION ===== */
.showcase-section {
  background: radial-gradient(circle at 50% 50%, #172213 0%, var(--bg-dark) 85%);
  padding: 7.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.showcase-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(124, 163, 75, 0.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(90px);
}

.showcase-jar-wrap {
  position: relative;
  max-width: 620px;
  margin: 0 auto 3rem;
  cursor: pointer;
}

.showcase-jar-aura {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 163, 75, 0.45) 0%, rgba(207, 168, 100, 0.2) 60%, transparent 80%);
  filter: blur(35px);
  z-index: 0;
  animation: jarAura 5s infinite alternate ease-in-out;
}

@keyframes jarAura {
  0% { transform: scale(0.95); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 0.85; }
}

.showcase-jar-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.9));
  transition: var(--transition);
}

.showcase-jar-wrap:hover .showcase-jar-img {
  transform: scale(1.06) translateY(-6px);
}

.stars-rating {
  font-size: 1.8rem;
  color: #ffc107;
  letter-spacing: 0.25em;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 12px rgba(255, 193, 7, 0.5));
}

.showcase-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.showcase-subtitle {
  font-size: 1.35rem;
  color: var(--gold-accent);
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.showcase-desc {
  max-width: 750px;
  margin: 0 auto 2.8rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ===== GALLERY LOOKBOOK SECTION ===== */
.gallery-section {
  padding: 7rem 0;
  background: var(--bg-darker);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  transition: var(--transition);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 10, 0.92) 0%, rgba(10, 12, 10, 0.3) 50%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold-accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 25px rgba(207, 168, 100, 0.6);
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-zoom-icon {
  transform: translate(-50%, -50%) scale(1);
}

.gallery-tag {
  color: var(--gold-accent);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.gallery-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

/* LIGHTBOX MODAL */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 4, 0.95);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0,0,0,0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 1.2rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--gold-accent);
  color: #000;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--green-bright);
  color: #fff;
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ===== WHY WE FIGHT & RESPONSIBILITY ===== */
.fight-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  background: #090c09;
}

.fight-bg-layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.45;
  mix-blend-mode: luminosity;
  z-index: 0;
}

.fight-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(10, 15, 9, 0.7) 0%, rgba(5, 7, 5, 0.95) 85%);
  z-index: 1;
}

.fight-section .container {
  position: relative;
  z-index: 2;
}

.fight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  margin-bottom: 6rem;
}

.fight-title {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.fight-subtitle {
  font-size: 1.15rem;
  color: var(--gold-accent);
  font-weight: 600;
}

.fight-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.85;
}

.responsibility-block {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.jar-glow-container {
  position: relative;
  display: inline-block;
  margin-bottom: 2.8rem;
}

.jar-glow-container::before {
  content: '';
  position: absolute;
  inset: -35px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 163, 75, 0.55) 0%, rgba(94, 122, 59, 0.25) 55%, transparent 80%);
  filter: blur(40px);
  z-index: 0;
  animation: auraPulse 4s infinite alternate ease-in-out;
}

.responsibility-jar {
  position: relative;
  z-index: 1;
  width: 540px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.92));
  transition: var(--transition);
}

.responsibility-jar:hover {
  transform: scale(1.05) translateY(-8px);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4.5rem;
  text-align: left;
}

.pillar-card {
  background: var(--bg-card);
  border-left: 4px solid var(--green-bright);
  padding: 1.8rem 1.4rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: var(--transition);
}

.pillar-card:hover {
  background: var(--bg-card-hover);
  transform: translateX(6px);
  border-left-color: var(--gold-accent);
}

.pillar-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.pillar-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== ABOUT FOUNDERS ===== */
.founders-section {
  padding: 7rem 0;
  background: linear-gradient(180deg, #090b09 0%, #12190f 100%);
  text-align: center;
}

.founders-avatar-wrap {
  display: inline-block;
  margin-bottom: 2.2rem;
}

.founders-avatar {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold-accent);
  box-shadow: 0 0 35px rgba(207, 168, 100, 0.35);
}

.founders-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.founders-subtitle {
  font-size: 1.15rem;
  color: var(--gold-accent);
  margin-bottom: 2.2rem;
}

.founders-text {
  max-width: 780px;
  margin: 0 auto 2.8rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.85;
}

.founders-signature {
  height: 75px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}

/* ===== MOVEMENT BANNER ===== */
.movement-section {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, rgba(32, 45, 23, 0.95) 0%, rgba(14, 20, 11, 0.95) 100%);
  border-top: 1px solid rgba(124, 163, 75, 0.35);
  border-bottom: 1px solid rgba(124, 163, 75, 0.35);
}

.movement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.movement-title {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.movement-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.movement-box {
  background: rgba(8, 10, 8, 0.7);
  border-left: 4px solid var(--gold-accent);
  padding: 1.8rem 2.2rem;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-main);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* ===== FAQ ACCORDION SECTION ===== */
.faq-section {
  padding: 7rem 0;
  background: var(--bg-darker);
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-container {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: var(--green-bright);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  background: var(--bg-card-hover);
}

.faq-summary {
  padding: 1.5rem 2rem;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: var(--text-main);
  user-select: none;
  transition: var(--transition);
}

.faq-summary::-webkit-details-marker { display: none; }

.faq-summary:hover {
  color: var(--gold-accent);
  background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: var(--gold-accent);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 2rem 1.8rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0.2rem;
  padding-top: 1.2rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #030403;
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.footer-logo {
  height: 55px;
  width: auto;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1024px) {
  .hero-features-grid,
  .ingredients-grid,
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .fight-grid,
  .movement-grid {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .hero-section {
    padding: 3rem 0 4.5rem;
  }

  .hero-badge-wrapper {
    width: 240px;
    height: 240px;
  }

  .smoke-canvas {
    width: 380px;
    height: 380px;
    top: -70px;
    left: -70px;
  }

  .hero-badge-logo {
    width: 230px;
    height: 230px;
  }

  .hero-texture-circle {
    width: 210px;
    height: 210px;
  }

  .showcase-jar-wrap {
    max-width: 100%;
  }

  .responsibility-jar {
    width: 330px;
  }

  .hero-features-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

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

  .ingredient-card {
    padding: 1.6rem 1rem;
  }

  .ingredient-img-wrap {
    width: 95px;
    height: 95px;
  }

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

  .gallery-card {
    height: 340px;
  }

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

  .amazon-btn-img {
    height: 46px;
  }

  .faq-summary {
    padding: 1.2rem 1.4rem;
    font-size: 1.05rem;
  }

  .faq-content {
    padding: 0 1.4rem 1.4rem;
  }

  .lightbox-prev { left: 0.8rem; }
  .lightbox-next { right: 0.8rem; }
}
