/* ============================================================
   WASHNEST BY BERSIH.IN — style.css
   Senior UI/UX · CRO-Optimized · Mobile-First · Premium
   ============================================================
   COLOR PALETTE
   Navy     #0F3D66
   Aqua     #2DB6E8
   Sky      #CDEFFC
   Green    #67C66B
   White    #FFFFFF
   LtGray   #F3F5F7
   ============================================================ */

/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --navy:        #0F3D66;
  --navy-dark:   #082847;
  --navy-mid:    #174E7F;
  --aqua:        #2DB6E8;
  --aqua-dark:   #1A9BD0;
  --aqua-light:  #5ECAEF;
  --sky:         #CDEFFC;
  --sky-mid:     #E8F6FE;
  --sky-light:   #F0FAFF;
  --green:       #67C66B;
  --green-dark:  #4CAF50;
  --green-light: #E8F5E9;
  --white:       #FFFFFF;
  --lt-gray:     #F3F5F7;
  --mid-gray:    #E8ECF2;

  /* Text */
  --text-dark:   #0D1B2A;
  --text-mid:    #2D4263;
  --text-muted:  #6B7A99;
  --text-light:  #9AAAC0;

  /* Borders */
  --border:      #DDE6F5;
  --border-mid:  #C8D8EE;

  /* Shadows */
  --shadow-xs:   0 1px 4px rgba(15,61,102,.06);
  --shadow-sm:   0 2px 12px rgba(15,61,102,.09);
  --shadow-md:   0 8px 32px rgba(15,61,102,.13);
  --shadow-lg:   0 20px 60px rgba(15,61,102,.18);
  --shadow-xl:   0 32px 80px rgba(15,61,102,.24);
  --shadow-card: 0 4px 24px rgba(15,61,102,.10);

  /* Radius */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   32px;
  --r-2xl:  48px;
  --r-full: 999px;

  /* Typography */
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Transitions */
  --ease:     cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
  --t:        0.26s var(--ease);
  --t-slow:   0.45s var(--ease);

  /* Layout */
  --ann-h:  42px;
  --nav-h:  68px;
  --max-w:  1180px;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--t);
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  line-height: 1;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

details { display: block; }
summary { display: flex; }

:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  [data-aos] { opacity: 1 !important; transform: none !important; }
  .ann-track  { animation: none !important; }
}


/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px)  { .container { padding: 0 32px; } }
@media (min-width: 1200px) { .container { padding: 0 40px; } }

.w-full      { width: 100%; }
.mt-4        { margin-top: 28px; }
.text-center { text-align: center; }


/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.55rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
h4 { font-size: 1.05rem; font-weight: 700; }
h5 { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }

p { color: var(--text-mid); line-height: 1.75; }

.highlight        { color: var(--aqua); }
.highlight-sky    { color: var(--sky); }
.text-white       { color: var(--white) !important; }
.text-white-muted { color: rgba(255,255,255,.80) !important; }


/* ============================================================
   5. SECTION BASE
   ============================================================ */
.section { padding: 80px 0; }

@media (max-width: 767px) { .section { padding: 56px 0; } }

.bg-light { background: var(--lt-gray); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
}

.section-header h2 { margin: 10px 0 14px; }
.section-header p  { font-size: 1rem; color: var(--text-muted); }


/* ============================================================
   6. SECTION TAG PILLS
   ============================================================ */
.section-tag {
  display: inline-block;
  background: var(--sky-mid);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--r-full);
  border: 1px solid rgba(45,182,232,.22);
}

.section-tag.tag-blue {
  background: rgba(45,182,232,.10);
  color: var(--aqua-dark);
  border-color: rgba(45,182,232,.28);
}

.section-tag.tag-light {
  background: rgba(255,255,255,.14);
  color: white;
  border-color: rgba(255,255,255,.28);
}


/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .94rem;
  border: 2px solid transparent;
  transition: var(--t);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1.3;
}

.btn-lg { padding: 15px 34px; font-size: 1rem; }

