/* ========================================
   TelKo Water - Stylesheet
   ======================================== */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ---- Design Tokens ---- */
:root {
  /* Brand colors */
  --deep-blue: #062D5A;
  --primary-blue: #0A4D8C;
  --bright-blue: #1E88E5;
  --sky-blue: #4FB3E8;
  --light-blue: #E6F4FB;
  --pale-blue: #F5FAFD;

  --accent-red: #EB3F3F;
  --accent-red-dark: #C72929;

  --alkaline-green: #1F9B6F;
  --alkaline-light: #E6F7F1;

  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;

  --ink: #0A1929;
  --text: #1F2D44;
  --text-light: #4A5870;
  --line: #E2E8F0;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;

  /* Typography */
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(6, 45, 90, 0.06);
  --shadow: 0 10px 30px rgba(6, 45, 90, 0.08);
  --shadow-lg: 0 20px 50px rgba(6, 45, 90, 0.12);
  --shadow-blue: 0 12px 30px rgba(30, 136, 229, 0.25);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }
ul { padding: 0; margin: 0; list-style: none; }

/* ---- Layout helpers ---- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-title-block { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bright-blue);
  margin-bottom: 14px;
}
.eyebrow.eyebrow-light { color: rgba(255,255,255,0.95); font-weight: 700; }
.section-title { font-size: clamp(28px, 4vw, 44px); margin-bottom: 14px; }
.section-lead { font-size: 17px; color: var(--text-light); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--bright-blue), var(--primary-blue));
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(30, 136, 229, 0.35); }
.btn-outline {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: transparent;
}
.btn-outline:hover { background: var(--primary-blue); color: #fff; }
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }
.btn-red {
  background: var(--accent-red);
  color: #fff;
}
.btn-red:hover { background: var(--accent-red-dark); transform: translateY(-2px); }
.btn-light {
  background: #fff;
  color: var(--primary-blue);
}
.btn-light:hover { background: var(--light-blue); }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; }

/* ---- Top bar ---- */
.topbar {
  background: var(--deep-blue);
  color: #fff;
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar a { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.92); font-weight: 500; }
.topbar a:hover { color: #fff; }
.topbar-info { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---- Header & Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 44px; width: auto; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-name span { color: var(--accent-red); }
.nav { display: flex; gap: 6px; align-items: center; }
.nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}
.nav a:hover { background: var(--light-blue); color: var(--primary-blue); }
.nav a.active { color: var(--primary-blue); background: var(--light-blue); }
.header-cta { display: flex; gap: 10px; align-items: center; }

/* Mobile menu */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--light-blue);
  color: var(--primary-blue);
}
.menu-toggle svg { width: 24px; height: 24px; }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #062D5A 0%, #0A4D8C 50%, #1E88E5 100%);
  color: #fff;
  overflow: hidden;
  padding: 90px 0 120px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(79, 179, 232, 0.3), transparent 40%),
                    radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.15), transparent 40%);
  pointer-events: none;
}
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), rgba(255,255,255,0.05));
  animation: floatUp 18s linear infinite;
}
.bubble:nth-child(1) { width: 80px; height: 80px; left: 10%; bottom: -100px; animation-duration: 22s; }
.bubble:nth-child(2) { width: 40px; height: 40px; left: 30%; bottom: -60px; animation-duration: 18s; animation-delay: 3s; }
.bubble:nth-child(3) { width: 120px; height: 120px; left: 60%; bottom: -150px; animation-duration: 26s; animation-delay: 6s; }
.bubble:nth-child(4) { width: 30px; height: 30px; left: 80%; bottom: -50px; animation-duration: 16s; animation-delay: 1s; }
.bubble:nth-child(5) { width: 60px; height: 60px; left: 45%; bottom: -80px; animation-duration: 20s; animation-delay: 8s; }
@keyframes floatUp {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-110vh) translateX(40px); opacity: 0; }
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 800;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}
.hero h1 .accent {
  color: var(--sky-blue);
  display: inline-block;
}
.hero-lead {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 32px;
  max-width: 540px;
  font-weight: 400;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  color: #fff;
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Hero bottle visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-bottle-stage {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
.hero-bottle-stage::before {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 60%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 1;
}
.hero-bottle {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.hero-bottle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@keyframes floatBottle {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}

/* ---- Wave divider ---- */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
}
.wave-divider svg { width: 100%; height: 100%; }

/* ---- Features ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--light-blue), #DDF0FA);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 19px; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; color: var(--text-light); margin: 0; }

/* ---- Product showcase ---- */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  background: var(--bg-soft);
  border: 2px solid var(--line);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tab-btn:hover { color: var(--primary-blue); }
.tab-btn.active {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
}
.tab-btn.active.alkaline-tab {
  background: var(--alkaline-green);
  border-color: var(--alkaline-green);
}
.tab-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bright-blue);
}
.tab-btn .tab-dot.alkaline { background: var(--alkaline-green); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 0 28px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card.alkaline-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--alkaline-light) 100%);
}
.product-card:not(.alkaline-card) {
  background: linear-gradient(180deg, #ffffff 0%, var(--pale-blue) 100%);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--bright-blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 3;
  box-shadow: 0 6px 18px rgba(6, 45, 90, 0.35);
}
.alkaline-card .product-badge { background: var(--alkaline-green); box-shadow: 0 6px 18px rgba(31, 155, 111, 0.35); }
.product-bottle {
  position: relative;
  aspect-ratio: 4/5;
  margin: 0 -28px 24px;
  background: linear-gradient(135deg, #EEF2F7 0%, #F8FAFC 100%);
  overflow: hidden;
  display: block;
}
.product-bottle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.06) 100%);
  pointer-events: none;
}
.product-bottle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.product-card:hover .product-bottle img { transform: scale(1.06); }
.product-name {
  font-size: 22px;
  margin-bottom: 4px;
}
.product-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 18px;
  min-height: 40px;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}
