/* ============================================================
   BLUE PEAK WATER — Premium Luxury Homepage
   A Kwad Moagi Brand — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0A2540;
  --navy-2: #071a30;
  --navy-3: #051221;
  --royal: #1E63E9;
  --ice: #63C5FF;
  --ice-soft: #B8E1FA;
  --white: #FFFFFF;
  --bg-soft: #F7FAFC;
  --bg-soft-2: #EEF3F8;
  --charcoal: #1B1B1B;
  --gray-600: #4A5568;
  --gray-500: #718096;
  --gray-400: #A0AEC0;
  --gray-300: #CBD5E0;
  --gray-200: #E2E8F0;
  --gray-100: #EDF2F7;

  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 12px 40px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 24px 80px rgba(10, 37, 64, 0.12);
  --shadow-blue: 0 20px 60px rgba(30, 99, 233, 0.35);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

button { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--royal);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

/* -------- Typography -------- */
.eyebrow {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--royal);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1.5px;
  background: var(--royal);
}
.eyebrow.light { color: var(--ice); }
.eyebrow.light::before { background: var(--ice); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}
h1 { font-weight: 800; font-size: 84px; }
h2 { font-weight: 800; font-size: 56px; }
h3 { font-weight: 700; font-size: 32px; }
h4 { font-weight: 700; font-size: 20px; letter-spacing: -0.01em; }
p { font-size: 16px; color: var(--gray-600); }

.text-light h1, .text-light h2, .text-light h3, .text-light h4 { color: white; }
.text-light p { color: rgba(255,255,255,0.75); }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 16px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--royal) 0%, #2b7ef5 100%);
  color: white;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(30, 99, 233, 0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-300);
}
.btn-secondary:hover { border-color: var(--navy); background: var(--navy); color: white; }
.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.28);
  color: white;
  backdrop-filter: blur(20px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.5); }
.btn-white { background: white; color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 20px 60px rgba(255,255,255,0.35); }

.btn svg { width: 16px; height: 16px; }
.btn.lg { padding: 20px 38px; font-size: 15px; }

/* -------- Navigation -------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.4s var(--ease);
  background: rgba(10, 37, 64, 0.0);
  backdrop-filter: blur(0px);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 60px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-mark {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 100%; height: 100%; }
.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: white;
  transition: color 0.4s var(--ease);
}
.nav-logo-text span {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--ice);
  margin-top: 2px;
}
.nav.scrolled .nav-logo-text { color: var(--navy); }
.nav.scrolled .nav-logo-text span { color: var(--royal); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-menu a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav-menu a:hover { color: white; }
.nav.scrolled .nav-menu a { color: var(--gray-600); }
.nav.scrolled .nav-menu a:hover { color: var(--navy); }
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--royal);
  transition: width 0.3s var(--ease);
}
.nav-menu a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  display: flex; align-items: center; gap: 8px;
}
.nav.scrolled .nav-phone { color: var(--navy); }

/* -------- Mobile menu -------- */
.mobile-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  align-items: center; justify-content: center;
  color: white;
  cursor: pointer;
}
.nav.scrolled .mobile-toggle { background: var(--gray-100); border-color: var(--gray-200); color: var(--navy); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 37, 64, 0.98);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 22px;
  color: white;
}
.mobile-menu-close {
  position: absolute;
  top: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: white;
  cursor: pointer;
}

/* -------- HERO -------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 100px;
  background: linear-gradient(180deg, #051221 0%, #0A2540 50%, #0d2f52 100%);
  overflow: hidden;
  color: white;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('/static/images/hero-mountain-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.42;
  filter: saturate(0.85) brightness(0.75);
  transform: scale(1.05);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(30, 99, 233, 0.15), transparent 60%),
    linear-gradient(180deg, rgba(5, 18, 33, 0.4) 0%, rgba(5, 18, 33, 0.85) 100%);
}
.hero-inner {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 240px);
}
.hero-copy .eyebrow { margin-bottom: 28px; }
.hero-copy h1 {
  color: white;
  font-size: 84px;
  font-weight: 800;
  line-height: 1.02;
  margin-bottom: 28px;
}
.hero-copy h1 .hl {
  background: linear-gradient(135deg, var(--ice) 0%, #a5dcff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 500;
  font-family: 'Montserrat', serif;
}
.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.7;
}
.hero-sub b { color: white; font-weight: 500; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 60px; }

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 560px;
}
.hero-stat-value {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}
.hero-stat-value span { color: var(--ice); }
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 6px;
}

/* Hero product hero — bleeds into the dark hero background instead of
   sitting inside an isolated card: no card border/shadow, edges fade
   out via a mask so the image's own navy tones dissolve into .hero's
   gradient, and an ambient glow sits behind it for depth. Aspect ratio
   stays close to the source photo's native 3:2 so bottles never get
   cropped by background-size: cover. */
