/* ============================================
   IRON JUNGLE NUTRITION — styles.css
   Palette: Matte black (#0a0a0a), jungle green (#1db954),
            acid yellow (#c8ff00), dark green (#148a3e),
            off-black (#111), charcoal (#1a1a1a), bone (#e8e8e8)
   Fonts:   Barlow Condensed (display) + Inter (body) + Permanent Marker (accent)
   ============================================ */

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

:root {
  --green: #1db954;
  --green-dark: #148a3e;
  --green-glow: rgba(29, 185, 84, 0.25);
  --yellow: #c8ff00;
  --yellow-dim: rgba(200, 255, 0, 0.12);
  --black: #0a0a0a;
  --black-alt: #111111;
  --charcoal: #1a1a1a;
  --charcoal-light: #222222;
  --bone: #e8e8e8;
  --bone-dim: #a0a0a0;
  --white: #ffffff;
  --danger: #ff4444;

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-accent: 'Permanent Marker', cursive;

  --nav-h: 72px;
  --nav-h-scroll: 64px;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bone);
  background-color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

img, svg {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

::selection {
  background: var(--green);
  color: var(--black);
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

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

/* --- SECTION UTILITIES --- */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--green);
  background: rgba(29, 185, 84, 0.08);
  border: 1px solid rgba(29, 185, 84, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--green);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--bone-dim);
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--black);
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 0 30px rgba(200, 255, 0, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: var(--black);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--dark {
  background: var(--black);
  color: var(--green);
  border-color: var(--black);
}
.btn--dark:hover {
  background: var(--charcoal);
  border-color: var(--green);
}

.btn--full {
  width: 100%;
}

/* --- SCROLL REVEAL --- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(29, 185, 84, 0.08);
  transition: height var(--transition), background var(--transition);
}

.nav--scrolled {
  height: var(--nav-h-scroll);
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: rgba(29, 185, 84, 0.15);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-iron {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  color: var(--white);
}

.nav__logo-jungle {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-top: 1px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--green);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--black);
  background: var(--green);
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav__cta:hover {
  background: var(--yellow);
  box-shadow: 0 0 20px rgba(200, 255, 0, 0.2);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}

.nav__hamburger-line {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--green);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
  overflow: hidden;
  background: var(--black);
}

.hero__bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  pointer-events: none;
}

.hero__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.15), transparent 70%);
  top: 10%;
  left: -10%;
  animation: float 12s ease-in-out infinite;
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.08), transparent 70%);
  bottom: 10%;
  right: -5%;
  animation: float 15s ease-in-out infinite reverse;
}

.hero__orb--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.1), transparent 70%);
  top: 50%;
  left: 40%;
  animation: float 10s ease-in-out infinite;
}

.hero > .container,
.hero__content,
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 24px;
}

.hero__badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--green);
  background: rgba(29, 185, 84, 0.08);
  border: 1px solid rgba(29, 185, 84, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  align-self: flex-start;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--green);
  -webkit-text-stroke: 0;
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--bone-dim);
  max-width: 500px;
  margin-top: 24px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--green);
  line-height: 1;
}

.hero__stat-plus {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--yellow);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--bone-dim);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

.hero__visual {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* Hero SVG animations */
.hero__svg-draw {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawStroke 2.5s ease-out forwards;
  animation-delay: 0.5s;
}

.hero__svg-fill {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 2s;
}

.hero__svg-ring {
  stroke-dasharray: 1100;
  stroke-dashoffset: 1100;
  animation: drawStroke 3s ease-out forwards;
}

.hero__svg-ring--inner {
  animation-delay: 0.5s;
}

.hero__svg-bolt {
  opacity: 0;
  animation: boltFlash 3s ease-in-out infinite;
  animation-delay: 2.5s;
}

.hero__svg-particle {
  animation: particleFloat 4s ease-in-out infinite;
}
.hero__svg-particle--1 { animation-delay: 0s; }
.hero__svg-particle--2 { animation-delay: 0.8s; }
.hero__svg-particle--3 { animation-delay: 1.6s; }
.hero__svg-particle--4 { animation-delay: 2.4s; }
.hero__svg-particle--5 { animation-delay: 3.2s; }

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero__scroll-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--bone-dim);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--black-alt);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}

.about__photo-frame {
  position: relative;
}

.about__photo-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(29, 185, 84, 0.15);
}

.about__photo-placeholder svg {
  width: 100%;
  height: auto;
}

.about__photo-accent {
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: 8px;
  left: 8px;
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  opacity: 0.2;
  z-index: -1;
}

.about__owner-card {
  display: inline-flex;
  flex-direction: column;
  background: var(--charcoal);
  border: 1px solid rgba(29, 185, 84, 0.2);
  padding: 14px 24px;
  border-radius: var(--radius);
  margin-top: 20px;
}

.about__owner-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.about__owner-title {
  font-size: 0.8rem;
  color: var(--green);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.about__quote {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--yellow);
  line-height: 1.6;
  padding-left: 20px;
  border-left: 3px solid var(--green);
  margin-top: 24px;
}

