/* H2O Purified Water — main.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0a1628;
  --navy2: #0d1f3c;
  --blue: #1a3a6b;
  --aqua: #06b6d4;
  --aqua2: #0891b2;
  --gold: #f59e0b;
  --gold2: #d97706;
  --white: #ffffff;
  --offwhite: #f0f7ff;
  --gray: #64748b;
  --lgray: #e2e8f0;
  --text: #1e293b;
  --shadow: 0 4px 24px rgba(6, 182, 212, .12);
  --r: 12px;
  --r2: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
}

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

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

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all .3s ease;
}

#navbar.scrolled {
  background: rgba(10, 22, 40, .97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 24px;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  line-height: 1;
}

.logo span {
  color: var(--aqua);
}

.logo sub {
  font-size: .55rem;
  color: var(--aqua);
  font-weight: 400;
  letter-spacing: 1px;
  display: block;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, .8);
  font-size: .88rem;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--aqua);
}

.nav-links .dropdown-item {
  display: none;
}

/* Hide category sub-links on desktop */
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--gold2) !important;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 20px;
  padding: 3px;
}

.lang-btn {
  padding: 4px 12px;
  border-radius: 16px;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
  transition: all .2s;
}

.lang-btn.active {
  background: var(--aqua);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(10, 22, 40, .98);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: rgba(255, 255, 255, .85);
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-menu .mobile-cta {
  color: var(--gold) !important;
  font-weight: 700;
  border: none;
}

/* ── CONTAINERS & SECTIONS ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 96px 24px;
}

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
}

.section-header {
  margin-bottom: 56px;
}

.center {
  text-align: center;
}

.center .section-sub {
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: all .2s;
  font-family: 'DM Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, .3);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: all .2s;
  font-family: 'DM Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  border-color: var(--aqua);
  color: var(--aqua);
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--gold2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, .3);
}

.btn-quote {
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-quote:hover {
  background: var(--blue);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, #0e2744 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(6, 182, 212, .15) 1px, transparent 1px);
  background-size: 40px 40px;
}

.wave-1,
.wave-2 {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
}

.wave-1 {
  width: 700px;
  height: 700px;
  border: 2px solid var(--aqua);
  top: -200px;
  right: -200px;
  animation: spin 30s linear infinite;
}

.wave-2 {
  width: 500px;
  height: 500px;
  border: 1px solid var(--aqua);
  bottom: -150px;
  left: -150px;
  animation: spin 20s linear infinite reverse;
}

.wave-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--aqua);
  top: 30%;
  right: 10%;
  filter: blur(80px);
  opacity: .07;
  border-radius: 50%;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 182, 212, .15);
  border: 1px solid rgba(6, 182, 212, .3);
  color: var(--aqua);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '●';
  font-size: .5rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--aqua);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 36px;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--aqua);
}

.stat-label {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap {
  width: 100%;
  height: 500px;
}

.hero-img-bg {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(6, 182, 212, .2), rgba(6, 182, 212, .05));
  border: 1px solid rgba(6, 182, 212, .2);
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/*.hero-img-wrap img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-height: 90%;
  object-fit: contain;
}*/

/* NEW HERO IMAGE FIX */
.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-container img {
  width: 140%;
  max-width: none;
  transform: translateX(80px);
}

.hero-img-emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}

.hero-float {
  position: absolute;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
}

.hf-1 {
  top: 40px;
  left: -30px;
}

.hf-2 {
  bottom: 80px;
  right: -20px;
}

.hf-icon {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.hf-label {
  font-size: .72rem;
  opacity: .7;
}

.hf-val {
  font-family: 'Syne', sans-serif;
  font-size: .9rem;
  font-weight: 700;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .75);
  font-size: .85rem;
  font-weight: 500;
}

.trust-item .ti-icon {
  font-size: 1.1rem;
}

/* ── BENEFITS ── */
#benefits {
  background: var(--offwhite);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  background: #fff;
  border-radius: var(--r2);
  padding: 36px 32px;
  border: 1px solid var(--lgray);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aqua), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(6, 182, 212, .15), rgba(6, 182, 212, .05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  border: 1px solid rgba(6, 182, 212, .2);
}

