/* ============================================================
   WATERBOY DELIVERY — COMPLETE STYLESHEET
   ============================================================ */

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

/* ---- CSS Custom Properties ---- */
:root {
  --bg-primary: #0B1B2B;
  --bg-secondary: #0D2137;
  --bg-card-dark: #132E4A;
  --bg-darkest: #070F18;
  --bg-glacier: #0F2740;
  --bg-light: #F0F7FF;
  --bg-light-2: #E8F4FD;
  --cyan: #00D4FF;
  --glacier-blue: #38BDF8;
  --light-blue: #7DD3FC;
  --frost-white: #B8E6FF;
  --text-on-dark: #FFFFFF;
  --text-muted-dark: #8BB8D4;
  --text-on-light: #0B1B2B;
  --text-muted-light: #5A8AAC;
  --glow: 0 0 40px rgba(0,212,255,0.2), 0 0 80px rgba(0,212,255,0.1);
  --glow-hover: 0 0 50px rgba(0,212,255,0.38), 0 0 100px rgba(0,212,255,0.18);
  --frost-border: 1px solid rgba(0,212,255,0.12);
  --frost-border-hover: 1px solid rgba(0,212,255,0.4);
  --grad-water: linear-gradient(135deg, #00D4FF, #0088CC, #005588);
  --grad-text-cyan: linear-gradient(135deg, #00D4FF 0%, #38BDF8 100%);
  --f-head: 'Outfit', sans-serif;
  --f-body: 'Inter', sans-serif;
  --f-mono: 'Space Mono', monospace;
  --ease-water: cubic-bezier(0.25, 0.8, 0.25, 1.1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--f-body);
  background: var(--bg-primary);
  color: var(--text-on-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.loading-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loading-logo {
  width: 180px;
  opacity: 0;
  animation: logoReveal 0.9s ease forwards 0.4s;
  filter: brightness(1.3) drop-shadow(0 0 30px rgba(0,212,255,0.5));
}

.loading-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.15);
  opacity: 0;
  animation: pulseRing 1.5s ease-in-out infinite 1.3s;
}

.loading-droplet {
  width: 10px;
  height: 14px;
  background: linear-gradient(180deg, #00D4FF, #0088CC);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  margin-top: 18px;
  opacity: 0;
  animation: dropletFall 1s ease forwards 1.4s;
  box-shadow: 0 0 16px rgba(0,212,255,0.7);
  position: relative;
  z-index: 2;
}

.loading-ripple-1,
.loading-ripple-2 {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(0,212,255,0.6);
  opacity: 0;
  width: 0;
  height: 0;
}

.loading-ripple-1 { animation: rippleExpand 0.9s ease forwards 2.45s; }
.loading-ripple-2 { animation: rippleExpand 0.9s ease forwards 2.65s; border-color: rgba(0,212,255,0.3); }

/* Curtain overlay that wipes away */
.loading-curtain-left,
.loading-curtain-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: var(--bg-primary);
  transition: transform 0.7s cubic-bezier(0.76,0,0.24,1);
}
.loading-curtain-left { left: 0; transform-origin: left; }
.loading-curtain-right { right: 0; transform-origin: right; }

#loading-screen.hide .loading-curtain-left { transform: scaleX(0); }
#loading-screen.hide .loading-curtain-right { transform: scaleX(0); }
#loading-screen.done { display: none; }

@keyframes logoReveal {
  from { opacity: 0; transform: scale(0.85) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes pulseRing {
  0%,100% { opacity: 0.15; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 0.4;  transform: translate(-50%,-50%) scale(1.08); }
}
@keyframes dropletFall {
  0%   { opacity: 1; transform: translateY(-50px); }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(16px) scaleY(0.4); }
}
@keyframes rippleExpand {
  0%   { width: 0; height: 0; opacity: 0.9; }
  100% { width: 320px; height: 100px; opacity: 0; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(11,27,43,0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 48px;
  border-bottom: 1px solid rgba(0,212,255,0.1);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.nav-logo img {
  height: 48px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(1.2) drop-shadow(0 0 8px rgba(0,212,255,0.2));
  transition: filter 0.3s;
}
.nav-logo img:hover { filter: brightness(1.4) drop-shadow(0 0 14px rgba(0,212,255,0.4)); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted-dark);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--cyan);
  transition: width 0.3s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--cyan) !important;
  color: var(--bg-primary) !important;
  font-weight: 600 !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 12px !important;
  letter-spacing: 1px !important;
  box-shadow: var(--glow);
  transition: all 0.3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: #fff !important;
  box-shadow: var(--glow-hover) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1002;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text-on-dark);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile full-screen menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(7,15,24,0.97);
  backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  font-family: var(--f-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--text-on-dark);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--cyan); }
.mobile-menu .nav-cta {
  font-size: 17px !important;
  padding: 18px 40px !important;
  border-radius: 12px !important;
  margin-top: 16px;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-primary) 0%, #0F2740 60%, var(--bg-primary) 100%);
  overflow: hidden;
  padding: 120px 48px 80px;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1548839140-29a749e1cf4d?w=1600&q=80') center/cover no-repeat;
  opacity: 0.04;
  z-index: 0;
}
.hero-glow-right {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-glow-left {
  position: absolute;
  left: -150px; bottom: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(56,189,248,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
#particles-canvas, #ripple-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
#ripple-canvas { z-index: 2; pointer-events: none; }

.hero-container {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--cyan);
  border: 1px solid rgba(0,212,255,0.35);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 26px;
  background: rgba(0,212,255,0.04);
}
.hero-title {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: var(--text-on-dark);
  margin-bottom: 24px;
}
.gradient-text {
  background: var(--grad-text-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted-dark);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: var(--bg-primary);
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--glow);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { box-shadow: var(--glow-hover); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-on-dark);
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 10px;
  border: 1px solid rgba(0,212,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(0,212,255,0.18);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* Hero image */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-float {
  max-height: 560px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  animation: floatImage 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(0,212,255,0.2));
}
.hero-image-placeholder {
  width: 340px;
  height: 440px;
  background: linear-gradient(160deg, var(--bg-card-dark) 0%, #0d3b5e 100%);
  border-radius: 20px;
  border: var(--frost-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted-dark);
  font-family: var(--f-mono);
  font-size: 11px;
  text-align: center;
  animation: floatImage 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
  gap: 14px;
  padding: 30px;
  box-shadow: var(--glow);
}
.hero-image-placeholder svg { opacity: 0.35; }

.frost-crystal-tl {
  position: absolute;
  top: -10px; left: -10px;
  width: 70px; height: 70px;
  background: radial-gradient(circle at 30% 30%, rgba(0,212,255,0.5) 0%, transparent 70%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.12;
  pointer-events: none;
}
.frost-crystal-br {
  position: absolute;
  bottom: -10px; right: -10px;
  width: 50px; height: 50px;
  background: radial-gradient(circle at 70% 70%, rgba(56,189,248,0.6) 0%, transparent 70%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  opacity: 0.12;
  pointer-events: none;
}

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

.hero-scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.hero-scroll-cue:hover { opacity: 1; }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--cyan));
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  animation: scrollDrop 2.2s ease infinite;
}
.scroll-label {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--text-muted-dark);
  text-transform: uppercase;
}
@keyframes scrollDrop {
  0%   { top: -8px; opacity: 0; }
  20%  { opacity: 1; }
  100% { top: 56px; opacity: 0; }
}

/* ============================================================
   WAVE DIVIDERS
   ============================================================ */
.wave-section {
  position: relative;
  overflow: hidden;
  height: 90px;
  line-height: 0;
}
.wave-section svg {
  position: absolute;
  bottom: 0; left: 0;
  width: 200%;
  height: 100%;
  animation: waveDrift 10s linear infinite;
}
.wave-section .wave-2 { animation-duration: 14s; animation-direction: reverse; opacity: 0.5; }
.wave-section .wave-3 { animation-duration: 18s; opacity: 0.3; }
@keyframes waveDrift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: 108px 48px; }
.section-light { background: var(--bg-light); color: var(--text-on-light); }
.section-dark  { background: var(--bg-primary); color: var(--text-on-dark); }
.section-darker{ background: var(--bg-secondary); color: var(--text-on-dark); }
.section-darkest{ background: var(--bg-darkest); color: var(--text-on-dark); }

