/* ============================================================
   CINCAUNITI — Professional Design System v2
   ============================================================ */

/* ─── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Instrument+Serif:ital@0;1&display=swap');

/* ─── FONT STACK FALLBACK ──────────────────────────────────── */
/* Ensure consistent rendering when fonts are still loading */

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Core Brand Colors */
  --green-950: #0A1F12;
  --green-900: #1A3A2A;
  --green-800: #1F4A32;
  --green-700: #245F3F;
  --green-600: #2D7A4F;
  --green-500: #3A9A64;
  --green-400: #5AB87E;
  --green-300: #7DC99A;
  --green-200: #A8DDB8;
  --green-100: #D4F0DF;
  --green-50:  #F0FAF4;

  --gold-600: #C8820A;
  --gold-500: #D4890F;
  --gold-400: #F5A623;
  --gold-300: #F8BE5A;
  --gold-100: #FEF3DC;

  --cream-100: #FEFCF7;
  --cream-200: #FAF3E0;
  --cream-300: #F5E8C8;
  --brown-600: #7B4F2E;

  --neutral-900: #111827;
  --neutral-800: #1F2937;
  --neutral-600: #4B5563;
  --neutral-400: #9CA3AF;
  --neutral-200: #E5E7EB;
  --neutral-100: #F9FAFB;
  --white: #FFFFFF;

  /* Semantic Aliases */
  --text-primary: var(--green-900);
  --text-secondary: var(--neutral-600);
  --text-muted: var(--neutral-400);
  --surface: var(--white);
  --surface-alt: var(--cream-200);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;

  /* Viewport Height — compensated for desktop zoom
     Desktop uses zoom:0.75, so 100dvh visually = 75% of screen.
     --screen-h overridden per breakpoint to fill the physical screen. */
  --zoom-factor: 1;
  --screen-h: 100dvh;

  /* Type Scale */
  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg:   1.125rem;   /* 18px */
  --text-xl:   1.25rem;    /* 20px */
  --text-2xl:  1.5rem;     /* 24px */
  --text-3xl:  1.875rem;   /* 30px */
  --text-4xl:  2.25rem;    /* 36px */
  --text-5xl:  3rem;       /* 48px */
  --text-6xl:  3.75rem;    /* 60px */
  --text-7xl:  4.5rem;     /* 72px */

  /* Spacing */
  --s-1:  4px;    --s-2:  8px;    --s-3:  12px;
  --s-4:  16px;   --s-5:  20px;   --s-6:  24px;
  --s-7:  32px;   --s-8:  40px;   --s-9:  48px;
  --s-10: 64px;   --s-11: 80px;   --s-12: 96px;
  --s-13: 128px;

  /* Border Radius */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-3xl:  40px;
  --r-full: 9999px;

  /* Shadows — more layered */
  --sh-xs: 0 1px 2px rgba(0,0,0,0.05);
  --sh-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --sh-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
  --sh-lg: 0 10px 15px rgba(0,0,0,0.07), 0 4px 6px rgba(0,0,0,0.04);
  --sh-xl: 0 20px 25px rgba(0,0,0,0.08), 0 8px 10px rgba(0,0,0,0.04);
  --sh-2xl: 0 40px 60px rgba(0,0,0,0.12);
  --sh-green: 0 8px 30px rgba(45,122,79,0.25);
  --sh-gold: 0 8px 30px rgba(245,166,35,0.30);

  /* Timing */
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0.0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 150ms;
  --dur-base: 220ms;
  --dur-slow: 350ms;
  --dur-xslow: 500ms;

  /* Z-index */
  --z-base: 1; --z-above: 10; --z-nav: 100; --z-overlay: 200; --z-fab: 300;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--cream-100);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