/* Primary (aqua gradient) */
.btn-primary {
  background: linear-gradient(135deg, var(--aqua) 0%, var(--aqua-dark) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(45,182,232,.38);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(45,182,232,.50);
}
.btn-primary:active { transform: translateY(0); }

/* CTA Primary (navy gradient — main conversion button) */
.btn-cta-primary {
  background: linear-gradient(135deg, var(--navy) 0%, #1565C0 100%);
  color: white;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: var(--r-full);
  font-weight: 800;
  box-shadow: 0 6px 28px rgba(15,61,102,.32);
  transition: var(--t);
}
.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(15,61,102,.44);
}
.btn-cta-primary:active { transform: translateY(0); }

/* Outline Navy */
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: white;
}

/* White (on dark bg) */
.btn-white {
  background: white;
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(255,255,255,.22);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,255,255,.32);
}

/* Nav button */
.btn-nav {
  background: var(--navy);
  color: white;
  padding: 9px 20px;
  font-size: .85rem;
  border-radius: var(--r-full);
  gap: 6px;
}
.btn-nav:hover { background: var(--aqua-dark); }


/* ============================================================
   8. AOS ANIMATIONS
   ============================================================ */
[data-aos] {
  opacity: 0;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
[data-aos="fade-up"]    { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos].aos-animate  { opacity: 1 !important; transform: none !important; }


/* ============================================================
   9. ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  height: var(--ann-h);
  background: linear-gradient(90deg, var(--navy) 0%, #1565C0 45%, var(--aqua-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.announcement-bar.hidden { display: none; }

.ann-track {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.ann-items {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  padding-left: 100%;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ann-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.ann-item svg { flex-shrink: 0; }

.ann-sep {
  color: rgba(255,255,255,.40);
  font-size: .7rem;
}

.ann-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: white;
  display: grid;
  place-items: center;
  transition: var(--t);
}
.ann-close:hover { background: rgba(255,255,255,.28); }


/* ============================================================
   10. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: var(--ann-h);
  left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: top var(--t), box-shadow var(--t);
}

.navbar.ann-gone { top: 0; }
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  background: white;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-brand {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}

.logo-sub {
  font-size: .66rem;
  color: var(--aqua-dark);
  font-weight: 600;
  letter-spacing: .02em;
}

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--text-mid);
  font-size: .85rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--r-full);
  transition: var(--t);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--sky-mid);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--r-sm);
  transition: var(--t);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--t);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 3px;
  padding: 10px 16px 18px;
  background: white;
  border-top: 1px solid var(--border);
}

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

.mob-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
  font-weight: 600;
  font-size: .9rem;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  transition: var(--t);
}

.mob-link:hover { color: var(--navy); background: var(--sky-mid); }

.mob-cta {
  margin-top: 6px;
  padding: 14px;
  font-size: .95rem;
}

@media (min-width: 960px) {
  .nav-links   { display: flex; }
  .hamburger   { display: none; }
  .mobile-menu { display: none !important; }
}


/* ============================================================
   11. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--ann-h) + var(--nav-h) + 32px);
  padding-bottom: 100px;
  background: linear-gradient(150deg, var(--navy) 0%, #1155A6 48%, var(--aqua-dark) 100%);
  overflow: hidden;
}

/* Background decorations */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}
.hero-blob.b1 {
  width: 780px; height: 780px;
  top: -300px; right: -180px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}
.hero-blob.b2 {
  width: 480px; height: 480px;
  bottom: -220px; left: -160px;
  background: rgba(45,182,232,.08);
}
.hero-blob.b3 {
  width: 260px; height: 260px;
  top: 30%; left: 38%;
  background: rgba(103,198,107,.06);
}

/* Floating bubbles */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(205,239,252,.18);
  animation: floatUp 6s ease-in-out infinite;
}
.bub1 { width: 72px; height: 72px; top: 20%; left: 7%;   animation-delay: 0s; }
.bub2 { width: 44px; height: 44px; top: 60%; left: 18%;  animation-delay: 1.6s; }
.bub3 { width: 88px; height: 88px; top: 24%; right: 10%; animation-delay: 3.2s; }
.bub4 { width: 32px; height: 32px; bottom: 30%; right: 26%; animation-delay: 2.0s; }
.bub5 { width: 56px; height: 56px; bottom: 18%; left: 32%; animation-delay: 4.0s; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0) scale(1); opacity: .5; }
  50%       { transform: translateY(-20px) scale(1.07); opacity: .85; }
}

/* Hero inner grid */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1.1fr .9fr;
    gap: 52px;
    align-items: center;
  }
}

/* Hero copy */
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: white;
}