.benefit-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.benefit-text {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
#how-it-works {
  background: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--aqua), var(--blue), var(--aqua));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--aqua2));
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(6, 182, 212, .4);
}

.step-title {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.step-text {
  font-size: .83rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── STORE ── */
#store {
  background: var(--offwhite);
}

.category-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tab-btn {
  padding: 9px 22px;
  border-radius: 30px;
  border: 2px solid var(--lgray);
  background: #fff;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: 'DM Sans', sans-serif;
  color: var(--gray);
}

.tab-btn:hover {
  border-color: var(--aqua);
  color: var(--aqua);
}

.tab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.quote-mode-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #fef3c7, #fff8e1);
  border: 1px solid #fcd34d;
  border-radius: var(--r);
  padding: 16px 24px;
  margin-bottom: 36px;
}

.qmb-icon {
  font-size: 1.5rem;
}

.qmb-title {
  font-size: .95rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 4px;
}

.qmb-sub {
  font-size: .83rem;
  color: #b45309;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #fff;
  border-radius: var(--r2);
  border: 1px solid var(--lgray);
  overflow: hidden;
  transition: all .3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
}

.product-card.hidden {
  display: none;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.badge-gold {
  background: var(--gold);
  color: var(--navy);
}

.badge-aqua {
  background: var(--aqua);
  color: #fff;
}

.badge-purple {
  background: #7c3aed;
  color: #fff;
}

.product-img {
  height: 200px;
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  flex-direction: column;
  gap: 4px;
}

.product-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.product-img-label {
  font-size: .65rem;
  color: var(--gray);
  font-family: 'DM Sans', sans-serif;
}

.product-body {
  padding: 24px;
}

.product-cat {
  font-size: .72rem;
  font-weight: 700;
  color: var(--aqua);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-desc {
  font-size: .83rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
}

.product-features {
  list-style: none;
  margin-bottom: 20px;
}

.product-features li {
  font-size: .8rem;
  color: var(--gray);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-features li::before {
  content: '✓';
  color: var(--aqua);
  font-weight: 700;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--lgray);
  padding-top: 16px;
}

.product-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}

.product-price small {
  font-size: .68rem;
  color: var(--gray);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  display: block;
}

/* ── WHY ── */
#why {
  background: var(--navy);
}

#why .section-title {
  color: #fff;
}

#why .section-sub {
  color: rgba(255, 255, 255, .6);
}

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

.why-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(6, 182, 212, .15);
  border: 1px solid rgba(6, 182, 212, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.why-item h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
}

.why-item p {
  color: rgba(255, 255, 255, .55);
  font-size: .88rem;
  line-height: 1.6;
}

.why-visual {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r2);
  padding: 40px;
  text-align: center;
}

.why-visual-emoji {
  font-size: 5rem;
  margin-bottom: 20px;
}

.why-visual-title {
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-visual-sub {
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
  margin-bottom: 24px;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-stat {
  background: rgba(6, 182, 212, .1);
  border: 1px solid rgba(6, 182, 212, .2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.why-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--aqua);
}

.why-stat-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 4px;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: #fff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--offwhite);
  border-radius: var(--r2);
  padding: 32px;
  border: 1px solid var(--lgray);
  transition: all .3s;
}

.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
}

.reviewer-loc {
  font-size: .78rem;
  color: var(--gray);
}

/* ── QUOTE FORM ── */
#quote {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
}

#quote .section-title {
  color: #fff;
}

#quote .section-sub {
  color: rgba(255, 255, 255, .65);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.quote-perks {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
}

.quote-perk .perk-icon {
  font-size: 1.1rem;
}

.quote-form-wrap {
  background: #fff;
  border-radius: var(--r2);
  padding: 40px;
}