svg { display: block; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
h1 { font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl)); letter-spacing: -0.04em; }
h2 { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); letter-spacing: -0.03em; }
h3 { font-size: var(--text-2xl); letter-spacing: -0.02em; }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); font-weight: 700; }
p  { font-size: var(--text-base); line-height: 1.75; color: var(--text-secondary); }

.serif { font-family: var(--font-serif); }
.serif-italic { font-family: var(--font-serif); font-style: italic; }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--s-6);
}
@media (min-width: 768px)  { .container { padding-inline: var(--s-9); } }
@media (min-width: 1280px) { .container { padding-inline: var(--s-7); } }

.section {
  padding-block: var(--s-12);
  min-height: var(--screen-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section > .container { width: 100%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: var(--s-4);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* Section header */
.section-header {
  margin-bottom: var(--s-10);
}
.section-header.center { text-align: center; }
.section-header.center p { max-width: 540px; margin-inline: auto; }
.section-header p { margin-top: var(--s-4); font-size: var(--text-lg); color: var(--text-secondary); }

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--r-full);
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  letter-spacing: -0.01em;
}
.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary:hover {
  background: var(--green-700);
  box-shadow: var(--sh-green);
  transform: translateY(-1px);
}
.btn-primary:active { transform: scale(0.98); }

.btn-gold {
  background: var(--gold-400);
  color: var(--green-950);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.20);
}
.btn-gold:hover {
  background: var(--gold-500);
  box-shadow: var(--sh-gold);
  transform: translateY(-1px);
}
.btn-gold:active { transform: scale(0.98); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.65);
}

.btn-outline {
  background: transparent;
  color: var(--green-600);
  border: 1.5px solid var(--green-300);
}
.btn-outline:hover {
  background: var(--green-50);
  border-color: var(--green-600);
}

.btn-lg { padding: 15px 32px; font-size: var(--text-base); }
.btn-xl { padding: 18px 40px; font-size: var(--text-lg); }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: var(--s-5) 0;
  transition: padding var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
#navbar.scrolled {
  background: rgba(250, 248, 244, 0.98);
  border-bottom: 1px solid rgba(45,122,79,0.08);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(45,122,79,0.06);
}

@media (min-width: 900px) {
  #navbar.scrolled {
    background: rgba(250, 248, 244, 0.90);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
  }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--green-600);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(45,122,79,0.35);
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-spring);
}
.nav-logo-icon:hover { transform: scale(1.05) rotate(-3deg); }
.nav-logo-icon svg { color: var(--white); }

.nav-logo-name {
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color var(--dur-base) var(--ease-out);
}
#navbar.scrolled .nav-logo-name { color: var(--green-900); }
.nav-logo-sub {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color var(--dur-base) var(--ease-out);
}
#navbar.scrolled .nav-logo-sub { color: var(--green-400); }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--s-7);
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color var(--dur-fast) var(--ease-out);
  position: relative;
  padding-bottom: 2px;
}
#navbar.scrolled .nav-links a { color: var(--neutral-600); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--green-400);
  border-radius: 2px;
  transition: left var(--dur-base) var(--ease-out), right var(--dur-base) var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
#navbar.scrolled .nav-links a:hover { color: var(--green-700); }
.nav-links a:hover::after { left: 0; right: 0; }

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.nav-cta { display: none; }
@media (min-width: 640px) { .nav-cta { display: inline-flex; } }

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-sm);
}
@media (min-width: 768px) { .nav-hamburger { display: none; } }

.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease-out);
  transform-origin: center;
}
#navbar.scrolled .nav-hamburger span { background: var(--green-900); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--green-950);
  z-index: calc(var(--z-nav) - 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out);
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: var(--font-sans);
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-mobile a:hover { color: var(--gold-400); }

/* ─── HERO ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: var(--screen-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  mix-blend-mode: luminosity;
}

/* Simpler, lighter gradient */
.hero-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    var(--green-950) 0%,
    rgba(26,58,42,0.96) 45%,
    rgba(45,122,79,0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 90px;
  padding-bottom: 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-9);
  align-items: center;
}
@media (min-width: 1024px) {
  /* Give image side extra padding-right so badges don't clip */
  .hero-inner { grid-template-columns: 11fr 10fr; gap: var(--s-8); }
}