/* Hero logo in copy area */
.hero-logo-wrap {
  margin-bottom: 20px;
  max-width: 280px;
}

.hero-logo-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  border-radius: var(--r-md);
  /* White background logo on dark hero — add subtle backdrop */
  background: rgba(255,255,255,.10);
  padding: 12px 16px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
}

/* Launch badge */
.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--r-full);
  width: fit-content;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.launch-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(103,198,107,.7);
  animation: pulseDot 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(103,198,107,.7); }
  50%      { transform: scale(1.3); box-shadow: 0 0 0 6px rgba(103,198,107,.0); }
}

/* Hero H1 */
.hero-h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
}

.h1-line1 { color: white; display: block; }
.h1-line2 { color: var(--sky); display: block; }

/* Hero description */
.hero-desc {
  color: rgba(255,255,255,.85);
  font-size: 1.04rem;
  max-width: 520px;
  margin-bottom: 26px;
  line-height: 1.75;
}

.hero-desc strong { color: white; }

/* USP pills */
.usp-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}

.usp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  color: white;
  font-size: .8rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: var(--r-full);
  backdrop-filter: blur(6px);
  transition: var(--t);
}

.usp-pill:hover {
  background: rgba(255,255,255,.20);
  border-color: rgba(255,255,255,.35);
}

/* Hero photo frame */
.hero-photo-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 540px;
}

.hero-room-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-radius: var(--r-lg);
}

.hero-photo-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.photo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.95);
  border-radius: var(--r-full);
  padding: 5px 12px;
  font-size: .76rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}

.live-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.badge-comfort { color: var(--text-mid); }

/* Hero form column */
.hero-form-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Lead form card */
.lead-form-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 30px 28px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,.18);
  position: relative;
  overflow: hidden;
}

/* Top accent bar */
.lead-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--aqua), var(--green));
}

/* Scarcity bar */
.scarcity-bar {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: linear-gradient(135deg, #FFF3E0, #FFF8E1);
  border: 1.5px solid #FFD54F;
  border-radius: var(--r-md);
  padding: 10px 14px;
  margin-bottom: 20px;
  font-size: .8rem;
  color: #E65100;
  font-weight: 600;
  line-height: 1.5;
}

.scarcity-bar strong { color: #BF360C; }
.scarcity-icon { flex-shrink: 0; color: #E65100; margin-top: 1px; }
.scarcity-icon svg { stroke: #E65100; }

/* Form header */
.form-header { margin-bottom: 22px; }

.form-title {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 7px;
}

.form-title-accent { color: var(--aqua-dark); }

.form-subtitle {
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Waitlist form */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Form group */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: .83rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

.req  { color: #E53935; font-size: .8rem; }
.opt  { color: var(--text-muted); font-weight: 400; font-size: .76rem; }

/* Input wrap */
.input-wrap { position: relative; }

.inp-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  stroke: var(--text-muted);
  pointer-events: none;
  transition: stroke var(--t);
  flex-shrink: 0;
}

.input-wrap input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  font-size: .94rem;
  color: var(--text-dark);
  background: var(--lt-gray);
  transition: var(--t);
  -webkit-appearance: none;
}

.input-wrap input::placeholder {
  color: var(--text-muted);
  opacity: .65;
}

.input-wrap input:focus {
  outline: none;
  border-color: var(--aqua);
  background: white;
  box-shadow: 0 0 0 3px rgba(45,182,232,.14);
}

.input-wrap input:focus ~ .inp-icon,
.input-wrap:focus-within .inp-icon { stroke: var(--aqua-dark); }

.input-wrap input.error {
  border-color: #E53935;
  background: #FFF5F5;
}

.field-error {
  font-size: .75rem;
  color: #E53935;
  font-weight: 600;
  min-height: 14px;
  line-height: 1.3;
}

.field-hint {
  font-size: .74rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Submit button */
#submitBtn {
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}

.btn-loading {
  display: none;
  align-items: center;
  gap: 8px;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2.5px solid rgba(255,255,255,.35);
  border-top-color: white;
  border-radius: 50%;
  display: inline-block;
  animation: spin .7s linear infinite;
  flex-shrink: 0;
}

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

/* Privacy note */
.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: .74rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.55;
}

.privacy-note svg { flex-shrink: 0; margin-top: 1px; stroke: var(--text-muted); }

/* Urgency row */
.urgency-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  color: #E65100;
  margin-top: 8px;
}

.urgency-row svg { stroke: #E65100; flex-shrink: 0; }

/* Trust chips */
.form-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.26);
  color: white;
  font-size: .76rem;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: var(--r-full);
  backdrop-filter: blur(6px);
}

.trust-chip svg { stroke: white; flex-shrink: 0; }

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  line-height: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-wave svg { width: 100%; height: auto; display: block; }


/* ============================================================
   12. ECO TRUST STRIP
   ============================================================ */
.eco-strip {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.eco-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 18px 20px;
}

.eco-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .83rem;
  font-weight: 700;
  color: var(--text-mid);
  padding: 8px 16px;
  white-space: nowrap;
}

