/* ══════════════════════════════════════════════════
   TOYI-CAM TABLE WATER — Premium Brand Stylesheet
   Design Philosophy: Evian-level elegance, Apple precision
   ══════════════════════════════════════════════════ */

:root {
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #0ea5e9;
  --blue-700: #0284c7;
  --blue-900: #0c1a2e;
  --blue-950: #060d1a;

  --white:    #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

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

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);
  --shadow-glow: 0 0 40px rgba(14,165,233,.25);

  --trans: all .3s cubic-bezier(.4,0,.2,1);
  --trans-slow: all .6s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ─── TYPOGRAPHY ─── */
.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 16px;
}
.section-label.light { color: rgba(14,165,233,.8); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--gray-800);
  margin-bottom: 20px;
}
.section-title.white { color: var(--white); }
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--blue-600);
}
.section-title.white em { color: var(--blue-400); }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 520px;
  line-height: 1.7;
  margin: 0 auto;
}

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

.body-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 20px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-600);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--trans);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--blue-700);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.btn-primary.large { font-size: 1rem; padding: 16px 36px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.4);
  transition: var(--trans);
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}
.btn-ghost.large { font-size: 1rem; padding: 16px 36px; }

.btn-outline-blue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--blue-600);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--blue-600);
  transition: var(--trans);
}
.btn-outline-blue:hover {
  background: var(--blue-600);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── GLASS CARDS ─── */
.glass-card {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.glass-card-dark {
  background: rgba(12,26,46,.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
}

/* ─── WAVE SEPARATORS ─── */
.wave-sep { line-height: 0; margin: -1px 0; }
.wave-sep svg { width: 100%; height: 80px; display: block; }

/* ══════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--trans);
}
#navbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,.08), var(--shadow-sm);
}
#navbar.scrolled .nav-links a { color: var(--gray-800); }
#navbar.scrolled .nav-links a:hover { color: var(--blue-600); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--trans);
}
#navbar.scrolled .logo-img { filter: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--trans);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.nav-cta {
  flex-shrink: 0;
  background: var(--blue-600);
  color: var(--white);
  font-size: .875rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--trans);
}
.nav-cta:hover {
  background: var(--blue-700);
  box-shadow: var(--shadow-glow);
}

.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: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
#navbar.scrolled .hamburger span { background: var(--gray-800); }

.mobile-menu {
  display: none;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--gray-100);
  padding: 20px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: .95rem;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.mobile-menu a:hover { background: var(--gray-50); color: var(--blue-600); }
.mob-cta {
  background: var(--blue-600) !important;
  color: var(--white) !important;
  text-align: center;
  margin-top: 8px;
  border-radius: 50px !important;
}

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6,13,26,.85) 0%,
    rgba(12,26,46,.75) 40%,
    rgba(2,132,199,.25) 100%
  );
}

.hero-logo-watermark {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  opacity: .04;
  width: 60vw;
  max-width: 700px;
  pointer-events: none;
  z-index: 1;
}
.hero-logo-watermark img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 160px;
  max-width: 860px;
}

.hero-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue-400);
  border: 1px solid rgba(96,165,250,.3);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  background: rgba(14,165,233,.08);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--blue-400);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 44px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 28px 24px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

.scroll-hint {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: .5;
}
.scroll-hint span {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ══════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════ */
.section-about {
  background: var(--gray-50);
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-800);
  box-shadow: var(--shadow-sm);
}
.badge svg { color: var(--blue-600); }

.about-visual {
  position: relative;
}
.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.about-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-radius: var(--radius-md);
}
.about-card-icon { font-size: 2rem; }
.about-card strong { display: block; font-size: .95rem; font-weight: 600; color: var(--gray-800); }
.about-card p { font-size: .8rem; color: var(--gray-600); margin: 0; }

/* ══════════════════════════════════════════════════
   WHY US
   ══════════════════════════════════════════════════ */
.section-why {
  background: var(--blue-900);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.why-bg-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(14,165,233,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(59,130,246,.08) 0%, transparent 50%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  padding: 36px 28px;
  transition: var(--trans);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14,165,233,.3) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--blue-400);
  transition: var(--trans);
}
.why-card:hover .why-icon {
  background: rgba(14,165,233,.2);
  box-shadow: 0 0 20px rgba(14,165,233,.2);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   PROCESS
   ══════════════════════════════════════════════════ */
.section-process {
  background: var(--gray-50);
  padding: 120px 0;
}

.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
}
.process-step {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
  padding: 0 12px;
}
.process-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.process-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  transition: var(--trans);
  box-shadow: var(--shadow-md);
}
.process-step:hover .process-icon {
  border-color: var(--blue-600);
  box-shadow: var(--shadow-glow);
  transform: scale(1.1);
}
.process-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  background: var(--blue-600);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}
.process-step p {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.process-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 36px;
  opacity: .6;
}

