/* ─────────────────────────────────────
   FITONLY — style.css
───────────────────────────────────── */

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

:root {
  --green-dark:   #1a3a2a;
  --green-mid:    #2d6a4f;
  --green-light:  #52b788;
  --green-pale:   #d8f3dc;
  --cream:        #f8f4ec;
  --cream-dark:   #ede8dc;
  --gold:         #d4a843;
  --gold-light:   #f0c96a;
  --white:        #ffffff;
  --text:         #1a2a1f;
  --text-muted:   #6b7f72;
  --radius:       16px;
  --radius-sm:    10px;
  --shadow:       0 8px 32px rgba(26,58,42,0.10);
  --shadow-lg:    0 20px 60px rgba(26,58,42,0.16);
  --transition:   all 0.28s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
em { font-style: italic; color: var(--gold); }

.section-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--green-dark);
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

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

.section {
  padding: 96px 0;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--green-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(212,168,67,0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212,168,67,0.5);
}
.btn-primary svg { transition: transform 0.25s ease; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary.btn-large { font-size: 17px; padding: 18px 36px; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: var(--transition);
}
.btn-ghost:hover { color: white; border-color: white; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(26,58,42,0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo img { height: 44px; width: auto; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--green-dark);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: white; }
.nav.scrolled .nav-links a.active { color: var(--green-dark); }

.nav-cart {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 100px;
  transition: var(--transition);
}
.nav-cart:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav-burger span { background: var(--green-dark); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 40px 24px;
  gap: 4px;
  border-top: 1px solid var(--cream-dark);
}
.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.nav-mobile.open { display: flex; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, #244235 45%, #1e5c3a 75%, #2d6a4f 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
}
.hero-orb-1 {
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(82,183,136,0.2) 0%, transparent 70%);
}
.hero-orb-2 {
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,168,67,0.12) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 40px;
  padding-bottom: 80px;
}

/* Hero Text */
.hero-text { animation: fadeUp 0.9s ease both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82,183,136,0.15);
  border: 1px solid rgba(82,183,136,0.4);
  color: var(--green-light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-headline em { color: var(--gold); }

.hero-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 32px;
}

.usp-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.usp-pill {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 7px 15px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat { display: flex; flex-direction: column; gap: 3px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.stat-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.9s 0.2s ease both;
}
.product-orbit {
  position: relative;
  width: 440px; height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
}
.orbit-ring-1 {
  inset: 0;
  border: 1.5px dashed rgba(82,183,136,0.3);
  animation: spin 20s linear infinite;
}
.orbit-ring-2 {
  inset: 36px;
  border: 1px solid rgba(212,168,67,0.2);
}
@keyframes spin { to { transform: rotate(360deg); } }

.product-glow {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,183,136,0.22) 0%, transparent 70%);
}
.product-img-wrap {
  position: relative;
  z-index: 2;
  width: 300px; height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  animation: bob 4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.float-chip {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
  z-index: 3;
}
.float-chip strong { display: block; font-size: 13px; color: var(--green-dark); line-height: 1.2; }
.float-chip small  { font-size: 11px; color: var(--text-muted); }
.chip-icon { font-size: 22px; }
.chip-1 {
  top: 40px; left: -10px;
  animation: floatChip 3s ease-in-out infinite;
}
.chip-2 {
  bottom: 50px; right: -10px;
  animation: floatChip 3s 1s ease-in-out infinite;
}
@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Hero scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2.5s ease infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 18px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green-dark);
}
.trust-item span { font-size: 18px; }
.trust-sep { width: 1px; height: 28px; background: var(--cream-dark); }

/* ── PRODUCTS ── */
.products-section { background: var(--white); }

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

.product-card {
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-pale);
}
.product-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.product-img-box {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  aspect-ratio: 1;
}
.product-img-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-box img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 2;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,58,42,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.btn-overlay {
  background: white;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  transition: var(--transition);
}
.btn-overlay:hover { background: var(--gold); }