.container { max-width: 1280px; margin: 0 auto; width: 100%; }

.section-label {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  display: block;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.section-title.dark { color: var(--text-on-dark); }
.section-title.light { color: var(--text-on-light); }
.section-subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 58px;
}
.section-subtitle.dark  { color: var(--text-muted-dark); }
.section-subtitle.light { color: var(--text-muted-light); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.9s var(--ease-water), transform 0.9s var(--ease-water);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.28s; }
.reveal-delay-4 { transition-delay: 0.38s; }
.reveal-delay-5 { transition-delay: 0.48s; }
.reveal-delay-6 { transition-delay: 0.58s; }

/* ============================================================
   WHAT WE DELIVER
   ============================================================ */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid rgba(0,212,255,0.07);
  transition: all 0.4s var(--ease-water);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-water);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(0,212,255,0.1), 0 5px 20px rgba(0,0,0,0.04);
  border-color: rgba(0,212,255,0.25);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 60px; height: 60px;
  background: #E0F7FF;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 28px; height: 28px; color: #00A8CC; }
.service-card h3 {
  font-family: var(--f-head);
  font-size: 21px;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 12px;
}
.service-card p { font-size: 15px; color: var(--text-muted-light); line-height: 1.75; margin-bottom: 24px; }
.card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.card-link:hover { gap: 10px; }
.coming-soon-badge {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--cyan);
  border: 1px solid rgba(0,212,255,0.35);
  border-radius: 100px;
  padding: 4px 11px;
  margin-top: 12px;
  background: rgba(0,212,255,0.04);
}