.eco-icon { font-size: 1.1rem; line-height: 1; }

.eco-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .eco-strip-inner { gap: 4px; padding: 14px 16px; }
  .eco-divider     { display: none; }
  .eco-item        { font-size: .78rem; padding: 5px 10px; }
}


/* ============================================================
   13. PROBLEM SECTION
   ============================================================ */
.problem-section { background: var(--lt-gray); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 44px;
}

@media (min-width: 580px)  { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .problem-grid { grid-template-columns: repeat(4, 1fr); } }

.problem-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.problem-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--aqua));
  transform: scaleX(0);
  transition: transform var(--t);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}

.problem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.problem-card:hover::after { transform: scaleX(1); }

.problem-icon-wrap { margin-bottom: 14px; }
.problem-emoji { font-size: 2.5rem; line-height: 1; display: block; }

.problem-card h3 { font-size: .97rem; margin-bottom: 9px; color: var(--navy); }
.problem-card p  { font-size: .855rem; color: var(--text-muted); line-height: 1.65; }

.problem-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.problem-cta-text { color: var(--text-mid); font-weight: 600; font-size: .95rem; }
.problem-cta-text strong { color: var(--navy); }


/* ============================================================
   14. SOLUTION SECTION
   ============================================================ */
.solution-section { background: white; }

.solution-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 960px) {
  .solution-layout { grid-template-columns: 1fr 1fr; gap: 60px; }
}

/* Solution items */
.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
}

.solution-item:last-of-type {
  border-bottom: none;
  margin-bottom: 32px;
}

.sol-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.sol-navy  { background: linear-gradient(135deg, var(--navy), #1565C0); }
.sol-aqua  { background: linear-gradient(135deg, var(--aqua-dark), var(--navy)); }
.sol-green { background: linear-gradient(135deg, var(--green-dark), #2E7D32); }

.solution-item h3 { font-size: 1.02rem; margin-bottom: 6px; color: var(--navy); }
.solution-item p  { font-size: .865rem; color: var(--text-muted); line-height: 1.7; }

/* Solution images */
.solution-imgs {
  position: relative;
  min-height: 380px;
}

.sol-img-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sol-img-main img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: var(--r-lg);
  transition: transform .5s var(--ease);
}

.sol-img-main:hover img { transform: scale(1.03); }

.sol-img-float {
  position: absolute;
  bottom: -24px;
  right: -12px;
  width: 44%;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 4px solid white;
  box-shadow: var(--shadow-xl);
}

.sol-img-float img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.sol-float-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(15,61,102,.88);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  padding: 7px 10px;
  text-align: center;
  backdrop-filter: blur(6px);
  line-height: 1.45;
}

/* Location teaser */
.location-teaser {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--sky-mid);
  border: 1.5px dashed rgba(45,182,232,.38);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  margin-top: 40px;
}

.loc-icon-wrap { flex-shrink: 0; margin-top: 2px; }

.loc-text strong {
  display: block;
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.loc-text p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.loc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--aqua-dark);
  font-size: .82rem;
  font-weight: 700;
  transition: var(--t);
}

.loc-link:hover { color: var(--navy); gap: 8px; }


/* ============================================================
   15. GALLERY SECTION (NEW)
   ============================================================ */
.gallery-section { background: var(--lt-gray); }

/* 2-column asymmetric grid: large left, two stacked right */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1.35fr 1fr;
    gap: 16px;
    align-items: stretch;
  }
}

.gallery-item {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  background: var(--navy-dark);
}

.gallery-main { min-height: 380px; }

.gallery-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-half {
  flex: 1;
  min-height: 180px;
}

