/* ============================================================
   M&J WATER TECH — "HYDRO EDITORIAL"
   v2 — Lighter overlays, hero background support
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

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

:root {
  --paper:       #eef2f7;
  --paper-2:     #e3eaf2;
  --foam:        #ffffff;
  --ink:         #0a1a2a;
  --ink-2:       #1e3a52;
  --slate:       #526780;
  --muted:       #8fa3b8;
  --line:        #ccd6e0;
  --line-dark:   rgba(103, 232, 249, 0.15);
  --ocean:       #0c3956;
  --ocean-deep:  #062236;
  --ocean-black: #030f1c;
  --cyan:        #06b6d4;
  --aqua:        #22d3ee;
  --aqua-bright: #67e8f9;
  --sky:         #bae6fd;
  --grad-aqua:  linear-gradient(135deg, #22d3ee 0%, #06b6d4 50%, #0891b2 100%);
  --grad-ocean: linear-gradient(160deg, #0c3956 0%, #062236 100%);
  --grad-text:  linear-gradient(135deg, #0c3956 0%, #0891b2 60%, #22d3ee 100%);
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --max: 1440px;
  --pad: clamp(20px, 4vw, 56px);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--aqua); color: var(--ocean-black); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: var(--ink-2); border-radius: 10px; }

/* ---------- TYPO ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 11vw, 11rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  color: var(--ink);
  text-transform: uppercase;
}
.display em { font-style: italic; font-weight: 400; color: var(--cyan); }
.h2 {
  font-size: clamp(2rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.h2 em {
  font-style: italic;
  font-weight: 400;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h3 { font-size: clamp(1.35rem, 2.5vw, 2rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.15; }
.mono { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }
.mono-aqua { color: var(--cyan); }
p { color: var(--slate); }
.lead { font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.7; color: var(--slate); }
.lead-strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ---------- LAYOUT ---------- */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(5rem, 11vw, 10rem) 0; position: relative; }
.diag-top    { clip-path: polygon(0 4rem, 100% 0, 100% 100%, 0 100%); padding-top: calc(clamp(5rem, 11vw, 10rem) + 4rem); }
.bg-paper   { background: var(--paper); }
.bg-paper-2 { background: var(--paper-2); }
.bg-foam    { background: var(--foam); }
.bg-ocean   { background: var(--grad-ocean); color: var(--sky); }
.bg-ocean h2, .bg-ocean .h2, .bg-ocean .display, .bg-ocean h3 { color: var(--foam); }
.bg-ocean p { color: var(--sky); }
.grid-lines {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(12, 57, 86, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 57, 86, 0.045) 1px, transparent 1px);
  background-size: 100px 100px;
}
.grid-lines.dark {
  background-image:
    linear-gradient(rgba(103, 232, 249, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 232, 249, 0.06) 1px, transparent 1px);
}
.section > .wrap { position: relative; z-index: 2; }

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.bg-ocean .sec-head { border-color: var(--line-dark); }
.sec-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--ink);
}
.sec-num.accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-ocean .sec-num { color: var(--foam); }
.sec-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  text-align: right;
  line-height: 1.6;
}
.bg-ocean .sec-meta { color: var(--aqua-bright); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split.wide-left { grid-template-columns: 1.35fr 1fr; }
.split.wide-right { grid-template-columns: 1fr 1.35fr; }
@media (max-width: 900px) {
  .split, .split.wide-left, .split.wide-right { grid-template-columns: 1fr; gap: 2.5rem; }
}

.frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper-2);
  aspect-ratio: 4/5;
}
.frame.landscape { aspect-ratio: 4/3; }
.frame.square { aspect-ratio: 1; }
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.frame:hover img { transform: scale(1.04); }
.frame::before,
.frame::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border: 2px solid var(--aqua);
  pointer-events: none;
  z-index: 2;
}
.frame::before { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.frame::after  { bottom: 12px; right: 12px; border-left: none; border-top: none; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.35s var(--ease), background-color 0.35s var(--ease);
}
.nav.scrolled {
  padding: 14px var(--pad);
  background: rgba(238, 242, 247, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  z-index: 10002;
}
.nav-brand img {
  width: 40px; height: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.nav-brand-txt { display: flex; flex-direction: column; line-height: 1.05; }
.nav-brand-txt small {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  border-radius: 999px;
  transition: color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); background: var(--paper-2); }
.nav-links a.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 9px 20px;
  font-weight: 600;
}
.nav-links a.nav-cta:hover { background: var(--ocean); color: var(--sky); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: 12px;
  font-size: 1.05rem;
  z-index: 10002;
}

@media (max-width: 991px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: auto;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 4rem 2rem;
    background: var(--grad-ocean);
    transform: translate3d(100%, 0, 0);
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 10001;
  }
  .nav-links.open { transform: translate3d(0, 0, 0); }
  .nav-links::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(103, 232, 249, 0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(103, 232, 249, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  .nav-links a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    padding: 12px 24px;
    color: var(--foam);
    position: relative;
    z-index: 1;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--aqua-bright); background: transparent; }
  .nav-links a.nav-cta {
    margin-top: 1.5rem;
    padding: 14px 32px;
    background: var(--grad-aqua);
    color: var(--ocean-black);
    font-size: 1rem;
  }
}