/* ============================================================
   PRODUCTS SHOWCASE
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--bg-card-dark);
  border-radius: 16px;
  border: var(--frost-border);
  overflow: hidden;
  transition: all 0.4s var(--ease-water);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,212,255,0.12);
  border-color: rgba(0,212,255,0.3);
}
.product-image-wrap {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #0F2740 0%, #071724 100%);
  position: relative;
  overflow: hidden;
}
.product-image-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 85%, rgba(0,212,255,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.product-image-wrap img {
  max-height: 240px;
  max-width: 85%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}
.product-card:hover .product-image-wrap img { transform: scale(1.05); }

.product-img-placeholder {
  width: 180px; height: 220px;
  background: rgba(0,212,255,0.03);
  border: var(--frost-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted-dark);
  font-family: var(--f-mono);
  font-size: 10px;
  text-align: center;
  position: relative;
  z-index: 1;
  gap: 10px;
  padding: 20px;
}
.product-img-placeholder svg { opacity: 0.3; }

.product-info { padding: 24px 26px 28px; }
.product-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--bg-primary);
  background: var(--cyan);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.product-card h3 {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 10px;
}
.product-card p { font-size: 14px; color: var(--text-muted-dark); line-height: 1.7; margin-bottom: 18px; }
.product-price {
  font-family: var(--f-mono);
  font-size: 17px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 14px;
  text-shadow: 0 0 20px rgba(0,212,255,0.3);
}
.product-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(0,212,255,0.3);
  padding-bottom: 2px;
  transition: all 0.3s;
}
.product-link:hover { gap: 10px; border-color: var(--cyan); }

.products-footer {
  text-align: center;
  margin-top: 52px;
  font-size: 15px;
  color: var(--text-muted-dark);
}
.products-footer a {
  color: var(--cyan);
  border-bottom: 1px solid rgba(0,212,255,0.3);
  padding-bottom: 1px;
  transition: all 0.3s;
}
.products-footer a:hover { border-color: var(--cyan); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.process-wrap {
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-connector {
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--glacier-blue) 50%, var(--cyan) 100%);
  background-size: 200%;
  animation: lineShimmer 3s linear infinite;
  z-index: 1;
}
@keyframes lineShimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.process-number {
  width: 56px; height: 56px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--bg-primary);
  margin-bottom: 22px;
  box-shadow: var(--glow);
  transition: all 0.3s;
}
.process-step:hover .process-number {
  box-shadow: var(--glow-hover);
  transform: scale(1.08);
}
.process-step-icon {
  width: 36px; height: 36px;
  margin-bottom: 14px;
  color: #0099BB;
}
.process-step h3 {
  font-family: var(--f-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 10px;
}
.process-step p { font-size: 14px; color: var(--text-muted-light); line-height: 1.7; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: linear-gradient(135deg, #071a2b 0%, #0d3050 100%);
  padding: 64px 48px;
  border-top: var(--frost-border);
  border-bottom: var(--frost-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.stat-number {
  font-family: var(--f-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(0,212,255,0.35);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted-dark);
  letter-spacing: 0.5px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card-dark);
  border-radius: 16px;
  border: var(--frost-border);
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s var(--ease-water);
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,255,0.25);
  box-shadow: 0 20px 60px rgba(0,212,255,0.1);
}
.pricing-card.popular {
  border-color: rgba(0,212,255,0.4);
  box-shadow: var(--glow);
  transform: translateY(-12px);
  background: linear-gradient(160deg, var(--bg-card-dark) 0%, #0d3550 100%);
}
.pricing-card.popular:hover {
  transform: translateY(-18px);
  box-shadow: var(--glow-hover);
}
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--bg-primary);
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.pricing-card h3 {
  font-family: var(--f-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-on-dark);
  margin-bottom: 4px;
}
.pricing-card-desc {
  font-size: 13px;
  color: var(--text-muted-dark);
  margin-bottom: 28px;
}
.pricing-price {
  font-family: var(--f-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 30px;
  text-shadow: 0 0 25px rgba(0,212,255,0.3);
}
.pricing-price span {
  font-size: 14px;
  color: var(--text-muted-dark);
  font-family: var(--f-body);
  font-weight: 400;
}
.pricing-features { margin-bottom: 32px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted-dark);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li svg { width: 15px; height: 15px; color: var(--cyan); flex-shrink: 0; }
.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}
.pricing-btn.outline {
  background: transparent;
  border: 1px solid rgba(0,212,255,0.4);
  color: var(--cyan);
}
.pricing-btn.outline:hover {
  background: rgba(0,212,255,0.07);
  border-color: var(--cyan);
  box-shadow: 0 0 22px rgba(0,212,255,0.15);
}
.pricing-btn.filled {
  background: var(--cyan);
  color: var(--bg-primary);
  box-shadow: var(--glow);
}
.pricing-btn.filled:hover { box-shadow: var(--glow-hover); transform: translateY(-1px); }
.pricing-note {
  text-align: center;
  margin-top: 50px;
  font-size: 14px;
  color: var(--text-muted-dark);
  line-height: 1.8;
}

/* ============================================================
   WHY WATERBOY
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 26px;
  border: 1px solid rgba(0,212,255,0.06);
  transition: all 0.4s var(--ease-water);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,212,255,0.09);
  border-color: rgba(0,212,255,0.2);
}
.feature-emoji { font-size: 30px; margin-bottom: 14px; display: block; }
.feature-card h3 {
  font-family: var(--f-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--text-muted-light); line-height: 1.75; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial-card {
  background: var(--bg-card-dark);
  border-radius: 16px;
  padding: 32px;
  border: var(--frost-border);
  border-left: 3px solid var(--cyan);
  transition: all 0.4s ease;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,212,255,0.1);
}
.stars { display: flex; gap: 3px; margin-bottom: 18px; }
.stars svg { width: 15px; height: 15px; fill: var(--cyan); }
.testimonial-text {
  font-size: 15px;
  color: var(--text-muted-dark);
  line-height: 1.82;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 13px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,212,255,0.12);
  border: 1px solid rgba(0,212,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--cyan);
  flex-shrink: 0;
}
.author-name { font-family: var(--f-head); font-size: 15px; font-weight: 600; color: var(--text-on-dark); }
.author-role { font-size: 12px; color: var(--text-muted-dark); margin-top: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,212,255,0.08); }
.faq-item:first-child { border-top: 1px solid rgba(0,212,255,0.08); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 20px;
  user-select: none;
}
.faq-question h3 {
  font-family: var(--f-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-on-light);
  flex: 1;
}
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.4);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  cursor: pointer;
}
.faq-toggle svg { width: 14px; height: 14px; color: var(--cyan); transition: transform 0.3s; }
.faq-item.open .faq-toggle { background: var(--cyan); border-color: var(--cyan); }
.faq-item.open .faq-toggle svg { transform: rotate(45deg); color: var(--bg-primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-answer-inner { padding: 0 0 24px; }
.faq-answer-inner p { font-size: 15px; color: var(--text-muted-light); line-height: 1.82; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-banner {
  position: relative;
  padding: 120px 48px;
  background: var(--bg-secondary);
  overflow: hidden;
  text-align: center;
}
.cta-glow-left {
  position: absolute;
  top: 50%; left: -100px;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-glow-right {
  position: absolute;
  top: 50%; right: -100px;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(56,189,248,0.04) 0%, transparent 70%);
  pointer-events: none;
}
#cta-banner .section-title {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}
#cta-banner .section-subtitle { position: relative; z-index: 1; margin: 0 auto 40px; }
.cta-buttons { position: relative; z-index: 1; }
.btn-cta-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cyan);
  color: var(--bg-primary);
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 700;
  padding: 20px 48px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 50px rgba(0,212,255,0.28), 0 0 100px rgba(0,212,255,0.12);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: ctaGlow 3.5s ease-in-out infinite;
  text-decoration: none;
}
.btn-cta-large::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transition: left 0.55s ease;
}
.btn-cta-large:hover::before { left: 100%; }
.btn-cta-large:hover {
  box-shadow: 0 0 70px rgba(0,212,255,0.45), 0 0 140px rgba(0,212,255,0.2);
  transform: translateY(-3px);
}
@keyframes ctaGlow {
  0%,100% { box-shadow: 0 0 50px rgba(0,212,255,0.28), 0 0 100px rgba(0,212,255,0.12); }
  50%      { box-shadow: 0 0 65px rgba(0,212,255,0.40), 0 0 130px rgba(0,212,255,0.18); }
}
.cta-fine-print {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted-dark);
  position: relative;
  z-index: 1;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-form-wrap h3 {
  font-family: var(--f-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--text-muted-light); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 17px;
  background: #fff;
  border: 1.5px solid rgba(0,180,220,0.18);
  border-radius: 10px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--text-on-light);
  transition: all 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--cyan);
  color: var(--bg-primary);
  font-family: var(--f-head);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--glow);
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn-submit:hover::before { left: 100%; }
.btn-submit:hover { box-shadow: var(--glow-hover); transform: translateY(-2px); }
.form-success {
  display: none;
  padding: 18px;
  background: rgba(0,212,255,0.07);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 10px;
  text-align: center;
  color: var(--cyan);
  font-family: var(--f-head);
  font-size: 15px;
  font-weight: 600;
  margin-top: 14px;
}

.contact-info h3 {
  font-family: var(--f-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 28px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,212,255,0.07);
  transition: all 0.3s;
}
.contact-info-item:hover {
  border-color: rgba(0,212,255,0.22);
  box-shadow: 0 8px 28px rgba(0,212,255,0.06);
}
.contact-info-icon {
  width: 42px; height: 42px;
  background: #E0F7FF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 19px; height: 19px; color: #00A8CC; }
.contact-info-text strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted-light);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-info-text span { font-size: 14px; color: var(--text-on-light); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--bg-darkest);
  padding: 80px 48px 0;
  position: relative;
  overflow: hidden;
}
#footer .wave-section {
  position: absolute;
  top: 0; left: 0; right: 0;
  transform: scaleY(-1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-top: 20px;
}
.footer-brand img {
  height: 48px;
  mix-blend-mode: screen;
  filter: brightness(1.2);
  margin-bottom: 14px;
}
.footer-brand-placeholder {
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 14px;
}
.footer-tagline {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 2.5px;
  margin-bottom: 12px;
}
.footer-desc { font-size: 14px; color: var(--text-muted-dark); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-on-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 14px; color: var(--text-muted-dark); transition: color 0.3s; }
.footer-links a:hover { color: var(--cyan); }
.footer-contact-items { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted-dark); }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--cyan); flex-shrink: 0; }
.footer-bottom {
  margin-top: 64px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--text-muted-dark); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--text-muted-dark); transition: color 0.3s; }
.footer-legal a:hover { color: var(--cyan); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--bg-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow);
  transition: all 0.3s ease;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#back-to-top:hover { box-shadow: var(--glow-hover); transform: translateY(-3px); }
#back-to-top svg { width: 20px; height: 20px; }

/* ============================================================
   SECTION FROST CORNERS (decorative)
   ============================================================ */