@media (min-width: 768px) {
  .gallery-main  { min-height: 480px; }
  .gallery-half  { min-height: 0; }
}

/* Image wrap with hover zoom */
.gallery-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s var(--ease);
  min-height: 240px;
}

@media (min-width: 768px) {
  .gallery-main  .gallery-img { min-height: 480px; }
  .gallery-half  .gallery-img { min-height: 220px; }
}

.gallery-item:hover .gallery-img { transform: scale(1.05); }

/* Caption overlay */
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,40,71,.92) 0%, rgba(8,40,71,.55) 60%, transparent 100%);
  padding: 48px 20px 20px;
  transform: translateY(6px);
  transition: transform var(--t);
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-cap-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-cap-tag {
  display: inline-block;
  background: var(--aqua);
  color: white;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-full);
  width: fit-content;
  margin-bottom: 4px;
}

.gallery-cap-inner strong {
  display: block;
  color: white;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.gallery-cap-inner p {
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  line-height: 1.5;
  margin: 0;
}

/* Gallery feature badges row */
.gallery-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.gf-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 8px 18px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-mid);
  box-shadow: var(--shadow-xs);
  transition: var(--t);
}

.gf-item:hover {
  border-color: rgba(45,182,232,.35);
  color: var(--navy);
  background: var(--sky-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.gf-icon { font-size: 1rem; line-height: 1; }

/* Gallery CTA */
.gallery-cta {
  text-align: center;
  margin-top: 4px;
}


/* ============================================================
   16. HOW IT WORKS SECTION
   ============================================================ */
.how-section { background: white; }

/* Service tabs */
.how-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.how-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--r-full);
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-mid);
  background: white;
  border: 2px solid var(--border);
  transition: var(--t);
  cursor: pointer;
}

.how-tab:hover {
  border-color: rgba(45,182,232,.4);
  color: var(--navy);
}

.how-tab.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  box-shadow: 0 4px 18px rgba(15,61,102,.28);
}

.how-tab svg { stroke: currentColor; }

/* Tab panels */
.how-panels { position: relative; }

.how-panel {
  display: none;
  background: white;
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
}

.how-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--aqua), var(--green));
}

.how-panel.active { display: block; }

@media (max-width: 640px) { .how-panel { padding: 24px 18px; } }

/* Steps */
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.step-num {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--navy), #1565C0);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .9rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(15,61,102,.28);
}

.step-content {
  padding-bottom: 8px;
  flex: 1;
}

.step-content h4 {
  font-size: .97rem;
  color: var(--navy);
  margin-bottom: 5px;
}

.step-content p {
  font-size: .855rem;
  color: var(--text-muted);
  line-height: 1.68;
}

.step-connector {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(15,61,102,.2), rgba(45,182,232,.2));
  margin: 6px 0 6px 19px;
  border-radius: 2px;
}

/* Badges */
.how-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--r-full);
  margin-top: 24px;
}

.self-badge   { background: var(--sky-mid); color: var(--navy); border: 1px solid rgba(45,182,232,.22); }
.full-badge   { background: linear-gradient(135deg, rgba(15,61,102,.08), rgba(45,182,232,.10)); color: var(--navy); border: 1px solid rgba(45,182,232,.22); }
.pickup-badge { background: var(--green-light); color: #2E7D32; border: 1px solid rgba(103,198,107,.3); }


/* ============================================================
   17. BENEFITS SECTION
   ============================================================ */
.benefits-section { background: var(--lt-gray); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 48px;
}

@media (min-width: 580px)  { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  transition: var(--t);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

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

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(45,182,232,.28);
}

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

.benefit-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.benefit-emoji { font-size: 1.7rem; line-height: 1; }
.benefit-card h3 { font-size: .97rem; color: var(--navy); margin-bottom: 9px; }
.benefit-card p  { font-size: .855rem; color: var(--text-muted); line-height: 1.68; }

/* Facility showcase */
.facility-showcase {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.facility-img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  display: block;
  border-radius: var(--r-xl);
  transition: transform .6s var(--ease);
}

.facility-showcase:hover .facility-img { transform: scale(1.025); }

@media (max-width: 640px) { .facility-img { aspect-ratio: 4/3; } }

.facility-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,61,102,.88) 0%, transparent 100%);
  padding: 36px 24px 22px;
}