/* Text side */
.hero-text { max-width: 580px; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--gold-300);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--s-6);
  animation: fadeUp 0.7s var(--ease-out) both;
}
.hero-label svg { width: 12px; height: 12px; }

.hero-headline {
  color: var(--white);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: var(--s-5);
  animation: fadeUp 0.7s var(--ease-out) 0.1s both;
}
.hero-headline .line-accent {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-400);
  /* Same fluid range — no jarring size jump */
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.0;
}

.hero-body {
  color: rgba(255,255,255,0.60);
  font-size: var(--text-base);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: var(--s-7);
  animation: fadeUp 0.7s var(--ease-out) 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
  animation: fadeUp 0.7s var(--ease-out) 0.3s both;
}

/* Trust badges — inline row */
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6);
  animation: fadeUp 0.7s var(--ease-out) 0.4s both;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: var(--s-6);
}
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  color: rgba(255,255,255,0.60);
  font-size: var(--text-sm);
  font-weight: 500;
}
.hero-proof-item svg {
  width: 14px; height: 14px;
  color: var(--gold-400);
  flex-shrink: 0;
}

/* Visual side */
.hero-visual {
  display: none;
  position: relative;
  /* Padding around the frame so badges (-20px offset) don't clip */
  padding: 24px 28px 28px 28px;
}
@media (min-width: 1024px) {
  .hero-visual { display: block; }
}

.hero-img-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 60vh;
}
/* ── HERO SLIDESHOW ─────────────────────────────────────────── */
.hero-img-clip {
  position: relative;     /* stack slides inside */
  width: 100%;
  height: 100%;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 8px 24px rgba(0,0,0,0.25);
}

/* Every slide is stacked absolutely, crossfades via opacity */
.hero-img-clip .slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
  will-change: opacity, transform;
}

/* Active slide: fade in + Ken Burns zoom */
@keyframes kenBurns {
  0%   { transform: scale(1.00); }
  100% { transform: scale(1.06); }
}
.hero-img-clip .slide.active {
  opacity: 1;
  z-index: 2;
  animation: kenBurns 6s ease-out forwards;
}

/* Previous slide: fade out smoothly */
.hero-img-clip .slide.prev {
  opacity: 0;
  transform: scale(0.97);
  z-index: 1;
  transition: opacity 1.0s ease-out, transform 1.0s ease-out;
  animation: none;
}

/* ── SLIDE DOTS ─────────────────────────────────────────────── */
.slide-dots {
  position: absolute;
  bottom: var(--s-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 7px;
  align-items: center;
}
.slide-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  flex-shrink: 0;
}
.slide-dot.active {
  width: 22px;
  border-radius: 3px;
  background: var(--gold-400);
}

/* ── HERO BADGES — symmetric offset ─────────────────────────── */
/* Both badges offset exactly 24px from the frame edge, and
   vertically placed at equal distance from their respective corners */
.hero-stat-card {
  position: absolute;
  top:   -20px;    /* above the frame top edge */
  right: -20px;    /* to the right of the frame right edge */
  background: rgba(12,28,18,0.72);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-xl);
  padding: var(--s-3) var(--s-4);
  color: var(--white);
  min-width: 128px;
  animation: floatY 5s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  z-index: 10;
}
.hero-stat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-stat-label svg { width: 11px; height: 11px; color: var(--gold-400); }
.hero-stat-value {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Customer count badge — bottom-left, same 20px offset as stat-card */
.hero-cust-card {
  position: absolute;
  bottom: -20px;  /* below the frame bottom edge */
  left:   -20px;  /* to the left of the frame left edge */
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-500) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  padding: var(--s-3) var(--s-4);
  color: var(--white);
  min-width: 140px;
  animation: floatY 5s ease-in-out -2.5s infinite;
  box-shadow: var(--sh-green), 0 8px 32px rgba(0,0,0,0.25);
  z-index: 10;
}
.hero-cust-label {
  font-size: 10px;
  color: rgba(255,255,255,0.70);
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.hero-cust-value {
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

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

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--s-7);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  color: rgba(255,255,255,0.35);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeUp 1s ease 1.2s both;
}
.scroll-track {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.scroll-track::after {
  content: '';
  position: absolute;
  top: -100%; width: 100%; height: 100%;
  background: var(--gold-400);
  animation: scrollLine 2.5s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -100%; } 100% { top: 200%; } }