/* ---------- HUD ---------- */
.hud {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(10, 26, 42, 0.2);
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.hud.show { opacity: 1; transform: translateY(0); }
.hud-num { color: var(--aqua-bright); }
.hud-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--aqua); }
@media (max-width: 640px) { .hud { display: none; } }

/* ============================================================
   HERO — full-section background image
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--paper);
  isolation: isolate;
}

/* Hero with a background image (homepage) */
.hero--home {
  background-image: url('../imgs/woman-drinking-water.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
/* Lighter overlay so the photo shows through clearly */
.hero--home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    rgba(238, 242, 247, 0.72) 0%,
    rgba(238, 242, 247, 0.45) 45%,
    rgba(186, 230, 253, 0.35) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero--home::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 57, 86, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 57, 86, 0.05) 1px, transparent 1px);
  background-size: 100px 100px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}

/* Hero with blurred decorative circles (used when no bg image) */
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg::before,
.hero-bg::after { content: ''; position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; }
.hero-bg::before {
  width: 700px; height: 700px;
  top: -25%; left: -15%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.5) 0%, transparent 65%);
}
.hero-bg::after {
  width: 600px; height: 600px;
  bottom: -20%; right: -10%;
  background: radial-gradient(circle, rgba(186, 230, 253, 0.6) 0%, transparent 65%);
}

.hero .wrap { position: relative; z-index: 3; width: 100%; }

/* Single-column hero layout (used when bg image is set) */
.hero-single { max-width: 780px; }

/* Two-column hero layout (legacy, still supported) */
.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 4vw, 5rem); align-items: end; }
@media (max-width: 991px) { .hero-grid { grid-template-columns: 1fr; gap: 3rem; } }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}
.hero-eyebrow span.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}
.hero h1 { margin-bottom: 2rem; }
.hero-lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10, 26, 42, 0.15);
  max-width: 620px;
}
.hero-stat .n {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  display: block;
}
.hero-stat .l {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 8px;
  display: block;
}