.quote-form-wrap h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.quote-form-wrap>p {
  font-size: .85rem;
  color: var(--gray);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--lgray);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--text);
  transition: border .2s;
  outline: none;
  background: var(--offwhite);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--aqua);
  background: #fff;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.form-note {
  font-size: .75rem;
  color: var(--gray);
  text-align: center;
  margin-top: 10px;
}

/* ── FAQ ── */
#faq {
  background: var(--offwhite);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: var(--r);
  margin-bottom: 12px;
  border: 1px solid var(--lgray);
  overflow: hidden;
}

.faq-q {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--navy);
  font-size: .95rem;
  user-select: none;
}

.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--aqua);
  font-weight: 300;
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-a-inner {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

/* ── SERVICE AREA ── */
#service-area {
  background: #fff;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.area-card {
  background: var(--offwhite);
  border-radius: var(--r);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--lgray);
  transition: all .2s;
}

.area-card:hover {
  border-color: var(--aqua);
  box-shadow: var(--shadow);
}

.area-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.area-name {
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
  margin-bottom: 6px;
}

.area-cities {
  font-size: .78rem;
  color: var(--gray);
  line-height: 1.5;
}

.area-note {
  text-align: center;
  margin-top: 28px;
  color: var(--gray);
  font-size: .9rem;
}

.area-note a {
  color: var(--aqua);
  font-weight: 600;
}

/* ── CTA BANNER ── */
#cta-banner {
  background: linear-gradient(135deg, var(--aqua2), var(--blue));
  padding: 72px 24px;
  text-align: center;
}

#cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 12px;
}

#cta-banner p {
  color: rgba(255, 255, 255, .8);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .6);
  padding: 64px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: .85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--aqua);
  font-weight: 600;
  margin-top: 16px;
  font-size: .9rem;
}

.footer-col h4 {
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: .95rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: .85rem;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--aqua);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: .8rem;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  transition: background .2s;
}

.social-link:hover {
  background: var(--aqua);
}

/* ── MODAL ── */
#modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 22, 40, .85);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#modal-overlay.open {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: var(--r2);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: modalIn .3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--lgray);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.modal-box h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.modal-product-name {
  font-size: .85rem;
  color: var(--aqua);
  font-weight: 600;
  margin-bottom: 8px;
}

.modal-sub {
  font-size: .82rem;
  color: var(--gray);
  margin-bottom: 20px;
}

/* ── FLOATING CTA ── */
#floating-cta {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 500;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: .85rem;
  box-shadow: 0 4px 20px rgba(245, 158, 11, .4);
  display: none;
  align-items: center;
  gap: 8px;
  animation: fbounce 3s ease-in-out infinite;
}

#floating-cta:hover {
  transform: scale(1.05);
  animation: none;
}

@keyframes fbounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

/* ── TOAST ── */
#toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: var(--navy);
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  border-left: 4px solid var(--aqua);
  font-size: .9rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all .4s;
  max-width: 320px;
  pointer-events: none;
}

#toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PRODUCTS PAGE ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 140px 24px 64px;
  text-align: center;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.products-page-wrap {
  background: var(--offwhite);
  padding: 56px 24px;
}

/* ── ADMIN (basic, for admin pages) ── */
.admin-body {
  font-family: 'DM Sans', sans-serif;
  background: #f1f5f9;
  min-height: 100vh;
}

.admin-sidebar {
  width: 240px;
  background: var(--navy);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
}

.admin-sidebar .logo {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: rgba(255, 255, 255, .7);
  font-size: .88rem;
  transition: all .2s;
}

.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(6, 182, 212, .15);
  color: var(--aqua);
}

.admin-nav a .nav-icon {
  font-size: 1.1rem;
}

.admin-main {
  margin-left: 240px;
  padding: 32px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.admin-header h1 {
  font-size: 1.6rem;
  color: var(--navy);
}

.admin-card {
  background: #fff;
  border-radius: var(--r);
  padding: 24px;
  border: 1px solid var(--lgray);
  margin-bottom: 24px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.admin-table th {
  padding: 12px 16px;
  background: var(--offwhite);
  color: var(--navy);
  font-weight: 700;
  text-align: left;
  border-bottom: 2px solid var(--lgray);
}

.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--lgray);
  color: var(--text);
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: #f8fafc;
}

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-new {
  background: #dbeafe;
  color: #1e40af;
}