.product-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--ink);
}
.product-price .currency { font-size: 18px; opacity: 0.7; margin-right: 2px; }
.product-unit { font-size: 13px; color: var(--text-light); }
.product-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.product-actions .btn { flex: 1; padding: 12px 14px; font-size: 14px; }

/* ---- Quote / Form section ---- */
.quote-section {
  background: linear-gradient(135deg, var(--pale-blue), var(--light-blue));
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,136,229,0.12), transparent 70%);
  pointer-events: none;
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.quote-info h2 { font-size: clamp(28px, 4vw, 40px); }
.quote-info .section-lead { font-size: 17px; margin-bottom: 30px; }
.quote-perks { display: grid; gap: 14px; }
.perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.6);
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.8);
}
.perk-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #fff;
  color: var(--primary-blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.perk-icon svg { width: 18px; height: 18px; }
.perk-text strong { display: block; color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.perk-text span { color: var(--text-light); font-size: 13.5px; }

/* ---- Forms ---- */
.form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.form-card h3 {
  font-size: 24px;
  margin-bottom: 6px;
}
.form-card .form-sub {
  color: var(--text-light);
  font-size: 14.5px;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--bright-blue);
  box-shadow: 0 0 0 4px rgba(30,136,229,0.12);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235B6A80' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.product-pick-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 6px;
}
.product-pick {
  position: relative;
}
.product-pick input { position: absolute; opacity: 0; pointer-events: none; }
.product-pick label {
  display: block;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  margin: 0;
  transition: all 0.2s;
}
.product-pick input:checked + label {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
}
.form-note {
  font-size: 12.5px;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
}

/* ---- About section ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #E6F4FB, #D0E7F5);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(6,45,90,0.15);
}
.about-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.5), transparent 50%);
  z-index: 1;
}
.about-img-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: none;
}
.about-img-wrap svg { position: relative; z-index: 2; width: 100%; max-width: 320px; filter: drop-shadow(0 30px 50px rgba(6,45,90,0.2)); }
.about-text h2 { font-size: clamp(28px, 4vw, 42px); }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}
.pillar-card {
  background: var(--bg-soft);
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.pillar-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pillar-card h4 .icon-pill {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--light-blue);
  color: var(--primary-blue);
  display: flex; align-items: center; justify-content: center;
}
.pillar-card h4 .icon-pill svg { width: 16px; height: 16px; }
.pillar-card p { margin: 0; font-size: 13.5px; color: var(--text-light); }

/* ---- Process section ---- */
.process-section {
  background: var(--deep-blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.process-section .section-title { color: #fff; }
.process-section .section-lead { color: rgba(255,255,255,0.88); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
.process-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 26px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  transition: background 0.3s, transform 0.3s;
}
.process-step:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.process-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--sky-blue);
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.9;
}
.process-step h4 { color: #fff; font-size: 17px; margin-bottom: 6px; font-weight: 700; }
.process-step p { color: rgba(255,255,255,0.85); font-size: 14px; margin: 0; }

/* ---- CTA banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--accent-red), #FF6B5C);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 50px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-banner h2 { color: #fff; font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.9); margin: 0; font-size: 17px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; position: relative; z-index: 1; }

/* ---- Page banner (sub pages) ---- */
.page-banner {
  background: linear-gradient(135deg, var(--deep-blue), var(--primary-blue));
  color: #fff;
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(79, 179, 232, 0.25), transparent 50%);
}
.page-banner-inner { position: relative; z-index: 1; text-align: center; }
.page-banner h1 { color: #fff; font-size: clamp(34px, 5vw, 50px); margin-bottom: 12px; font-weight: 800; text-shadow: 0 2px 20px rgba(0,0,0,0.15); }
.page-banner p { color: rgba(255,255,255,0.95); font-size: 18px; max-width: 640px; margin: 0 auto; font-weight: 400; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.9); }
.breadcrumb a:hover { color: #fff; }

/* ---- Career section ---- */
.role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.role-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.role-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.role-header { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 22px; }
.role-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--light-blue), var(--sky-blue));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.role-icon svg { width: 30px; height: 30px; }
.role-title { font-size: 22px; margin-bottom: 4px; }
.role-tag {
  display: inline-block;
  background: var(--light-blue);
  color: var(--primary-blue);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-right: 6px;
}
.role-list { margin-bottom: 24px; }
.role-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: var(--text);
}
.role-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--light-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='none' stroke='%231E88E5' stroke-width='1.8' stroke-linecap='round' d='M2 5l2 2 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ---- Distributor benefits ---- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 60px;
}
.benefit-card {
  background: linear-gradient(180deg, var(--pale-blue), #fff);
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
}
.benefit-card .feature-icon { margin: 0 auto 18px; }
.benefit-card h4 { font-size: 18px; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--text-light); margin: 0; }