.about__text {
  font-size: 1rem;
  color: var(--bone-dim);
  line-height: 1.8;
  margin-top: 20px;
}

.about__text strong {
  color: var(--green);
  font-weight: 600;
}

.about__values {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.about__value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--bone);
  text-transform: uppercase;
}

.about__value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(29, 185, 84, 0.1);
  border-radius: 50%;
  color: var(--green);
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
  padding: 120px 0;
  background: var(--black);
}

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

.products__card {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.products__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  opacity: 0;
  transition: opacity var(--transition);
}

.products__card:hover {
  border-color: rgba(29, 185, 84, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(29, 185, 84, 0.08);
}

.products__card:hover::before {
  opacity: 1;
}

.products__card-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.products__card-img--protein {
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.12), rgba(200, 255, 0, 0.06));
}
.products__card-img--preworkout {
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.12), rgba(255, 200, 0, 0.06));
}
.products__card-img--bcaa {
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.12), rgba(0, 200, 150, 0.06));
}
.products__card-img--mealprep {
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.1), rgba(29, 185, 84, 0.06));
}
.products__card-img--vitamins {
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.1), rgba(200, 255, 0, 0.08));
}
.products__card-img--plans {
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.12), rgba(29, 185, 84, 0.06));
}

.products__card:hover .products__card-img {
  background: rgba(29, 185, 84, 0.18);
}

.products__card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.products__card-desc {
  font-size: 0.9rem;
  color: var(--bone-dim);
  line-height: 1.6;
  margin-top: 10px;
}

.products__card-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--yellow);
  background: var(--yellow-dim);
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 16px;
  text-transform: uppercase;
}

/* ============================================
   SMOOTHIE BAR
   ============================================ */
.smoothie {
  padding: 120px 0;
  background: var(--black-alt);
}

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

.smoothie__card {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.smoothie__card:hover {
  border-color: rgba(29, 185, 84, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(29, 185, 84, 0.08);
}

.smoothie__card-gradient {
  height: 120px;
  position: relative;
}

.smoothie__card-gradient--green {
  background: linear-gradient(135deg, #1a3a1a, #1db954, #0d4d1f);
}
.smoothie__card-gradient--berry {
  background: linear-gradient(135deg, #3a1a2a, #8b2252, #5a1a3a);
}
.smoothie__card-gradient--tropical {
  background: linear-gradient(135deg, #3a2a0a, #c87b00, #7a4a00);
}
.smoothie__card-gradient--chocolate {
  background: linear-gradient(135deg, #2a1a0a, #5a3a1a, #3a2210);
}
.smoothie__card-gradient--matcha {
  background: linear-gradient(135deg, #1a2a1a, #4a8a3a, #2a5a2a);
}
.smoothie__card-gradient--orange {
  background: linear-gradient(135deg, #3a2a0a, #c86a00, #8a4a00);
}

.smoothie__card-content {
  padding: 24px;
}

.smoothie__card-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--green);
  opacity: 0.3;
  line-height: 1;
}

.smoothie__card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 4px;
}

.smoothie__card-desc {
  font-size: 0.88rem;
  color: var(--bone-dim);
  line-height: 1.6;
  margin-top: 8px;
}

.smoothie__card-macros {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.smoothie__macro {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--bone-dim);
  text-transform: uppercase;
}

.smoothie__macro strong {
  color: var(--yellow);
  font-size: 0.95rem;
}

.smoothie__note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--bone-dim);
  margin-top: 40px;
  font-style: italic;
}

/* ============================================
   WHY US
   ============================================ */
.why {
  padding: 120px 0;
  background: var(--charcoal);
}

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

.why__card {
  background: var(--black-alt);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
}

.why__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  opacity: 0;
  transition: opacity var(--transition);
}

.why__card:hover {
  border-color: rgba(29, 185, 84, 0.15);
  transform: translateY(-3px);
}

.why__card:hover::after {
  opacity: 1;
}

.why__card-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--green);
  opacity: 0.15;
  line-height: 1;
}

.why__card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 8px;
}

.why__card-desc {
  font-size: 0.9rem;
  color: var(--bone-dim);
  line-height: 1.65;
  margin-top: 10px;
}

/* ============================================
   PLANS
   ============================================ */
.plans {
  padding: 120px 0;
  background: var(--black);
}

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

.plans__card {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
}

.plans__card:hover {
  border-color: rgba(29, 185, 84, 0.2);
  transform: translateY(-4px);
}

.plans__card--featured {
  border-color: var(--green);
  background: linear-gradient(180deg, rgba(29, 185, 84, 0.06), var(--charcoal));
}

.plans__card--featured:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 40px rgba(29, 185, 84, 0.12);
}

.plans__card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--black);
  background: var(--green);
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plans__card-header {
  margin-bottom: 24px;
}

.plans__card-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--green);
}

.plans__card-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 6px;
}

.plans__card-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.plans__card-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--bone-dim);
}

.plans__card-features li svg {
  flex-shrink: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a2a0a, #1db954, #148a3e);
  position: relative;
  overflow: hidden;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0zM20 20h20v20H20z' fill='%23000' fill-opacity='1'/%3E%3C/svg%3E");
  background-size: 40px;
  pointer-events: none;
}

