/* ════════════════════════════════════════════════════════════
   MITRA FOOD INDUSTRIES — Premium Landing Page CSS
   Brand: #1A8F47 Mitra Green | #FFFFFF White | #4A4A4A Grey
   ════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  background: #0d1117;
  color: #f0f0f0;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }

/* ── DESIGN TOKENS ── */
:root {
  --green: #1A8F47;
  --green-light: #28b55a;
  --green-dark: #0f5c2e;
  --green-glow: rgba(26,143,71,0.35);
  --white: #ffffff;
  --grey: #4A4A4A;
  --dark: #0d1117;
  --dark-card: #161d29;
  --dark-border: rgba(255,255,255,0.07);
  --gold: #c9a227;
  --gold-muted: rgba(201, 162, 39, 0.35);
  --studio-black: #050506;
  --studio-edge: #0a0a0c;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --shadow-green: 0 8px 40px rgba(26,143,71,0.3);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-deep: 0 16px 64px rgba(0,0,0,0.6);

  --transition: 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ── UTILITIES ── */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header.light .section-eyebrow { color: var(--green-light); }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-desc { color: rgba(255,255,255,0.65); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(26,143,71,0.12);
  border: 1px solid rgba(26,143,71,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff;
  box-shadow: 0 6px 30px rgba(26,143,71,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26,143,71,0.6);
  background: linear-gradient(135deg, var(--green-light), var(--green));
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 16px 0;
}
.navbar.scrolled {
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  padding: 10px 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-brand {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--green-light);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.nav-lang {
  font-weight: 600;
  opacity: 0.92;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  /* Left: editorial slate · Right: deep studio black to match product photography */
  background: linear-gradient(
    115deg,
    #161a21 0%,
    #12161d 32%,
    #0e1116 44%,
    var(--studio-edge) 48%,
    var(--studio-black) 58%,
    #020203 100%
  );
  padding: 120px 24px 80px;
}

/* Restrained ambient light — text side only, no competing color behind the bottle */
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: floatOrb 18s ease-in-out infinite;
}
.orb-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(26,143,71,0.12) 0%, transparent 72%);
  left: -120px; top: 15%;
  animation-delay: 0s;
}
.orb-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(26,143,71,0.08) 0%, transparent 72%);
  left: 5%; bottom: 5%;
  animation-delay: -6s;
}
@keyframes floatOrb {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(12px,-10px) scale(1.03); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Hero Text */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  background: rgba(26,143,71,0.12);
  border: 1px solid rgba(26,143,71,0.35);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.eyebrow-line {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.85;
}
.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #f4f5f2;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.headline-accent:not(.headline-display) {
  background: linear-gradient(135deg, var(--green-light), #8fdfaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.headline-accent.headline-display {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  letter-spacing: 0.02em;
  background: linear-gradient(145deg, #f0ebe3 0%, var(--gold) 42%, #d4c9b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-number {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--dark-border);
}

/* Hero Visual — product sits in same black family as studio shots */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual-panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 36px 28px 32px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 90% 75% at 50% 38%, #121316 0%, var(--studio-black) 52%, #010102 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 32px 100px rgba(0,0,0,0.75),
    0 0 0 1px rgba(0,0,0,0.5);
}
.hero-studio-matte {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 70% 65% at 50% 40%, rgba(255,255,255,0.03) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.hero-bottle-showcase {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 420px;
}
.bottle-glow {
  position: absolute;
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 140px;
  background: radial-gradient(ellipse, rgba(26,143,71,0.22) 0%, transparent 72%);
  filter: blur(28px);
  z-index: 0;
}
.hero-bottle-main {
  height: 460px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.45));
  animation: bottleFloat 7s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes bottleFloat {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

/* Hero badges — quiet glass, no gimmicks */
.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(8,9,11,0.82);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 12px 16px;
  backdrop-filter: blur(16px);
  z-index: 3;
}
.iso-badge { top: 48px; left: -12px; }
.pack-badge { bottom: 64px; right: -12px; }
.badge-icon-lux {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  opacity: 0.95;
}
.badge-icon { font-size: 1.4rem; }
.badge-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-text strong {
  display: block; font-size: 0.8rem; color: #fff; font-weight: 700; white-space: nowrap;
}
.badge-text span {
  font-size: 0.68rem; color: rgba(255,255,255,0.55);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ════════════════════════════════════════
   BRAND STRIP
   ════════════════════════════════════════ */
.brand-strip {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.strip-inner {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  animation: marquee 25s linear infinite;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
/* Duplicate content for seamless loop via CSS */
.strip-inner::after {
  content: "Premium Basil Seed Drinks · Glass Bottle Packaging · ISO 9001:2015 Certified · Made in Egypt · Export Quality · 15 Unique Flavors ·";
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-left: 24px;
  padding-left: 24px;
}
.strip-dot { color: rgba(255,255,255,0.45); font-size: 1rem; font-weight: 300; line-height: 0; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════
   PRODUCTS
   ════════════════════════════════════════ */
.products-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0d1117 0%, #0f1a0f 100%);
}

/* Product Info Banner */
.product-info-banner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: linear-gradient(135deg, rgba(26,143,71,0.12), rgba(26,143,71,0.04));
  border: 1px solid rgba(26,143,71,0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 56px;
  backdrop-filter: blur(10px);
}
.product-info-icon { font-size: 3rem; flex-shrink: 0; }
.product-info-icon-svg {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.75;
}
.product-info-content { flex: 1; }
.product-info-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.product-info-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  flex-shrink: 0;
}
.spec-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  min-width: 90px;
}
.chip-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.chip-value {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--green-light);
  margin-top: 4px;
}

/* Flavor Grid */
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.flavor-card {
  cursor: pointer;
}
.flavor-card-inner {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.flavor-card-inner:hover {
  transform: translateY(-8px);
  border-color: rgba(26,143,71,0.5);
  box-shadow: var(--shadow-green);
}
.flavor-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #1a1a1a;
}
.flavor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.flavor-card-inner:hover .flavor-img-wrap img {
  transform: scale(1.06);
}
.flavor-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,0.95) 0%, transparent 50%);
}
/* Pomegranate asset: slight crop hides corner sparkle from source image */
.flavor-img-wrap--pomegranate {
  overflow: hidden;
}
.flavor-img-wrap--pomegranate img {
  object-position: center 38%;
  transform: scale(1.1);
  transform-origin: center center;
}
.flavor-info {
  padding: 20px;
}
.flavor-color-chip {
  width: 40px; height: 6px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.flavor-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.flavor-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 12px;
}
.flavor-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--green-light);
  background: rgba(26,143,71,0.12);
  border: 1px solid rgba(26,143,71,0.25);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════ */