/* ---- Contact info grid ---- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--sky-blue);
}
.contact-card .feature-icon { margin: 0 auto 18px; }
.contact-card h4 { font-size: 17px; margin-bottom: 6px; }
.contact-card a, .contact-card p { font-size: 14.5px; color: var(--text-light); margin: 0; word-break: break-word; }
.contact-card a:hover { color: var(--primary-blue); }

/* ---- Footer ---- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h5 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; font-size: 14.5px; }
.footer-col ul li a:hover { color: var(--sky-blue); }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-logo { height: 40px; filter: brightness(0) invert(1); }
.footer-about { font-size: 14.5px; line-height: 1.65; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-contact-item svg { width: 18px; height: 18px; color: var(--sky-blue); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

/* ---- Floating WhatsApp button ---- */
.float-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 99;
  transition: transform 0.2s;
  animation: pulseWA 2.4s infinite;
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp svg { width: 30px; height: 30px; }
@keyframes pulseWA {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 20px rgba(37, 211, 102, 0); }
}

/* ---- Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}
.fade-in-1 { animation-delay: 0.1s; }
.fade-in-2 { animation-delay: 0.25s; }
.fade-in-3 { animation-delay: 0.4s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    flex-direction: column;
    background: #fff;
    padding: 14px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    gap: 4px;
    border: 1px solid var(--line);
  }
  .nav.open a { width: 100%; }
  .header-cta .btn-outline { display: none; }
  .hero { padding: 60px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-bottle-stage { max-width: 280px; }
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .role-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; padding: 36px 28px; text-align: center; }
  .cta-actions { justify-content: center; }
  .section { padding: 60px 0; }
  .form-card { padding: 28px 22px; }
  .topbar-info { font-size: 12px; gap: 12px; }
}
@media (max-width: 560px) {
  .features-grid, .products-grid, .process-grid, .benefit-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 26px; }
  .about-pillars { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