/* ─── VALUE PROPS BAR ─────────────────────────────────────────── */
#value-props {
  background: var(--green-900);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-block: var(--s-9);
}
.vp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-xl);
  overflow: hidden;
}
@media (min-width: 640px) { .vp-grid { grid-template-columns: repeat(3, 1fr); } }

.vp-item {
  background: var(--green-900);
  padding: var(--s-8) var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: background var(--dur-base) var(--ease-out);
}
.vp-item:hover { background: rgba(45,122,79,0.25); }
.vp-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(45,122,79,0.20);
  border: 1px solid rgba(125,201,154,0.20);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-300);
}
.vp-icon-wrap svg { width: 22px; height: 22px; display: block; }
.vp-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.vp-body {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.vp-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: auto;
}

/* ─── ABOUT ───────────────────────────────────────────────────── */
#about {
  background: var(--white);
  padding-block: var(--s-10);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-11);
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 5fr 6fr; gap: var(--s-9); }
}

/* Visual side */
.about-visual { position: relative; }
.about-img-main {
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sh-xl);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-ribbon {
  position: absolute;
  bottom: var(--s-8);
  right: -var(--s-5);
  right: -20px;
  background: var(--gold-400);
  color: var(--green-950);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: var(--s-3) var(--s-5);
  border-radius: var(--r-md);
  box-shadow: var(--sh-gold);
  writing-mode: horizontal-tb;
}

.about-text { display: flex; flex-direction: column; justify-content: center; }
.about-intro {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
  margin-top: var(--s-5);
  margin-bottom: var(--s-6);
}
.about-intro strong { font-weight: 700; color: var(--green-700); }

/* Stats row — 3 numbers in a horizontal strip */
.about-stats {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding: var(--s-5) var(--s-6);
  background: var(--green-50);
  border-radius: var(--r-xl);
  border: 1px solid var(--green-100);
  margin-bottom: var(--s-6);
}
.about-stat { text-align: center; flex: 1; }
.about-stat-num {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: -0.03em;
  line-height: 1;
}
.about-stat-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.about-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--green-200);
  flex-shrink: 0;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding-top: var(--s-5);
  border-top: 1px solid var(--neutral-200);
}
.about-value {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}
.about-value-icon {
  width: 36px; height: 36px;
  background: var(--green-50);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
}
.about-value-icon svg { width: 16px; height: 16px; }
.about-value-text h5 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1px;
}
.about-value-text p {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* ─── MENU / PRODUCTS ─────────────────────────────────────────── */
#menu {
  background: var(--white);
  padding-block: var(--s-12);
}