.about-section {
  padding: 100px 0;
  background: #0d1117;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image stack */
.about-img-stack {
  position: relative;
  height: 520px;
}
.about-img-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 2px solid rgba(26,143,71,0.2);
  transition: var(--transition);
}
.about-img-card:hover { transform: scale(1.03); z-index: 10; }
.about-img-card img { width: 100%; height: 100%; object-fit: cover; }
.card-a {
  width: 200px; height: 280px;
  left: 0; top: 60px;
  z-index: 3;
  transform: rotate(-4deg);
}
.card-b {
  width: 220px; height: 300px;
  left: 130px; top: 0;
  z-index: 2;
  transform: rotate(2deg);
}
.card-c {
  width: 180px; height: 250px;
  left: 280px; top: 120px;
  z-index: 1;
  transform: rotate(-2deg);
}
.about-float-badge {
  position: absolute;
  bottom: 0; right: 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-green);
  z-index: 5;
}
.float-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.float-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* About Text */
.about-text .section-title { text-align: left; }
.about-text .section-eyebrow { margin-bottom: 16px; }
.about-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-desc strong { color: var(--green-light); }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.feature-item:hover {
  background: rgba(26,143,71,0.08);
  border-color: rgba(26,143,71,0.3);
}
.feature-icon { flex-shrink: 0; }
.lux-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-muted);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(201,162,39,0.04);
}
.lux-icon {
  width: 22px;
  height: 22px;
}
.feature-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.feature-text span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ════════════════════════════════════════
   TRUST / CERTIFICATES
   ════════════════════════════════════════ */