.hero-visual {
  position: relative;
  aspect-ratio: 3 / 2;
  isolation: isolate;
  margin-right: -90px;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 55% 52% at 50% 48%, rgba(30, 99, 233, 0.5), transparent 72%);
  filter: blur(60px);
  z-index: -1;
}
.hero-visual-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/static/images/product-lineup.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(1.02) saturate(1.05);
  -webkit-mask-image: radial-gradient(ellipse 78% 76% at 50% 50%, #000 42%, transparent 96%);
  mask-image: radial-gradient(ellipse 78% 76% at 50% 50%, #000 42%, transparent 96%);
}
/* Dark vignette that color-matches the hero's navy gradient, so the
   photo's edges fade in tone (not just opacity) before they disappear —
   this is what removes the "cut-out rectangle" seam. */
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 68% 66% at 50% 48%, transparent 40%, rgba(5, 15, 28, 0.5) 72%, rgba(5, 15, 28, 0.95) 100%);
}

/* Floating particles */
.particles { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: white;
  opacity: 0.4;
  filter: blur(0.5px);
  animation: rise linear infinite;
}
@keyframes rise {
  from { transform: translateY(0) scale(0.5); opacity: 0; }
  20% { opacity: 0.6; }
  to { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* -------- Trust Bar -------- */
.trustbar {
  background: white;
  padding: 44px 0;
  border-bottom: 1px solid var(--gray-100);
}
.trustbar-inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-400);
  padding-right: 40px;
  border-right: 1px solid var(--gray-200);
  flex-shrink: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.trust-item svg { width: 22px; height: 22px; color: var(--royal); flex-shrink: 0; }

/* -------- Section base -------- */
section { position: relative; }
.section-pad { padding: 160px 0; }
.section-pad-sm { padding: 120px 0; }
.section-head { text-align: center; margin-bottom: 80px; max-width: 780px; margin-left: auto; margin-right: auto; }
.section-head .eyebrow { justify-content: center; margin-bottom: 22px; }
.section-head h2 { margin-bottom: 20px; }
.section-head p { font-size: 18px; line-height: 1.7; }
.section-dark { background: var(--navy); color: white; }
.section-soft { background: var(--bg-soft); }

/* -------- Products -------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  border: 1px solid var(--gray-100);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--royal), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card:hover::before { opacity: 1; }
.product-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--royal);
  padding: 5px 10px;
  background: rgba(30, 99, 233, 0.08);
  border-radius: 6px;
  margin-bottom: 18px;
}
.product-visual {
  height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 8px 0 24px;
  position: relative;
}
.product-visual::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 20%; right: 20%;
  height: 12px;
  background: radial-gradient(ellipse, rgba(10, 37, 64, 0.15), transparent 70%);
  filter: blur(4px);
}
.bottle {
  position: relative;
  height: 100%;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .bottle { transform: translateY(-6px) scale(1.02); }
.bottle-photo {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .bottle-photo {
  transform: translateY(-6px) scale(1.03);
}
.product-size {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.product-size span { font-size: 20px; color: var(--royal); font-weight: 700; margin-left: 2px; }
.product-desc {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 22px;
  line-height: 1.5;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  transition: gap 0.3s var(--ease);
}
.product-card:hover .product-link { gap: 14px; color: var(--royal); }
.product-link svg { width: 14px; height: 14px; transition: transform 0.3s; }

/* -------- Why Blue Peak (dark w/ glass cards) -------- */
.why-section {
  position: relative;
  background: linear-gradient(180deg, #0A2540 0%, #051524 100%);
  overflow: hidden;
  padding: 180px 0;
}
.why-bg {
  position: absolute;
  inset: 0;
  background-image: url('/static/images/water-droplet.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: saturate(1.2);
}
.why-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0A2540 0%, rgba(10, 37, 64, 0.7) 40%, #0A2540 100%);
}
.why-inner { position: relative; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.glass-card {
  padding: 44px 32px 40px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.5s var(--ease);
}
.glass-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(99, 197, 255, 0.3);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.glass-icon {
  width: 68px; height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(99, 197, 255, 0.25), rgba(30, 99, 233, 0.1));
  border: 1px solid rgba(99, 197, 255, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--ice);
  margin-bottom: 28px;
}
.glass-icon svg { width: 30px; height: 30px; }
.glass-card h4 { color: white; font-size: 22px; margin-bottom: 12px; }
.glass-card p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.65; }

/* -------- Corporate Section (split) -------- */
.corp-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 100px;
  align-items: center;
}
.corp-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: url('/static/images/corporate-office.jpg') center/cover;
  box-shadow: var(--shadow-lg);
}
.corp-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 37, 64, 0.4) 100%);
}
.corp-image-badge {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 2;
}
.corp-image-badge-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--royal), var(--ice));
  display: flex; align-items: center; justify-content: center;
  color: white;
  flex-shrink: 0;
}
.corp-image-badge-icon svg { width: 24px; height: 24px; }
.corp-image-badge h5 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.corp-image-badge p { font-size: 12px; color: var(--gray-500); }