.product-info { padding: 22px; }
.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-info p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.product-tags span {
  font-size: 11px;
  background: var(--green-pale);
  color: var(--green-mid);
  padding: 3px 10px;
  border-radius: 100px;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.price-old {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-new {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
}
.price-save {
  font-size: 11px;
  background: #fff3cd;
  color: #856404;
  padding: 3px 10px;
  border-radius: 100px;
}
.btn-cart {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--green-dark);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 13px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-cart:hover { background: var(--green-mid); }

.section-cta { text-align: center; margin-top: 52px; }

/* Shop filters */
.shop-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: white;
}

/* ── WHY FITONLY ── */
.why-section { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--green-pale);
}
.why-icon {
  width: 80px; height: 80px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  padding: 16px;
}
.why-icon img { width: 100%; height: 100%; object-fit: contain; }
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testimonial-card.featured-review {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.testimonial-card.featured-review p,
.testimonial-card.featured-review .author-avatar { color: rgba(255,255,255,0.9); }
.testimonial-card.featured-review strong { color: white; }
.testimonial-card.featured-review small { color: rgba(255,255,255,0.5); }

.stars {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--green-mid);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 15px; color: var(--green-dark); }
.testimonial-author small { font-size: 12px; color: var(--text-muted); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark), #1e5c3a);
  padding: 100px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}

/* ── WHY BUY ── */
.why-buy { background: var(--cream); padding: 56px 0; }
.why-buy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-buy-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.why-buy-item span { font-size: 28px; }
.why-buy-item strong { display: block; font-size: 14px; color: var(--green-dark); }
.why-buy-item small { font-size: 12px; color: var(--text-muted); }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), #1e5c3a);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.65); }
.page-hero .section-tag {
  background: rgba(82,183,136,0.2);
  color: var(--green-light);
  border: 1px solid rgba(82,183,136,0.3);
  margin-bottom: 20px;
}

/* ── ABOUT PAGE ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text { }
.about-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-text .btn-primary { margin-top: 8px; }
.about-visual { display: flex; justify-content: center; }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-img-wrap img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 380px;
}
.about-tag {
  position: absolute;
  bottom: -20px; left: -20px;
  background: white;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow);
}
.about-tag strong { display: block; font-size: 15px; color: var(--green-dark); }
.about-tag small { font-size: 12px; color: var(--text-muted); }

.values-section { background: var(--cream); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.value-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 12px;
}
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.milestones-section { background: var(--green-dark); padding: 80px 0; }
.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.milestone:last-child { border-right: none; }
.milestone-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.milestone-label {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}
.contact-form-wrap h2 { margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  outline: none;
  transition: var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  background: white;
  box-shadow: 0 0 0 4px rgba(82,183,136,0.12);
}
.form-success {
  display: none;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.form-success.show { display: block; }

.contact-info h2 { margin-bottom: 32px; }
.info-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.info-icon { font-size: 24px; margin-top: 2px; }
.info-card strong { display: block; font-size: 14px; color: var(--green-dark); margin-bottom: 4px; }
.info-card p, .info-card small {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.info-card a { color: var(--green-mid); font-weight: 500; }
.info-card a:hover { color: var(--green-dark); text-decoration: underline; }

.partner-box {
  background: var(--green-dark);
  border-radius: var(--radius);
  padding: 28px;
  color: white;
}
.partner-box h3 { font-size: 20px; margin-bottom: 10px; }
.partner-box p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 20px; line-height: 1.6; }

/* ── FOOTER ── */
.footer { background: #111e17; padding: 72px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 260px;
}
.footer-logo { height: 40px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  font-size: 20px;
  opacity: 0.6;
  transition: var(--transition);
}
.footer-social a:hover { opacity: 1; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 8px;
  transition: var(--transition);
}
.footer-col a:hover { color: white; padding-left: 4px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .why-buy-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .milestones-grid { grid-template-columns: repeat(2, 1fr); }
  .milestone { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }

  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { padding: 16px 20px; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 60px;
    gap: 40px;
  }
  .hero-text { order: 2; }
  .hero-visual { order: 1; }
  .badge, .usp-row, .cta-row, .hero-stats { justify-content: center; }
  .hero-sub { margin: 0 auto 28px; }
  .product-orbit { width: 280px; height: 280px; }
  .product-img-wrap { width: 200px; height: 200px; }
  .chip-1 { top: 0; left: -5px; transform: scale(0.85); }
  .chip-2 { bottom: 0; right: -5px; transform: scale(0.85); }

  .trust-inner { gap: 16px; }
  .trust-sep { display: none; }

  .products-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .shop-grid { max-width: 100%; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .values-grid { grid-template-columns: 1fr; }
  .why-buy-grid { grid-template-columns: 1fr 1fr; }

  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }

  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 20px; }

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

  .page-hero { padding: 120px 0 60px; }
}