/* Legacy floating figure (kept for compatibility) */
.hero-figure { position: relative; aspect-ratio: 4/5; border-radius: 6px; overflow: hidden; }
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- TICKER ---------- */
.ticker {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: 20px 0;
  border-top: 1px solid var(--ink-2);
  border-bottom: 1px solid var(--ink-2);
  position: relative;
  z-index: 3;
}
.ticker-track { display: flex; width: max-content; animation: ticker 90s linear infinite; }
.ticker-track > span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.ticker-track em { font-style: normal; color: var(--aqua); font-size: 0.85em; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker.ticker-light { background: var(--paper-2); color: var(--ink); border-color: var(--line); }
.ticker.ticker-light em { color: var(--cyan); }

/* ---------- BENTO ---------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.cell {
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 220px;
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}
.cell:hover { transform: translateY(-4px); border-color: var(--cyan); }
.cell-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--aqua);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.cell-num { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.2em; color: var(--cyan); text-transform: uppercase; }
.cell h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; }
.cell p { font-size: 0.92rem; color: var(--slate); line-height: 1.65; }
.cell .wm {
  position: absolute;
  right: -20px; bottom: -50px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10rem;
  line-height: 0.75;
  color: rgba(6, 182, 212, 0.07);
  letter-spacing: -0.06em;
  pointer-events: none;
}
.cell.feature {
  grid-column: span 8;
  background: var(--grad-ocean);
  color: var(--sky);
  border-color: transparent;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  min-height: 260px;
}
.cell.feature h3 { color: var(--foam); font-size: 1.5rem; }
.cell.feature p { color: rgba(224, 242, 254, 0.85); }
.cell.feature .cell-icon { background: rgba(255,255,255,0.08); color: var(--aqua-bright); width: 64px; height: 64px; font-size: 1.5rem; }
.cell.feature .cell-num { color: var(--aqua-bright); }
.cell.feature .wm { color: rgba(103, 232, 249, 0.08); }
.cell.feature .fbody { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.cell.side { grid-column: span 4; }
.cell.half { grid-column: span 6; }
.cell.third { grid-column: span 4; }
.cell.quarter { grid-column: span 3; }
.cell.wide { grid-column: span 8; }
@media (max-width: 900px) {
  .cell.feature, .cell.side, .cell.half, .cell.wide { grid-column: span 12; }
  .cell.third { grid-column: span 6; }
  .cell.quarter { grid-column: span 6; }
  .cell.feature { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .cell.feature, .cell.side, .cell.half, .cell.wide, .cell.third, .cell.quarter { grid-column: span 12; }
}

/* ---------- PACKAGES ---------- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 991px) { .packages { grid-template-columns: 1fr; } }
.pack {
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}
.pack:hover { transform: translateY(-4px); border-color: var(--cyan); }
.pack-tag { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 1.25rem; }
.pack h3 { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 0.4rem; }
.pack .sub { font-size: 0.92rem; color: var(--slate); margin-bottom: 1.5rem; line-height: 1.6; }
.pack-fig {
  aspect-ratio: 16/10;
  background: var(--paper-2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.pack-fig img { max-height: 100%; object-fit: contain; }
.pack-list { display: grid; gap: 0.65rem; margin-bottom: 1.75rem; flex-grow: 1; }
.pack-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--slate); }
.pack-list li::before { content: '+'; color: var(--cyan); font-weight: 700; flex-shrink: 0; line-height: 1.2; }
.pack.featured { background: var(--grad-ocean); color: var(--sky); border-color: transparent; }
.pack.featured h3 { color: var(--foam); }
.pack.featured .sub { color: rgba(224, 242, 254, 0.8); }
.pack.featured .pack-tag { color: var(--aqua-bright); }
.pack.featured .pack-list li { color: rgba(224, 242, 254, 0.9); }
.pack.featured .pack-fig { background: rgba(255,255,255,0.06); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn-dark   { background: var(--ink); color: var(--paper); }
.btn-aqua   { background: var(--grad-aqua); color: var(--ocean-black); }
.btn-outline{ background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-ghost-light { background: rgba(255,255,255,0.08); color: var(--foam); border: 1.5px solid rgba(255,255,255,0.2); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); }
.btn .ar { transition: transform 0.3s var(--ease); }
.btn:hover .ar { transform: translateX(3px); }
.btn.full { width: 100%; justify-content: center; }

/* ---------- CTA — lighter overlays ---------- */
.cta {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ocean-deep);
  color: var(--foam);
  isolation: isolate;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(6,34,54,0.55) 0%,
    rgba(12,57,86,0.35) 50%,
    rgba(6,34,54,0.6) 100%);
  z-index: 1;
}
.cta .wrap { position: relative; z-index: 3; width: 100%; padding-top: 6rem; padding-bottom: 6rem; }
.cta-inner { max-width: 900px; }
.cta h2 {
  color: var(--foam);
  font-size: clamp(2.5rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
}
.cta h2 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--aqua) 0%, var(--sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta p {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(224, 242, 254, 0.92);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta .deco-tl, .cta .deco-br {
  position: absolute;
  width: 40vw; height: 40vw;
  max-width: 520px; max-height: 520px;
  border: 1px solid rgba(103, 232, 249, 0.15);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}
.cta .deco-tl { top: -20%; right: -10%; }
.cta .deco-br { bottom: -30%; left: -15%; }

/* ---------- STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 2.5rem 2rem 2.5rem 0; border-right: 1px solid var(--line); position: relative; }
.step:last-child { border-right: none; }
.step .n { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.2em; color: var(--cyan); display: block; margin-bottom: 1.5rem; }
.step h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.step p { font-size: 0.9rem; line-height: 1.65; }
@media (max-width: 900px) {
  .step { padding: 2rem 1.5rem; border-right: none; border-bottom: 1px solid var(--line); }
  .step:nth-child(odd) { border-right: 1px solid var(--line); }
  .step:nth-last-child(-n+2) { border-bottom: none; }
}

/* ---------- TESTIMONIAL ---------- */
.testimonial { max-width: 900px; margin: 0 auto; text-align: center; }
.testimonial .mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.6;
  color: var(--cyan);
  opacity: 0.35;
  display: block;
  margin-bottom: 1rem;
}
.testimonial .stars { color: #f59e0b; letter-spacing: 6px; margin-bottom: 1.5rem; font-size: 0.95rem; }
.testimonial blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 2rem;
  min-height: 140px;
  transition: opacity 0.35s var(--ease);
}
.bg-ocean .testimonial blockquote { color: var(--foam); }
.testimonial .author .name { font-family: var(--font-display); font-weight: 600; color: var(--ink); display: block; font-size: 1rem; }
.bg-ocean .testimonial .author .name { color: var(--foam); }
.testimonial .author .role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}
.testimonial-nav { display: flex; justify-content: center; gap: 10px; margin-top: 2rem; }
.testimonial-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}
.testimonial-nav button:hover { transform: translateY(-3px); background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: grid; grid-template-columns: 80px 1fr 44px; gap: 1.5rem; padding: 2rem 0; cursor: pointer; align-items: center; }
.faq-n { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.2em; color: var(--cyan); }
.faq-txt {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.35;
}
.faq-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  transition: transform 0.4s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.faq-item.open .faq-icon { background: var(--ink); color: var(--aqua); border-color: var(--ink); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a-inner { padding: 0 0 2.5rem 80px; color: var(--slate); font-size: 1rem; line-height: 1.75; max-width: 850px; }
.faq-item.open .faq-a { max-height: 900px; }
@media (max-width: 640px) {
  .faq-q { grid-template-columns: 50px 1fr 40px; gap: 1rem; padding: 1.5rem 0; }
  .faq-a-inner { padding-left: 50px; }
}

/* ---------- FORMS ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  background: var(--foam);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.14);
}

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--grad-ocean);
  color: var(--sky);
  padding: 2.5rem;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.contact-card h3 { color: var(--foam); font-size: 1.5rem; margin-bottom: 0.75rem; }
.contact-card > p { color: rgba(224,242,254,0.8); margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.contact-item .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: var(--aqua-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item small { display: block; font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--aqua-bright); margin-bottom: 3px; }
.contact-item a, .contact-item span { color: var(--foam); font-weight: 500; word-break: break-word; }
.contact-item a:hover { color: var(--aqua-bright); }

/* ---------- PAGE HERO — lighter overlay ---------- */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
  background: var(--paper);
  isolation: isolate;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(238, 242, 247, 0.55) 0%,
    rgba(238, 242, 247, 0.25) 50%,
    rgba(186, 230, 253, 0.35) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 2; }
.crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 2rem;
}
.crumbs a { color: var(--cyan); }
.crumbs a:hover { color: var(--ink); }
.page-hero h1 {
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
  max-width: 1100px;
}
.page-hero .lead { max-width: 620px; }

/* ---------- LEGAL ---------- */
.legal { max-width: 780px; margin: 0 auto; }
.legal h2 { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; margin: 3rem 0 1rem; color: var(--ink); }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--slate); line-height: 1.8; font-size: 1rem; margin-bottom: 1rem; }
.legal ul { padding-left: 1.5rem; list-style: none; }
.legal ul li { position: relative; padding-left: 1.5rem; }
.legal ul li::before { content: '—'; position: absolute; left: 0; color: var(--cyan); }
.legal a { color: var(--cyan); border-bottom: 1px solid var(--cyan); padding-bottom: 1px; }
.legal a:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ocean-black);
  color: rgba(224, 242, 254, 0.75);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 13vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: rgba(103, 232, 249, 0.08);
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(103, 232, 249, 0.1);
  text-align: center;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 3rem; position: relative; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer .brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 1.25rem; color: var(--foam); font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.footer .brand-row img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
.footer h4 { font-family: var(--font-mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--aqua-bright); margin-bottom: 1.25rem; }
.footer-list li { margin-bottom: 0.6rem; }
.footer-list a { color: rgba(224, 242, 254, 0.7); font-size: 0.92rem; transition: color 0.25s var(--ease); }
.footer-list a:hover { color: var(--aqua-bright); }
.footer p { color: rgba(224, 242, 254, 0.7); font-size: 0.9rem; line-height: 1.7; max-width: 340px; }
.footer-socials { display: flex; gap: 10px; margin-top: 1.5rem; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(103, 232, 249, 0.2);
  color: rgba(224, 242, 254, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.footer-socials a:hover { transform: translateY(-3px); background: var(--aqua); color: var(--ocean-black); border-color: transparent; }
.footer-bottom {
  border-top: 1px solid rgba(103, 232, 249, 0.1);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(224, 242, 254, 0.5);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom a { color: rgba(224, 242, 254, 0.5); }
.footer-bottom a:hover { color: var(--aqua-bright); }

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* Reduced-motion — intentionally does NOT block hover/menu transitions */
@media (prefers-reduced-motion: reduce) {
  /* Empty by design: we don't force-disable hover or menu animations */
}

/* ---------- UTILITIES ---------- */
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.center { text-align: center; }