.cta-banner__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}

.cta-banner__desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 550px;
  margin: 20px auto 0;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--black-alt);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact__info-card {
  background: var(--charcoal);
  border: 1px solid rgba(29, 185, 84, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact__info-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.contact__info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact__info-row svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__info-row div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact__info-row span,
.contact__info-row a {
  font-size: 0.92rem;
  color: var(--bone-dim);
  line-height: 1.5;
}

.contact__info-row a:hover {
  color: var(--green);
}

/* Map placeholder */
.contact__map {
  margin-top: 24px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__map-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact__map-inner span {
  font-size: 0.8rem;
  color: var(--bone-dim);
}

/* Service areas */
.contact__areas {
  margin-top: 24px;
}

.contact__areas-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--bone-dim);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact__areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact__area-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--bone-dim);
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 14px;
  border-radius: 100px;
  transition: all var(--transition);
}

.contact__area-tag:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(29, 185, 84, 0.06);
}

/* Contact form */
.contact__form {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}

.contact__form-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__form-group {
  margin-bottom: 16px;
}

.contact__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--bone-dim);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact__input,
.contact__select,
.contact__textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--bone);
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.contact__input:focus,
.contact__select:focus,
.contact__textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.12);
}

.contact__input.is-invalid,
.contact__select.is-invalid,
.contact__textarea.is-invalid {
  border-color: var(--danger);
}

.contact__select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23a0a0a0' stroke-width='2' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.contact__textarea {
  resize: vertical;
  min-height: 100px;
}

.contact__error {
  display: block;
  font-size: 0.75rem;
  color: var(--danger);
  margin-top: 4px;
  min-height: 18px;
}

.contact__submit {
  margin-top: 8px;
  position: relative;
}

.contact__submit-loading {
  display: none;
  animation: spin 1s linear infinite;
}

.contact__submit.is-loading .contact__submit-text {
  visibility: hidden;
}

.contact__submit.is-loading .contact__submit-loading {
  display: block;
  position: absolute;
}

.contact__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 40px 20px;
}

.contact__success p {
  font-size: 1rem;
  color: var(--bone);
  line-height: 1.6;
}

.contact__success strong {
  color: var(--green);
  font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 0;
  background: var(--black);
  border-top: 1px solid rgba(29, 185, 84, 0.1);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--white);
}

.footer__brand-desc {
  font-size: 0.88rem;
  color: var(--bone-dim);
  line-height: 1.7;
  margin-top: 16px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: var(--bone-dim);
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer__link {
  font-size: 0.88rem;
  color: var(--bone-dim);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--green);
}

.footer__address,
.footer__hours {
  font-size: 0.85rem;
  color: var(--bone-dim);
  line-height: 1.7;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: var(--bone-dim);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 0.78rem;
  color: var(--bone-dim);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--green);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--black);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(29, 185, 84, 0.25);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--yellow);
  box-shadow: 0 4px 20px rgba(200, 255, 0, 0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes drawStroke {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
  to { opacity: 0.15; }
}

@keyframes boltFlash {
  0%, 100% { opacity: 0; }
  10% { opacity: 1; }
  20% { opacity: 0.3; }
  30% { opacity: 1; }
  50% { opacity: 1; }
  80% { opacity: 0; }
}

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  25% { transform: translate(5px, -8px); opacity: 0.8; }
  50% { transform: translate(-3px, -15px); opacity: 0.5; }
  75% { transform: translate(-6px, -5px); opacity: 0.7; }
}

@keyframes scrollPulse {
  0% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
  100% { opacity: 1; transform: scaleY(1); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE — Tablet (<=1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: calc(var(--nav-h) + 32px) 24px 48px;
    min-height: auto;
  }

  .hero__content {
    align-items: center;
    padding-left: 0;
  }

  .hero__badge {
    align-self: center;
  }

  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    margin-top: 24px;
  }

  .hero__svg {
    max-width: 280px;
  }

  .hero__scroll {
    display: none;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__photo {
    text-align: center;
  }

  .about__photo-placeholder svg {
    max-width: 260px;
    margin: 0 auto;
  }

  .products__grid,
  .smoothie__grid,
  .why__grid,
  .plans__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

/* ============================================
   RESPONSIVE — Mobile (<=640px)
   ============================================ */
@media (max-width: 640px) {
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .nav__links.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__title {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .hero__stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .hero__stat-divider {
    width: 40px;
    height: 1px;
  }

  .products__grid,
  .smoothie__grid,
  .why__grid,
  .plans__grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .cta-banner {
    padding: 72px 0;
  }

  .about,
  .products,
  .smoothie,
  .why,
  .plans,
  .contact {
    padding: 80px 0;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }

  .hero__orb {
    animation: none;
  }

  .hero__svg-draw {
    stroke-dashoffset: 0;
  }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .nav,
  .hero__orbs,
  .hero__bg-noise,
  .hero__scroll,
  .hero__visual,
  .back-to-top,
  .cta-banner {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
  }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 0.8em;
    color: #666;
  }
}