.facility-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fac-pill {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
  color: white;
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--r-full);
  backdrop-filter: blur(8px);
  transition: var(--t);
}

.fac-pill:hover { background: rgba(255,255,255,.26); }


/* ============================================================
   18. UVP SECTION
   ============================================================ */
.uvp-section { background: white; }

.uvp-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  padding: 52px 48px;
  background: var(--lt-gray);
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.uvp-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--aqua), var(--green));
}

@media (max-width: 640px) { .uvp-inner { padding: 36px 24px; } }

/* UVP logo — horizontal logo on light background */
.uvp-logo {
  margin: 0 auto 26px;
}

.uvp-logo img {
  margin: 0 auto;
  max-width: 260px;
  object-fit: contain;
  /* The horizontal logo has white bg, looks clean on light bg */
  border-radius: var(--r-md);
}

.uvp-quote {
  font-size: clamp(.95rem, 1.8vw, 1.12rem);
  color: var(--text-mid);
  font-style: normal;
  line-height: 1.82;
  margin: 0 auto 36px;
  max-width: 660px;
}

.uvp-quote strong { color: var(--navy); }
.uvp-quote em     { color: var(--aqua-dark); font-style: italic; }

.uvp-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 28px;
  border-top: 1.5px solid var(--border);
}

.uvp-stat {
  text-align: center;
  padding: 4px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.uvp-stat-icon { font-size: 1.3rem; line-height: 1; margin-bottom: 4px; }
.uvp-stat strong { display: block; font-size: .95rem; color: var(--navy); font-weight: 800; }
.uvp-stat span   { font-size: .76rem; color: var(--text-muted); }

.uvp-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 640px) { .uvp-divider { display: none; } }


/* ============================================================
   19. TESTIMONIALS
   ============================================================ */
.testimoni-section { background: var(--lt-gray); }

.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 36px;
}

@media (min-width: 640px)  { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

.testi-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  transition: var(--t);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testi-featured {
  border-color: var(--aqua);
  box-shadow: 0 0 0 2px rgba(45,182,232,.14), var(--shadow-md);
}

.testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}

.testi-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 1px;
}

.testi-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: var(--sky-mid);
  color: var(--navy);
  border: 1px solid rgba(45,182,232,.2);
}

.testi-tag-aqua {
  background: rgba(45,182,232,.12);
  color: var(--aqua-dark);
  border-color: rgba(45,182,232,.3);
}

.testi-card blockquote {
  font-size: .875rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
  quotes: '\201C' '\201D';
}

.testi-card blockquote::before { content: open-quote; color: var(--aqua); font-size: 1.2rem; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: .97rem;
  flex-shrink: 0;
}

.testi-author strong { display: block; font-size: .86rem; color: var(--text-dark); }
.testi-author span   { font-size: .76rem; color: var(--text-muted); }

/* Waitlist counter */
.waitlist-counter {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
  .waitlist-counter {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.counter-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.counter-avatars { display: flex; align-items: center; }

.c-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid white;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: .84rem;
  margin-left: -10px;
  flex-shrink: 0;
}

.c-av:first-child { margin-left: 0; }

.counter-text { font-size: .9rem; color: var(--text-mid); }
.counter-text strong { color: var(--navy); font-size: 1.05rem; }


/* ============================================================
   20. MEMBERSHIP / CTA SECTION
   ============================================================ */
.cta-member-section {
  background: linear-gradient(140deg, var(--navy) 0%, #1155A6 52%, var(--aqua-dark) 100%);
  position: relative;
  overflow: hidden;
}

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

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}

.cta-shape.cs1 { width: 640px; height: 640px; top: -260px; right: -140px; }
.cta-shape.cs2 { width: 380px; height: 380px; bottom: -180px; left: -80px; }

.cta-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(205,239,252,.12);
  animation: floatUp 7s ease-in-out infinite;
}

.cta-bubble.cb1 { width: 60px; height: 60px; top: 20%; left: 8%;  animation-delay: 0s; }
.cta-bubble.cb2 { width: 38px; height: 38px; bottom: 25%; right: 12%; animation-delay: 2.5s; }

.cta-member-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 960px) {
  .cta-member-inner { grid-template-columns: 1fr 1fr; }
}

/* Text column */
.cta-text-col .section-tag { margin-bottom: 14px; }
.cta-text-col h2 { margin: 10px 0 14px; }
.cta-text-col p  { margin-bottom: 28px; }