/* ══════════════════════════════════════════════════
   PRODUCTS
   ══════════════════════════════════════════════════ */
.section-products {
  background: var(--blue-900);
  padding: 120px 0 80px;
  position: relative;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--trans);
}
.product-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(14,165,233,.25);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: rgba(0,0,0,.3);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(14,165,233,.08) 0%, transparent 70%);
}
.product-icon-large {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-icon-large svg:last-child {
  position: absolute;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--blue-600);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.product-info {
  padding: 28px 28px 32px;
}
.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.product-info p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 20px;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--blue-400);
  transition: var(--trans);
}
.product-link:hover {
  color: var(--blue-300, #93c5fd);
  gap: 12px;
}

/* ══════════════════════════════════════════════════
   DISTRIBUTOR
   ══════════════════════════════════════════════════ */
.section-distributor {
  background: var(--gray-50);
  padding: 120px 0;
}
.dist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dist-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 36px;
}
.dist-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--gray-600);
  font-weight: 500;
}
.dist-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.dist-card {
  padding: 40px;
}
.dist-card-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}
.dist-icon { font-size: 2.5rem; margin-bottom: 12px; }
.dist-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}
.dist-card-header p { font-size: .9rem; color: var(--gray-600); }

.dist-contact-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dist-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--trans);
}
.dist-contact-item:last-child { border-bottom: none; }
.dist-contact-item:hover { padding-left: 8px; }
.dci-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  flex-shrink: 0;
  transition: var(--trans);
}
.dist-contact-item:hover .dci-icon {
  background: var(--blue-600);
  color: var(--white);
}
.dci-label { display: block; font-size: .72rem; color: var(--gray-400); font-weight: 500; letter-spacing: .05em; text-transform: uppercase; }
.dci-val { display: block; font-size: .9rem; font-weight: 500; color: var(--gray-800); margin-top: 2px; }

/* ══════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════ */
.section-testimonials {
  background: var(--white);
  padding: 120px 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  transition: var(--trans);
}
.testi-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
  transform: translateY(-4px);
}
.testi-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: .8;
  color: var(--blue-100);
  margin-bottom: 16px;
  font-weight: 700;
}
.testi-card > p {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 28px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; color: var(--gray-800); }
.testi-author span { font-size: .8rem; color: var(--gray-400); }

/* ══════════════════════════════════════════════════
   CTA STRIP
   ══════════════════════════════════════════════════ */
.section-cta-strip {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,13,26,.9) 0%, rgba(12,26,46,.85) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 16px;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 40px;
}
.cta-content h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--blue-400);
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════ */
.section-contact {
  background: var(--gray-50);
  padding: 120px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  flex-shrink: 0;
}
.contact-card h4 { font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 4px; }
.contact-card p, .contact-card a {
  font-size: .92rem;
  color: var(--gray-700);
  line-height: 1.6;
  transition: var(--trans);
}
.contact-card a:hover { color: var(--blue-600); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-size: .9rem;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 50px;
  transition: var(--trans);
  margin-top: 8px;
}
.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

.contact-map {
  height: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-xl);
}
.map-link-overlay {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-600);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  transition: var(--trans);
}
.map-link-overlay:hover {
  background: var(--blue-700);
  transform: translateX(-50%) translateY(-2px);
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.site-footer {
  background: var(--blue-950);
  padding: 80px 0 0;
  color: rgba(255,255,255,.6);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
}
.footer-links h5,
.footer-contact h5 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 20px;
}
.footer-links ul, .footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a, .footer-contact a, .footer-contact li {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: var(--trans);
  line-height: 1.5;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--blue-400); }

.footer-bottom {
  padding: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.25);
}

/* ══════════════════════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--trans);
  animation: floatPulse 3s ease-in-out infinite;
}
.wa-float:hover {
  background: #128C7E;
  transform: scale(1.1);
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.8), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ══════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.revealed {
  opacity: 1 !important;
  transform: translate(0,0) !important;
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .dist-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-right { order: -1; }
  .about-img { height: 360px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 360px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #navbar.scrolled .hamburger span { background: var(--gray-800); }

  .hero-stats { gap: 0; }
  .stat-item { padding: 0 16px; }
  .stat-num { font-size: 1.5rem; }

  .why-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }

  .process-flow { flex-direction: column; align-items: center; padding: 0; }
  .process-step { max-width: 280px; }
  .process-arrow { transform: rotate(90deg); margin: 8px 0; }

  .dist-ctas { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }

  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,.1); width: 50%; padding: 16px 0; }

  .scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .about-card { left: 0; bottom: -20px; }
  section { padding: 80px 0 !important; }
}