.menu-tabs {
  display: flex;
  gap: var(--s-2);
  justify-content: center;
  margin-bottom: var(--s-9);
  background: var(--neutral-100);
  padding: var(--s-1);
  border-radius: var(--r-full);
  width: fit-content;
  margin-inline: auto;
}
.tab-btn {
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--r-full);
  color: var(--text-secondary);
  transition: all var(--dur-base) var(--ease-out);
  border: none;
  background: transparent;
  cursor: pointer;
}
.tab-btn.active {
  background: var(--white);
  color: var(--green-700);
  box-shadow: var(--sh-sm);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: var(--white);
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid var(--neutral-200);
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.product-card:hover {
  border-color: var(--green-200);
  box-shadow: var(--sh-xl);
  transform: translateY(-4px);
}
.product-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--green-50) 0%, var(--green-100) 100%);
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-img-icon {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-300);
}
.product-img-icon svg { width: 64px; height: 64px; opacity: 0.6; }
.product-badge-row {
  position: absolute;
  top: var(--s-3); left: var(--s-3);
  display: flex; gap: var(--s-1);
}
.p-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--r-full);
}
.p-badge-best { background: var(--green-600); color: var(--white); }
.p-badge-new  { background: var(--gold-400); color: var(--green-950); }
.p-badge-sale { background: #EF4444; color: var(--white); }

.product-body {
  padding: var(--s-5);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.product-name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.product-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--s-3);
  border-top: 1px solid var(--neutral-100);
}
.product-price {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--green-600);
  letter-spacing: -0.02em;
}
.product-price-old {
  font-size: var(--text-xs);
  color: var(--neutral-400);
  text-decoration: line-through;
  margin-top: 1px;
}
.product-cta {
  width: 34px; height: 34px;
  background: var(--green-600);
  color: var(--white);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-fast) var(--ease-spring);
  flex-shrink: 0;
}
.product-cta svg { width: 16px; height: 16px; }
.product-cta:hover { background: var(--green-700); transform: scale(1.12); }

/* ─── BENEFITS ─────────────────────────────────────────────────── */
#benefits {
  background: var(--neutral-100);
  padding-block: var(--s-12);
}

/* Uniform grid — clean and consistent */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 640px)  { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: var(--s-7);
  border: 1px solid rgba(45,122,79,0.06);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-50) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  border-color: var(--green-200);
}
.benefit-card:hover::before { opacity: 1; }

.benefit-icon-wrap {
  width: 52px; height: 52px;
  background: var(--green-600);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(45,122,79,0.30);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.benefit-icon-wrap svg { width: 24px; height: 24px; display: block; }
.benefit-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.benefit-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
  position: relative;
  z-index: 1;
}
.benefit-tag {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--green-600);
  display: flex;
  align-items: center;
  gap: var(--s-1);
  position: relative;
  z-index: 1;
  margin-top: auto;
}
.benefit-tag::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-400);
}

/* ─── HOW TO ORDER — Horizontal timeline ─────────────────────── */
#order {
  background: var(--green-950);
  position: relative;
  overflow: hidden;
}
#order::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle at top right, rgba(45,122,79,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.order-eyebrow { color: var(--green-300); }
.order-heading { color: var(--white); }
.order-body { color: rgba(255,255,255,0.50); }

/* Timeline connector on desktop */
.order-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 900px) {
  .order-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-5);
  }
  .order-timeline::before {
    content: '';
    position: absolute;
    top: 24px; /* Perfectly centered with 48px step-num */
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125,201,154,0.30) 20%, rgba(125,201,154,0.30) 80%, transparent);
  }
}

/* Step item — horizontal on mobile (num+icon+text in one row),
   vertical/centered on desktop */
.step-item {
  display: flex;
  flex-direction: row;     /* mobile: row — num | icon | text */
  align-items: flex-start;
  gap: var(--s-4);
  position: relative;
}
@media (min-width: 900px) {
  .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--s-3);
  }
}

/* Number badge */
.step-num {
  width: 40px; height: 40px;    /* slightly smaller on mobile */
  min-width: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs);
  font-weight: 800;
  color: rgba(255,255,255,0.50);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .step-num { width: 48px; height: 48px; font-size: var(--text-sm); }
}
.step-item:hover .step-num {
  background: var(--green-600);
  border-color: var(--green-400);
  color: var(--white);
  box-shadow: var(--sh-green);
}