.frost-corner-section {
  position: relative;
  overflow: hidden;
}
.frost-corner-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 250px; height: 250px;
  background: radial-gradient(circle at 100% 0%, rgba(0,212,255,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.frost-corner-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 250px; height: 250px;
  background: radial-gradient(circle at 0% 100%, rgba(56,189,248,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.frost-corner-section > .container,
.frost-corner-section > * { position: relative; z-index: 1; }

/* ============================================================
   RESPONSIVE — TABLET 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .section { padding: 80px 32px; }
  #navbar { padding: 18px 32px; }
  #navbar.scrolled { padding: 12px 32px; }
  #hero { padding: 110px 32px 70px; }
  .hero-container { gap: 40px; }
  #cta-banner { padding: 90px 32px; }
  #footer { padding: 60px 32px 0; }

  .cards-grid-3,
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.popular { transform: translateY(0); grid-column: span 1; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ============================================================
   RESPONSIVE — MOBILE 768px
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 72px 24px; }
  #navbar { padding: 16px 24px; }
  #navbar.scrolled { padding: 12px 24px; }
  #hero { padding: 100px 24px 60px; }
  #cta-banner { padding: 80px 24px; }
  #footer { padding: 50px 24px 0; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-glow-right, .hero-glow-left { display: none; }
  .hero-image-float { max-height: 280px; }
  .hero-image-placeholder { width: 240px; height: 300px; }

  .cards-grid-3,
  .products-grid,
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }

  .stat-number { font-size: 38px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE 480px
   ============================================================ */
@media (max-width: 480px) {
  .section { padding: 60px 18px; }
  .hero-title { font-size: 36px; }
  .section-title { font-size: 26px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .btn-cta-large { padding: 17px 30px; font-size: 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  #back-to-top { bottom: 20px; right: 20px; }
}