.status-contacted {
  background: #fef3c7;
  color: #92400e;
}

.status-quoted {
  background: #ede9fe;
  color: #5b21b6;
}

.status-closed_won {
  background: #d1fae5;
  color: #065f46;
}

.status-closed_lost {
  background: #fee2e2;
  color: #991b1b;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: #fff;
  border-radius: var(--r);
  padding: 24px;
  border: 1px solid var(--lgray);
}

.stat-card-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--aqua);
}

.stat-card-label {
  font-size: .82rem;
  color: var(--gray);
  margin-top: 4px;
}

.btn-sm {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-danger {
  background: #fee2e2;
  color: #991b1b;
}

.btn-info {
  background: #dbeafe;
  color: #1e40af;
}

.btn-success {
  background: #d1fae5;
  color: #065f46;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== FLOATING BADGES ===== */


.hero-badge-float {
  position: absolute;
  z-index: 5;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  font-size: 13px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: floatBadge 4s ease-in-out infinite;
}

/* Posiciones */
.badge-1 {
  top: 10%;
  left: 5%;
}

.badge-2 {
  bottom: 10%;
  right: 5%;
  animation-delay: 1.5s;
}

/* Animación flotante */
@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ===== EFECTO GLOW DE AGUA ===== */
.hero-image-container::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.25), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  z-index: 0;
}

.hero-image-container img {
  position: relative;
  z-index: 2;
}

/* ===== REAL WATER WAVE EFFECT ===== */
.hero-image-container::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 140%;
  height: 120px;
  background: radial-gradient(ellipse at center, rgba(0, 123, 255, 0.35) 0%, transparent 70%);
  transform: translateX(-50%);
  filter: blur(20px);
  opacity: 0.6;
  animation: waterWave 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes waterWave {

  0%,
  100% {
    transform: translateX(-50%) scaleX(1);
  }

  50% {
    transform: translateX(-50%) scaleX(1.1);
  }
}

@media (max-width: 900px) {

  .benefits-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .area-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-sidebar {
    width: 200px;
  }

  .admin-main {
    margin-left: 200px;
  }

  .stat-cards {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Water Drops FX ── */
.drops-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.drop {
  position: absolute;
  top: -30px;
  width: 2px;
  border-radius: 0 0 50% 50%;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(6, 182, 212, .3) 40%,
      rgba(6, 182, 212, .8) 100%);
  animation: dropFall linear infinite;
  opacity: 0;
}

@keyframes dropFall {
  0% {
    transform: translateY(0) scaleX(1);
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  85% {
    opacity: .6;
  }

  95% {
    transform: translateY(105vh) scaleX(1.5);
    opacity: .3;
  }

  100% {
    transform: translateY(108vh) scaleX(1.5);
    opacity: 0;
  }
}

.ripple {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(6, 182, 212, .45);
  width: 4px;
  height: 4px;
  margin: -2px;
  transform: scale(0);
  animation: rippleOut .9s ease-out forwards;
  pointer-events: none;
}

/* ── Logo imagen ── */
.logo-img {
  display: flex;
  align-items: center;
}

.logo-img img {
  height: 130px;
  width: auto;
}

@keyframes rippleOut {
  0% {
    transform: scale(0);
    opacity: .9;
    width: 4px;
    height: 4px;
    margin: -2px;
  }

  100% {
    transform: scale(1);
    opacity: 0;
    width: 70px;
    height: 24px;
    margin: -35px -12px;
  }
}

@media (max-width: 600px) {
  section {
    padding: 64px 16px;
  }

  .benefits-grid,
  .products-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    display: none;
  }

  .admin-main {
    margin-left: 0;
  }

  .stat-cards {
    grid-template-columns: 1fr 1fr;
  }
}