/* Icon — hidden everywhere to keep the layout clean and focus on the numbers */
.step-icon {
  display: none;
}

/* Step text block */
.step-body { flex: 1; min-width: 0; }

.step-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-1);
}
@media (min-width: 900px) { .step-title { font-size: var(--text-lg); } }

.step-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* CTA box — centered, max-width for desktop readability */
.order-cta-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-2xl);
  padding: var(--s-9) var(--s-8);
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
}

/* CTA button full-width on mobile, auto on desktop */
.order-cta-box .btn {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .order-cta-box .btn { width: auto; }
}

.order-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
  margin-bottom: var(--s-7);
}

.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-full);
  padding: 10px 18px;
  color: rgba(255,255,255,0.70);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all var(--dur-base) var(--ease-out);
}
.platform-chip:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
  color: var(--white);
}
.platform-chip.wa {
  background: rgba(37,211,102,0.10);
  border-color: rgba(37,211,102,0.25);
  color: #4CD87A;
}
.platform-chip.wa:hover { background: rgba(37,211,102,0.18); }


/* ─── GALLERY ─────────────────────────────────────────────────── */
#gallery {
  background: var(--white);
  padding-block: var(--s-12);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: var(--s-3);
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-4);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--green-50) 0%, var(--green-100) 100%);
  cursor: pointer;
}
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-300);
}
.gallery-placeholder svg { width: 40%; height: 40%; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,31,18,0.70);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-4);
  text-align: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-cap {
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 700;
}
.gallery-cap-sub {
  color: rgba(255,255,255,0.55);
  font-size: var(--text-xs);
}

.ig-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  margin-top: var(--s-7);
  padding: var(--s-5) var(--s-6);
  background: var(--neutral-100);
  border-radius: var(--r-xl);
  border: 1px solid var(--neutral-200);
}
.ig-bar-left {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}
.ig-logo {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.ig-logo svg { width: 22px; height: 22px; }
.ig-handle { font-weight: 700; font-size: var(--text-base); color: var(--text-primary); }
.ig-meta  { font-size: var(--text-sm); color: var(--text-secondary); }

/* ─── TESTIMONIALS ────────────────────────────────────────────── */
#testimonials {
  background: var(--cream-200);
  padding-block: var(--s-12);
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 640px)  { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

.testi-card {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: var(--s-7);
  border: 1px solid rgba(45,122,79,0.06);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
/* Large decorative quote mark */
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: var(--s-6);
  font-family: var(--font-serif);
  font-size: 120px;
  line-height: 1;
  color: var(--green-100);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  border-color: var(--green-200);
}
.testi-stars {
  color: var(--gold-400);
  font-size: var(--text-sm);
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}
.testi-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--text-primary);
  line-height: 1.6;
  flex: 1;
  position: relative;
  z-index: 1;
}
.testi-footer {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  position: relative;
  z-index: 1;
  padding-top: var(--s-4);
  border-top: 1px solid var(--neutral-100);
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: var(--text-base);
  color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: var(--text-sm); color: var(--text-primary); }
.testi-loc  { font-size: var(--text-xs); color: var(--text-muted); margin-top: 1px; }

/* Stats row */
.testi-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-9);
  text-align: center;
}
.testi-stat-num {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--green-600);
  letter-spacing: -0.04em;
  line-height: 1;
}
.testi-stat-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-top: var(--s-2);
}

/* ─── RESELLER ─────────────────────────────────────────────────── */
#reseller {
  background: var(--green-900);
  position: relative;
  overflow: hidden;
  padding-block: var(--s-12);
}
#reseller::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.reseller-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-9);
  align-items: center;
}
@media (min-width: 900px) { .reseller-grid { grid-template-columns: 1fr 1fr; } }

.reseller-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.20);
  color: var(--gold-300);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--s-5);
}
.reseller-h2 { color: var(--white); margin-bottom: var(--s-5); }
.reseller-p  { color: rgba(255,255,255,0.55); margin-bottom: var(--s-7); }