.corp-list { list-style: none; margin: 32px 0 40px; }
.corp-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.corp-list li:last-child { border-bottom: none; }
.corp-list-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(30, 99, 233, 0.08);
  color: var(--royal);
  display: flex; align-items: center; justify-content: center;
}
.corp-list-icon svg { width: 16px; height: 16px; }
.corp-list-text h5 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.corp-list-text p { font-size: 13px; color: var(--gray-500); }

/* -------- Custom Bottles Gallery -------- */
.custom-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 20px;
}
.custom-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.6s var(--ease);
}
.custom-card:hover { transform: translateY(-6px); }
.custom-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.custom-card:hover img { transform: scale(1.06); }
.custom-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 37, 64, 0.85) 100%);
}
.custom-card-body {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  color: white;
  z-index: 2;
}
.custom-card-body h4 {
  color: white;
  font-size: 22px;
  margin-bottom: 4px;
}
.custom-card-body p {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}
.custom-card:nth-child(1) { grid-row: 1 / 3; }
.custom-cta {
  text-align: center;
  margin-top: 56px;
}

/* -------- Industries -------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.industry-card {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: white;
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  text-align: center;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.industry-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.industry-card:hover .industry-icon { background: var(--royal); color: white; }
.industry-card:hover .industry-label { color: white; }
.industry-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(30, 99, 233, 0.08);
  color: var(--royal);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease);
}
.industry-icon svg { width: 24px; height: 24px; }
.industry-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.3s;
}

/* -------- How It Works -------- */
.how-section { background: linear-gradient(180deg, #0A2540, #071a30); color: white; }
.how-section h2 { color: white; }
.how-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 80px;
}
.how-timeline::before {
  content: '';
  position: absolute;
  top: 40px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 197, 255, 0.4), rgba(99, 197, 255, 0.4), transparent);
  z-index: 0;
}
.how-step { text-align: center; position: relative; z-index: 1; }
.how-step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A2540, #071a30);
  border: 1px solid rgba(99, 197, 255, 0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: white;
  position: relative;
}
.how-step-num::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(99, 197, 255, 0.15);
}
.how-step-num span {
  background: linear-gradient(135deg, var(--ice), white);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.how-step h4 {
  color: white;
  font-size: 20px;
  margin-bottom: 10px;
}
.how-step p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; }

/* -------- Testimonials -------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  border: 1px solid var(--gray-100);
  position: relative;
  transition: all 0.5s var(--ease);
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #F59E0B;
  margin-bottom: 20px;
}
.testimonial-stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonial-quote {
  font-size: 17px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: white;
}
.testimonial-author-info h5 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.testimonial-author-info p { font-size: 12px; color: var(--gray-500); }

/* -------- Final CTA -------- */
.final-cta {
  position: relative;
  padding: 180px 0;
  overflow: hidden;
  color: white;
  text-align: center;
  isolation: isolate;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('/static/images/hero-mountain-bg.jpg') center/cover;
  filter: saturate(0.7) brightness(0.5);
  transform: scale(1.05);
}
.final-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 37, 64, 0.85), rgba(5, 18, 33, 0.9));
}
.final-cta h2 {
  color: white;
  font-size: 76px;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.final-cta h2 .hl {
  background: linear-gradient(135deg, var(--ice), white);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 500;
}
.final-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 20px;
  max-width: 620px;
  margin: 0 auto 48px;
}
.final-cta-actions { display: flex; gap: 16px; justify-content: center; }