.trust-section {
  padding: clamp(64px, 10vw, 100px) 0;
  background: linear-gradient(160deg, #0a1a10 0%, #0d1117 50%, #0a1a10 100%);
}
.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
}
.iso-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  background: var(--dark-card);
  border: 1px solid rgba(26,143,71,0.4);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 48px) clamp(24px, 4vw, 40px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-green);
}
.iso-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(26,143,71,0.15) 0%, transparent 70%);
}

/* ISO badge — static seal (rotating ring removed: it spun the label and looked unprofessional) */
.iso-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 28px;
  max-width: 280px;
}
.iso-seal-visual {
  position: relative;
  width: 168px;
  height: 168px;
  flex-shrink: 0;
}
.iso-seal-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(26,143,71,0.45);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.2), 0 0 40px rgba(26,143,71,0.12);
  pointer-events: none;
}
.iso-seal-ring--inner {
  inset: 11px;
  border-width: 2px;
  border-color: rgba(26,143,71,0.38);
  background: radial-gradient(circle at 50% 35%, rgba(26,143,71,0.12) 0%, rgba(13,17,23,0.92) 62%, rgba(13,17,23,1) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.iso-seal-core {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  z-index: 1;
}
.iso-seal-core .iso-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 6px;
  opacity: 0.92;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}
.iso-seal-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.12em;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.iso-seal-year {
  display: block;
  margin-top: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: 0.08em;
}
.iso-seal-meta {
  margin: 18px 0 0;
  padding: 0 8px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  line-height: 1.5;
  text-align: center;
  max-width: 22em;
}

/* ISO info text */
.iso-info { position: relative; z-index: 2; }
.iso-info h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.iso-info p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.cert-number {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  background: rgba(26,143,71,0.12);
  border: 1px solid rgba(26,143,71,0.3);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.cert-number strong { color: var(--green-light); }
.cert-scope {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* Trust pillars */
.trust-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 20px);
  align-content: stretch;
  min-height: 100%;
}
.pillar-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px) clamp(18px, 2.5vw, 24px);
  text-align: start;
  transition: var(--transition);
}
.pillar-card:hover {
  border-color: rgba(26,143,71,0.4);
  background: rgba(26,143,71,0.06);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
@media (prefers-reduced-motion: reduce) {
  .pillar-card:hover { transform: none; }
}
.pillar-icon {
  flex-shrink: 0;
  margin-bottom: 14px;
  align-self: flex-start;
}
.pillar-icon.lux-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 4px;
}
.pillar-icon .lux-icon {
  width: 24px;
  height: 24px;
}
.pillar-card h4 {
  font-size: clamp(0.94rem, 2vw, 1rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.35;
}
.pillar-card p {
  font-size: clamp(0.78rem, 1.8vw, 0.82rem);
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
}

/* ════════════════════════════════════════
   CONTACT — email + WhatsApp CTAs only
   ════════════════════════════════════════ */
.contact-section {
  padding: clamp(72px, 12vw, 100px) 0;
  background: #0d1117;
}
.contact-cta-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}
.contact-cta-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: clamp(22px, 3.5vw, 32px);
  background: linear-gradient(165deg, rgba(22, 27, 34, 0.98) 0%, rgba(13, 17, 23, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  box-shadow:
    0 2px 0 rgba(26, 143, 71, 0.1),
    0 20px 40px rgba(0, 0, 0, 0.4);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-cta-block:hover {
  border-color: rgba(26, 143, 71, 0.35);
  box-shadow:
    0 2px 0 rgba(26, 143, 71, 0.18),
    0 24px 48px rgba(0, 0, 0, 0.5);
}
.contact-cta-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, rgba(26,143,71,0.22) 0%, rgba(255,255,255,0.04) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  color: var(--green-light);
}
.contact-cta-icon--wa {
  color: #25d366;
  background: linear-gradient(165deg, rgba(37,211,102,0.2) 0%, rgba(255,255,255,0.03) 100%);
}
.contact-cta-svg {
  width: 26px;
  height: 26px;
}
.contact-cta-body {
  flex: 1;
  min-width: 0;
}
.contact-cta-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.25;
}
.contact-cta-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  margin: 0 0 16px;
}
.contact-cta-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-cta-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-light);
  text-decoration: none;
  word-break: break-all;
  transition: color 0.2s, opacity 0.2s;
}
.contact-cta-link:hover {
  color: #fff;
  opacity: 0.95;
}
.contact-cta-wa-btn {
  width: 100%;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  font-size: 0.95rem;
}
.contact-cta-wa-btn svg {
  flex-shrink: 0;
}
.contact-cta-note {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.contact-cta-note a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 600;
}
.contact-cta-note a:hover {
  color: var(--green-light);
}
.contact-address-note {
  text-align: center;
  margin: clamp(28px, 4vw, 40px) auto 0;
  max-width: 640px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
}
.contact-address-note a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.contact-address-note a:hover {
  color: var(--green-light);
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer { background: #080d13; }
.footer-top { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-logo strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
}
.footer-logo span {
  font-size: 0.65rem;
  color: var(--green-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-cert-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(26,143,71,0.1);
  border: 1px solid rgba(26,143,71,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  width: fit-content;
}
.cert-iso-icon {
  width: 38px; height: 38px;
  background: rgba(26,143,71,0.2);
  border: 1px solid rgba(26,143,71,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-cert-badge strong {
  display: block;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 700;
}
.footer-cert-badge small {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
}
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col ul { list-style: none; }
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul a,
.footer-col address a,
.footer-col address p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  display: block;
  line-height: 1.6;
}
.footer-col ul a:hover,
.footer-col address a:hover { color: var(--green-light); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ════════════════════════════════════════
   WHATSAPP FAB
   ════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 100px;
  padding: 14px 22px 14px 18px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  font-size: 0.875rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 48px rgba(37,211,102,0.6);
}
.fab-label { position: relative; z-index: 1; white-space: nowrap; }
.whatsapp-fab svg { position: relative; z-index: 1; flex-shrink: 0; }

/* ════════════════════════════════════════
   SCROLL ANIMATIONS
   ════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1100px) {
  .flavor-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero {
    background: linear-gradient(180deg, #151a20 0%, #0d0f12 35%, var(--studio-black) 100%);
  }
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text { order: 2; }
  .hero-visual { order: 1; }
  .hero-actions { justify-content: center; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-eyebrow { margin: 0 auto 28px; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .hero-visual-panel {
    max-width: 420px;
    padding: 28px 20px 24px;
  }
  .hero-bottle-main { height: 340px; }
  .iso-badge { left: 8px; }
  .pack-badge { right: 8px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-stack { height: 360px; }
  .card-a { width: 150px; height: 210px; }
  .card-b { width: 165px; height: 230px; left: 100px; }
  .card-c { width: 135px; height: 190px; left: 210px; }
  .about-text { order: 2; }
  .about-visual { order: 1; }

  .trust-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-pillars { gap: 16px; }
  .iso-seal-visual {
    width: min(168px, 52vw);
    height: min(168px, 52vw);
  }
  .contact-cta-wrap {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .flavor-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(13,17,23,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    padding: 20px 24px 32px;
    gap: 4px;
  }
  .nav-links.open + .nav-cta {
    display: flex !important;
    position: fixed;
    bottom: 100px; right: 24px;
  }
}

@media (max-width: 600px) {
  .contact-cta-block {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .contact-cta-icon {
    margin: 0 auto;
  }
  .contact-cta-links {
    align-items: center;
  }
  .flavor-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-pillars { grid-template-columns: 1fr; }
  .trust-section { padding: 48px 0 56px; }
  .iso-card { padding: 24px 20px; }
  .product-info-banner { flex-direction: column; }
  .product-specs { flex-direction: row; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .whatsapp-fab { bottom: 20px; right: 20px; padding: 14px 18px; }
  .fab-label { display: none; }
  .hero-bottle-main { height: 260px; }
  .hero-badge { display: none; }
}