.reseller-perks { display: flex; flex-direction: column; gap: var(--s-4); }
.perk-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
  color: rgba(255,255,255,0.80);
}
.perk-icon {
  width: 28px; height: 28px;
  background: rgba(125,201,154,0.15);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-300);
  flex-shrink: 0;
  margin-top: 2px;
}
.perk-icon svg { width: 14px; height: 14px; }
.perk-title { font-weight: 700; color: var(--white); display: block; margin-bottom: 2px; }
.perk-body  { font-size: var(--text-sm); color: rgba(255,255,255,0.50); }

/* Card side */
.reseller-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-2xl);
  padding: var(--s-9);
  text-align: center;
}
.reseller-card-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  margin: 0 auto var(--s-5);
}
.reseller-card-icon svg { width: 32px; height: 32px; }
.reseller-card h3 { color: var(--white); margin-bottom: var(--s-3); }
.reseller-card p { color: rgba(255,255,255,0.55); font-size: var(--text-sm); margin-bottom: var(--s-7); }
.reseller-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
  margin-bottom: var(--s-7);
}
.reseller-stat {
  background: rgba(26,58,42,0.50);
  border-radius: var(--r-md);
  padding: var(--s-4);
  border: 1px solid rgba(255,255,255,0.06);
}
.r-stat-num   { font-weight: 800; font-size: var(--text-xl); color: var(--gold-300); letter-spacing: -0.02em; }
.r-stat-label { font-size: var(--text-xs); color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ─── LOCATION ─────────────────────────────────────────────────── */
#location {
  background: var(--white);
  padding-block: var(--s-12);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-9);
  align-items: start;
}
@media (min-width: 900px) { .location-grid { grid-template-columns: 1fr 1fr; } }

.contact-title { margin-bottom: var(--s-2); }
.contact-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--green-600);
  margin-bottom: var(--s-6);
}
.contact-list { display: flex; flex-direction: column; gap: var(--s-3); }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  background: var(--cream-100);
  border-radius: var(--r-lg);
  border: 1px solid rgba(45,122,79,0.07);
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
  text-decoration: none;
  /* Anti-ghosting fix */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}
a.contact-item:hover {
  background: var(--green-50);
  border-color: var(--green-200);
  transform: translateX(3px);
}
.contact-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; }
.ci-green { background: rgba(45,122,79,0.10); color: var(--green-600); }
.ci-insta { background: rgba(131,58,180,0.10); color: #833ab4; }
.ci-maps  { background: rgba(66,133,244,0.10); color: #4285F4; }
.ci-clock { background: rgba(245,166,35,0.12); color: var(--gold-500); }
.contact-label { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.contact-value { font-weight: 600; color: var(--text-primary); font-size: var(--text-sm); margin-top: 1px; }
.contact-ctas { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }

.map-wrap {
  height: 420px;
  background: #f0f0f0;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  isolation: isolate;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ─── FOOTER ──────────────────────────────────────────────────── */
#footer {
  background: var(--green-950);
  padding-top: var(--s-12);
  padding-bottom: var(--s-9);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-9);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-logo-row { display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-5); }
.footer-logo-icon {
  width: 40px; height: 40px;
  background: var(--green-600);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.footer-logo-icon svg { width: 20px; height: 20px; }
.footer-logo-name { font-weight: 800; font-size: var(--text-xl); color: var(--white); letter-spacing: -0.02em; }
.footer-tagline { font-family: var(--font-serif); font-style: italic; font-size: var(--text-lg); color: rgba(255,255,255,0.40); margin-bottom: var(--s-5); }
.footer-about-p { font-size: var(--text-sm); color: rgba(255,255,255,0.35); line-height: 1.7; }

.footer-socials { display: flex; gap: var(--s-2); margin-top: var(--s-6); }
.social-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all var(--dur-base) var(--ease-out);
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover {
  background: var(--green-700);
  border-color: var(--green-500);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.40);
  margin-bottom: var(--s-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--s-3); }
.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-links a:hover { color: var(--green-300); }
.footer-links span { font-size: var(--text-sm); color: rgba(255,255,255,0.25); }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: var(--s-9);
  margin-bottom: var(--s-5);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
}
.footer-copy { font-size: var(--text-xs); color: rgba(255,255,255,0.25); }
.footer-certs { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.cert-chip {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 4px 10px;
  border-radius: var(--r-full);
}

/* ─── WA FAB ──────────────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: var(--s-5);
  right: var(--s-5);
  z-index: var(--z-fab);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  background: #25D366;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--text-sm);
  /* Mobile: icon-only circle (44px) */
  padding: 12px;
  border-radius: var(--r-full);
  box-shadow: 0 4px 20px rgba(37,211,102,0.40);
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-spring);
}
/* Desktop: show text + icon pill */
@media (min-width: 640px) {
  .wa-fab {
    padding: 13px 20px;
    bottom: var(--s-6);
    right: var(--s-6);
  }
}
.wa-fab:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}
.wa-fab-icon { width: 20px; height: 20px; flex-shrink: 0; }
.wa-fab-text { display: none; }
@media (min-width: 640px) { .wa-fab-text { display: block; } }