/* Member perks */
.member-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

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

.perk-check {
  width: 22px;
  height: 22px;
  background: rgba(103,198,107,.22);
  border: 1.5px solid var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 800;
  color: var(--green);
  flex-shrink: 0;
}

/* CTA button row */
.cta-btn-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.cta-free-note {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  padding-left: 4px;
}

/* Card column */
.cta-card-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
}

.member-card-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(45,182,232,.28) 0%, transparent 68%);
  pointer-events: none;
}

.member-card-float {
  animation: cardFloat 4.5s ease-in-out infinite;
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.38));
  position: relative;
  z-index: 1;
}

.member-card-img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

@keyframes cardFloat {
  0%,100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-16px) rotate(1.5deg); }
}

.member-card-note {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  font-size: .79rem;
  padding: 9px 18px;
  border-radius: var(--r-full);
  backdrop-filter: blur(8px);
  z-index: 1;
  position: relative;
}

.member-card-note strong { color: var(--green); }


/* ============================================================
   21. FAQ SECTION
   ============================================================ */
.faq-section { background: white; }

.faq-list {
  max-width: 800px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--t), box-shadow var(--t);
}

.faq-item[open] {
  border-color: rgba(45,182,232,.35);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  list-style: none;
  color: var(--text-dark);
  transition: color var(--t), background var(--t);
  user-select: none;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--navy); background: var(--sky-light); }
.faq-item[open] summary { color: var(--navy); }

.faq-toggle {
  flex-shrink: 0;
  color: var(--aqua-dark);
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  transition: transform var(--t);
}

.faq-toggle svg { stroke: currentColor; }
.faq-item[open] .faq-toggle { transform: rotate(180deg); }

.faq-answer {
  padding: 0 22px 20px;
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.78;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.faq-cta {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.faq-cta p {
  color: var(--text-muted);
  font-size: .95rem;
}


/* ============================================================
   22. FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1.2fr 1.8fr; }
}

/* Brand column */
/* Footer logo: stacked variant on dark bg */
.footer-logo-img {
  max-width: 140px;
  height: auto;
  object-fit: contain;
  margin-bottom: 12px;
  border-radius: var(--r-sm);
  /* slight brightness for visibility on dark bg */
  filter: brightness(1.08) contrast(1.05);
  background: rgba(255,255,255,.08);
  padding: 8px;
}

.footer-tagline {
  font-size: .93rem;
  font-weight: 700;
  color: var(--sky);
  margin-bottom: 10px;
}

.footer-desc {
  font-size: .84rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 20px;
}

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

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.6);
  transition: var(--t);
}

.social-link:hover {
  background: var(--aqua-dark);
  color: white;
  border-color: var(--aqua-dark);
  transform: translateY(-2px);
}

/* Links grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 480px) {
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
}

.footer-col h5 {
  color: white;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  transition: var(--t);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-col a:hover { color: var(--sky); padding-left: 2px; }

/* Footer bottom */
.footer-bottom { padding: 18px 0; }

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom-inner p { font-size: .78rem; color: rgba(255,255,255,.35); }

.footer-eco-note {
  display: flex !important;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.42) !important;
}

/* Footer icon (monochrome variant) */
.footer-icon-mono {
  display: inline-block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: .5;
  vertical-align: middle;
  flex-shrink: 0;
  border-radius: 3px;
  filter: grayscale(1) brightness(2);
}


/* ============================================================
   23. STICKY CTA MOBILE
   ============================================================ */
.sticky-cta-mobile {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  padding: 10px 14px 12px;
  background: white;
  border-top: 1.5px solid var(--border);
  box-shadow: 0 -4px 24px rgba(15,61,102,.12);
  transform: translateY(100%);
  transition: transform var(--t-slow);
}

.sticky-cta-mobile.visible { transform: translateY(0); }

.sticky-cta-btn {
  display: block;
  text-align: center;
  font-size: .94rem;
  padding: 14px 20px;
  border-radius: var(--r-full);
}

@media (min-width: 960px) { .sticky-cta-mobile { display: none !important; } }