/* -------- Footer -------- */
footer {
  background: #051524;
  color: rgba(255,255,255,0.7);
  padding: 100px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-mark {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: white;
}
.footer-brand-name span {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--ice);
  margin-top: 2px;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 320px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 40px; height: 40px;
  border-radius: 12px;
  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.75);
  transition: all 0.3s;
}
.footer-social:hover {
  background: var(--royal);
  border-color: var(--royal);
  color: white;
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--ice); }

.footer-contact li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin-bottom: 14px;
}
.footer-contact svg {
  width: 15px; height: 15px;
  color: var(--ice);
  flex-shrink: 0; margin-top: 3px;
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.footer-legal {
  display: flex;
  gap: 32px;
  list-style: none;
}
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-legal a:hover { color: white; }

/* -------- Scroll Reveal -------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-1 { transition-delay: 0.05s; }
.reveal-2 { transition-delay: 0.15s; }
.reveal-3 { transition-delay: 0.25s; }
.reveal-4 { transition-delay: 0.35s; }

/* -------- Reduced motion -------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .particle {
    animation: none !important;
  }
  .particles { display: none; }
  .product-card,
  .product-card:hover,
  .glass-card,
  .glass-card:hover,
  .industry-card,
  .industry-card:hover,
  .custom-card,
  .custom-card:hover,
  .custom-card img,
  .custom-card:hover img,
  .testimonial,
  .testimonial:hover,
  .bottle,
  .product-card:hover .bottle,
  .bottle-photo,
  .product-card:hover .bottle-photo,
  .btn,
  .btn-primary:hover,
  .btn-white:hover {
    transition: none !important;
    transform: none !important;
  }
}

/* -------- Responsive -------- */
@media (max-width: 1200px) {
  .container, .nav-inner, .hero-inner, .trustbar-inner { padding-left: 40px; padding-right: 40px; }
  h1 { font-size: 64px; }
  h2 { font-size: 44px; }
  .hero-copy h1 { font-size: 60px; }
  .hero-visual { margin-right: -40px; }
  .final-cta h2 { font-size: 58px; }
  .nav-menu { gap: 26px; }
  .products-grid, .why-grid, .how-timeline { grid-template-columns: repeat(2, 1fr); }
  .how-timeline::before { display: none; }
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .testimonial:last-child { grid-column: 1 / -1; max-width: 560px; margin: 0 auto; }
  .corp-split { grid-template-columns: 1fr; gap: 60px; }
  .corp-image { max-width: 500px; }
  .custom-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 260px); }
  .custom-card:nth-child(1) { grid-row: 1 / 2; grid-column: 1 / -1; }
  .section-pad { padding: 120px 0; }
  .why-section { padding: 120px 0; }
}
@media (max-width: 780px) {
  .container, .nav-inner, .hero-inner, .trustbar-inner { padding-left: 24px; padding-right: 24px; }
  h1, .hero-copy h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  .final-cta h2 { font-size: 40px; }
  .nav-menu, .nav-phone { display: none; }
  .hero { padding: 120px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-stats { flex-wrap: wrap; gap: 32px; }
  .hero-visual { margin-right: 0; }
  .trustbar-inner { flex-wrap: wrap; }
  .trust-label { border-right: none; padding-right: 0; width: 100%; }
  .products-grid, .why-grid, .how-timeline { grid-template-columns: 1fr; gap: 20px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .custom-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 240px); }
  .custom-card:nth-child(1) { grid-row: auto; grid-column: auto; }
  .final-cta-actions { flex-direction: column; align-items: stretch; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .section-pad { padding: 80px 0; }
  .why-section { padding: 80px 0; }
  .final-cta { padding: 100px 0; }
  .section-head { margin-bottom: 50px; }
  .mobile-toggle { display: flex !important; }
}