/* WA pulse ring */
.wa-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--r-full);
  border: 2px solid rgba(37,211,102,0.40);
  animation: waPulse 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50%       { opacity: 0; transform: scale(1.25); }
}

/* ─── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anim-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-xslow) var(--ease-out),
              transform var(--dur-xslow) var(--ease-out);
}
.anim-up.visible { opacity: 1; transform: translateY(0); }

.anim-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity var(--dur-xslow) var(--ease-out),
              transform var(--dur-xslow) var(--ease-out);
}
.anim-left.visible { opacity: 1; transform: translateX(0); }

.anim-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity var(--dur-xslow) var(--ease-out),
              transform var(--dur-xslow) var(--ease-out);
}
.anim-right.visible { opacity: 1; transform: translateX(0); }

.anim-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity var(--dur-xslow) var(--ease-out),
              transform var(--dur-xslow) var(--ease-out);
}
.anim-scale.visible { opacity: 1; transform: scale(1); }

.d-1 { transition-delay: 80ms; }
.d-2 { transition-delay: 160ms; }
.d-3 { transition-delay: 240ms; }
.d-4 { transition-delay: 320ms; }
.d-5 { transition-delay: 400ms; }

/* ─── RESPONSIVE ADJUSTMENTS ──────────────────────────────────── */
@media (max-width: 640px) {
  html, body { overflow-x: hidden; }
  .section { padding-block: var(--s-9); min-height: auto; }
  #hero { min-height: 100dvh; }
  .container { padding-inline: var(--s-5); }
  h1 { font-size: clamp(var(--text-3xl), 9vw, var(--text-5xl)); }
  h2 { font-size: clamp(var(--text-2xl), 7vw, var(--text-4xl)); }
  .btn-lg { padding: 13px 26px; }
}

/* Desktop zoom 75% + height compensation */
@media (min-width: 1024px) {
  :root {
    /* With zoom:0.75 on body, CSS 100dvh only renders as 75% of screen.
       Divide by 0.75 so min-height visually equals the full physical viewport. */
    --zoom-factor: 0.75;
    --screen-h: calc(100dvh / var(--zoom-factor));
  }
  body {
    zoom: 0.75;
    -moz-transform: scale(0.75);
    -moz-transform-origin: top center;
  }
}

/* ─── SCROLLBAR & SELECTION ───────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream-100); }
::-webkit-scrollbar-thumb { background: var(--green-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-600); }
::selection { background: rgba(45,122,79,0.18); color: var(--green-900); }