/* ============================================================
   24. FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 76px;
  right: 20px;
  z-index: 950;
  background: #25D366;
  color: white;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 22px rgba(37,211,102,.5);
  transition: var(--t);
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
}

.wa-tooltip {
  position: absolute;
  right: 62px;
  background: rgba(0,0,0,.75);
  color: white;
  font-size: .74rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
  backdrop-filter: blur(6px);
}

.wa-float:hover .wa-tooltip { opacity: 1; }

@media (min-width: 960px) { .wa-float { bottom: 28px; right: 28px; } }


/* ============================================================
   25. SCROLL TO TOP BUTTON
   ============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 144px;
  right: 20px;
  z-index: 950;
  background: var(--navy);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), background var(--t), transform var(--t);
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top-btn:hover {
  background: var(--aqua-dark);
  transform: translateY(-2px);
}

@media (min-width: 960px) {
  .scroll-top-btn { bottom: 92px; right: 28px; }
}


/* ============================================================
   26. THANK YOU POPUP
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5,22,48,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-overlay.active { display: flex; }

.popup-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 40px 34px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  animation: popIn .38s var(--ease-out);
  position: relative;
  overflow: hidden;
}

/* Top gradient bar */
.popup-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--aqua), var(--green));
}

@keyframes popIn {
  from { opacity: 0; transform: scale(.88) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.popup-x-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: var(--lt-gray);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  transition: var(--t);
}

.popup-x-close:hover { background: var(--mid-gray); color: var(--text-dark); }

/* Popup logo — stacked variant */
.popup-logo { margin-bottom: 14px; }

.popup-logo-img {
  margin: 0 auto;
  max-width: 110px;
  height: auto;
  object-fit: contain;
  border-radius: var(--r-sm);
}

.popup-icon { font-size: 3rem; margin-bottom: 6px; line-height: 1; }

.popup-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.popup-name-row { margin-bottom: 10px; }

.popup-greeting { font-size: .96rem; color: var(--text-mid); }
.popup-name-accent { color: var(--aqua-dark); font-size: 1.05rem; }

.popup-body {
  font-size: .89rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.popup-body strong { color: var(--navy); }

.popup-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--lt-gray);
  border-radius: var(--r-md);
  padding: 16px 18px;
  margin-bottom: 22px;
  border: 1px solid var(--border);
}

.popup-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .83rem;
  font-weight: 700;
  color: var(--green-dark);
  text-align: left;
}

.popup-perk span:first-child {
  width: 20px;
  height: 20px;
  background: var(--green-light);
  border: 1.5px solid var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .7rem;
  color: var(--green-dark);
  flex-shrink: 0;
}

.popup-close-btn { margin-bottom: 14px; }

.popup-share-note {
  font-size: .76rem;
  color: var(--text-muted);
}


/* ============================================================
   27. PRINT STYLES
   ============================================================ */
@media print {
  .announcement-bar, .navbar, .sticky-cta-mobile,
  .wa-float, .scroll-top-btn, .popup-overlay,
  .hero-bg, .bubble, .hero-wave, .cta-bg-shapes {
    display: none !important;
  }

  .hero { min-height: auto; padding: 40px 0; }
  .hero-inner { grid-template-columns: 1fr; }
  * { box-shadow: none !important; color: black !important; }
}


/* ============================================================
   28. TOUCH DEVICE ADJUSTMENTS
   ============================================================ */
.touch-device .benefit-card:hover,
.touch-device .problem-card:hover,
.touch-device .testi-card:hover,
.touch-device .sol-img-main:hover img,
.touch-device .gallery-item:hover .gallery-img {
  transform: none;
}

.touch-device .gallery-item:hover .gallery-caption {
  transform: translateY(6px);
}


/* ============================================================
   29. ACCESSIBILITY UTILITIES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip to main content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--navy);
  color: white;
  padding: 10px 18px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 700;
  font-size: .9rem;
}

.skip-link:focus { top: 0; }


/* ============================================================
   30. IMAGE QUALITY HELPERS
   All brand images — crisp rendering, no blurry upscaling
   ============================================================ */
.hero-logo-img,
.hero-room-img,
.gallery-img,
.sol-img-main img,
.sol-img-float img,
.facility-img,
.member-card-img,
.uvp-logo img,
.footer-logo-img,
.popup-logo-img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Round logo icons (icon-only variants) cleanly */
.logo-icon,
.footer-icon-mono {
  border-radius: 50%;
  object-fit: contain;
  background: white;
}
