:root {
  --abyssal-navy: #03045E;
  --deep-ocean: #023E8A;
  --dive-blue: #0077B6;
  --current-teal: #0096C7;
  --shallow-aqua: #00B4D8;
  --reef-cyan: #48CAE4;
  --tropical-mist: #90E0EF;
  --surface-foam: #CAF0F8;
  --bubble-white: #F8FDFF;
  --coral-safety: #FF6B35;
  --sand-warm: #F4E4C1;
  --text-primary: #0B1E3F;
  --text-muted: #5A7184;
  --success-green: #0A9D6E;
  --water-gradient: linear-gradient(180deg, #00B4D8 0%, #0077B6 55%, #023E8A 100%);
  --depth-gradient: linear-gradient(180deg, #CAF0F8 0%, #90E0EF 100%);
  --shadow-sm: 0 2px 8px rgba(3,4,94,0.06);
  --shadow-md: 0 6px 20px rgba(3,4,94,0.1);
  --shadow-lg: 0 12px 36px rgba(3,4,94,0.18);
}
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--text-primary);
  background: var(--bubble-white);
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -40px; left: 8px;
  background: var(--abyssal-navy); color: #fff;
  padding: 8px 16px; text-decoration: none;
  border-radius: 0 0 8px 8px; z-index: 1000;
  font-weight: 600; font-size: 13px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.nav {
  position: sticky; top: 0;
  background: rgba(248,253,255,0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(144,224,239,0.5);
  padding: 14px 20px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 50;
}
.logo {
  font-weight: 800; font-size: 18px;
  color: var(--abyssal-navy); letter-spacing: -0.02em;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
}
.logo-mark {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--water-gradient);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,119,182,0.3);
}
.logo-mark svg { width: 16px; height: 16px; }
.logo span { color: var(--dive-blue); }
.nav-cta {
  background: var(--dive-blue); color: #fff; border: none;
  padding: 9px 20px; border-radius: 8px;
  font-weight: 600; font-size: 13px; cursor: pointer;
  font-family: inherit; transition: all 0.2s;
}
.nav-cta:hover { background: var(--deep-ocean); transform: translateY(-1px); }

.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(248,253,255,0.95);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 12px 20px;
  border-top: 1px solid rgba(144,224,239,0.5);
  z-index: 40;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 20px rgba(3,4,94,0.08);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta button {
  width: 100%; background: var(--dive-blue); color: #fff; border: none;
  padding: 14px; border-radius: 10px; font-size: 15px; font-weight: 700;
  letter-spacing: 0.02em; cursor: pointer; font-family: inherit;
  box-shadow: 0 4px 14px rgba(0,119,182,0.35);
}
@media (min-width: 768px) { .sticky-cta { display: none; } }

.hero {
  background: var(--water-gradient);
  padding: 88px 24px 100px;
  text-align: center; position: relative; overflow: hidden; color: #fff;
  min-height: 90vh;
  display: flex; flex-direction: column; justify-content: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(202,240,248,0.4) 0%, transparent 55%),
              radial-gradient(ellipse at 70% 80%, rgba(3,4,94,0.3) 0%, transparent 50%);
  pointer-events: none;
}
.sun-rays {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 200%; height: 100%; pointer-events: none;
  background: repeating-conic-gradient(from -10deg at 50% -20%,
    transparent 0deg, transparent 6deg,
    rgba(202,240,248,0.08) 6deg, rgba(202,240,248,0.08) 8deg,
    transparent 8deg, transparent 14deg);
  opacity: 0.7;
}
.bubble {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
  border: 1px solid rgba(255,255,255,0.2);
  pointer-events: none;
  animation: float 8s ease-in infinite;
}
@keyframes float {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) scale(1.2); opacity: 0; }
}
.diver-silhouette {
  position: absolute; bottom: 10%; right: 8%;
  width: 120px; height: 80px; opacity: 0.25;
  pointer-events: none;
}
@media (max-width: 640px) { .diver-silhouette { width: 80px; height: 55px; right: 5%; bottom: 15%; } }

.hero-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(202,240,248,0.4);
  backdrop-filter: blur(10px);
  color: #fff; font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 24px;
  font-weight: 600; padding: 8px 16px; border-radius: 100px;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 12px #4ADE80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}
.hero h1 {
  font-size: clamp(30px, 7vw, 56px);
  line-height: 1.08; margin: 0 0 20px;
  font-weight: 800; letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(3,4,94,0.2);
}
.hero h1 .highlight {
  display: inline-block;
  background: linear-gradient(180deg, #FFF 0%, #CAF0F8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  color: var(--surface-foam); font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.55; margin: 0 auto 36px; max-width: 540px;
}
.hero-ctas { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bubble-white); color: var(--dive-blue);
  border: none; padding: 19px 44px; border-radius: 12px;
  font-size: 17px; font-weight: 700; letter-spacing: 0.01em;
  cursor: pointer; font-family: inherit; text-decoration: none;
  transition: all 0.25s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 10px 30px rgba(3,4,94,0.45), 0 0 0 0 rgba(255,255,255,0.5);
  position: relative; overflow: hidden;
}
.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(3,4,94,0.55), 0 0 0 4px rgba(255,255,255,0.2);
}
.cta-primary:active { transform: translateY(-1px); }
.cta-primary svg { transition: transform 0.2s; }
.cta-primary:hover svg { transform: translateX(3px); }
.cta-micro {
  color: var(--tropical-mist); font-size: 13px;
  font-weight: 500; display: flex; align-items: center; gap: 6px;
}
.cta-micro svg { width: 14px; height: 14px; }
.hero-stat {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-size: 13px; margin-top: 28px;
  opacity: 0.9;
}
.hero-stat-num { font-weight: 800; font-size: 15px; color: var(--surface-foam); }
.hero-stat-divider { opacity: 0.4; }

.wave-up { display: block; width: 100%; height: 40px; margin-bottom: -1px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

.section { padding: 88px 24px; }
.section-inner { max-width: 1000px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dive-blue); font-weight: 700;
  padding: 4px 0; margin: 0 0 14px;
}
.centered { text-align: center; }
.centered .section-label { display: block; }
.section h2 {
  font-size: clamp(28px, 4.5vw, 42px);
  color: var(--abyssal-navy); margin: 0 0 16px;
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.12;
}
.centered h2 { text-align: center; }
.section-sub {
  font-size: 17px; color: var(--text-muted);
  margin: 0 auto 56px; max-width: 600px; line-height: 1.55;
}
.centered .section-sub { text-align: center; }

.trust-bar { background: #fff; padding: 24px; border-bottom: 1px solid rgba(144,224,239,0.5); }
.trust-bar-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  gap: 32px; flex-wrap: wrap;
}
.trust-bar-label {
  font-size: 12px; color: var(--text-muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.trust-agency {
  display: flex; align-items: center; gap: 8px;
  color: var(--deep-ocean); font-weight: 700; font-size: 14px;
  letter-spacing: 0.04em;
}
.trust-agency svg { width: 20px; height: 20px; }
.trust-rating {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-primary); font-size: 14px; font-weight: 600;
}
.trust-rating-stars { color: #F4A024; letter-spacing: 1px; }

.steps { display: grid; gap: 32px; position: relative; }
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 48px; }
  .steps::before {
    content: ""; position: absolute;
    top: 34px; left: 16%; right: 16%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--tropical-mist) 0 6px, transparent 6px 12px);
    z-index: 0;
  }
}
.step { display: flex; gap: 18px; align-items: flex-start; position: relative; z-index: 1; }
@media (min-width: 768px) { .step { flex-direction: column; text-align: center; align-items: center; } }
.step-num {
  flex-shrink: 0; width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(180deg, var(--current-teal), var(--dive-blue));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800;
  box-shadow: 0 8px 24px rgba(0,119,182,0.35), inset 0 -3px 0 rgba(0,0,0,0.1);
  border: 3px solid var(--bubble-white);
}
.step-body h3 { font-size: 18px; margin: 12px 0 8px; color: var(--abyssal-navy); font-weight: 700; }
.step-body p { font-size: 15px; color: var(--text-muted); line-height: 1.55; margin: 0; }

.trust-sec { background: var(--surface-foam); padding: 88px 24px; position: relative; }
.trust-grid-v2 {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 768px) { .trust-grid-v2 { grid-template-columns: repeat(3, 1fr); } }
.trust-card {
  background: #fff; border-radius: 16px; padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(144,224,239,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: left;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.trust-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--shallow-aqua), var(--dive-blue));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(0,119,182,0.25);
}
.trust-icon svg { width: 26px; height: 26px; color: #fff; }
.trust-card h3 {
  font-size: 17px; color: var(--abyssal-navy); font-weight: 700;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.trust-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.stats-strip {
  background: var(--abyssal-navy); padding: 48px 24px;
  color: #fff; position: relative; overflow: hidden;
}
.stats-strip::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0,150,199,0.3), transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(72,202,228,0.2), transparent 50%);
  pointer-events: none;
}
.stats-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 24px;
  position: relative;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat-num {
  font-size: clamp(32px, 5vw, 44px); font-weight: 800;
  color: var(--reef-cyan); letter-spacing: -0.02em;
  line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 12px; color: var(--tropical-mist);
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600;
}

.form-sec { background: var(--depth-gradient); padding: 80px 20px; }
.form-card {
  background: var(--bubble-white); border-radius: 20px;
  padding: 40px 32px; box-shadow: var(--shadow-lg);
  max-width: 600px; margin: 0 auto; position: relative;
}
@media (max-width: 480px) { .form-card { padding: 32px 22px; } }
.form-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--coral-safety); color: #fff;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; padding: 6px 14px; border-radius: 100px;
  box-shadow: 0 6px 16px rgba(255,107,53,0.35);
}
.form-card h2 {
  font-size: clamp(24px, 4vw, 32px); color: var(--abyssal-navy);
  margin: 8px 0 8px; font-weight: 800; letter-spacing: -0.02em;
  text-align: center; line-height: 1.15;
}
.form-sub {
  font-size: 15px; color: var(--text-muted); margin: 0 0 28px;
  line-height: 1.5; text-align: center;
}
.form-time {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; font-size: 13px; color: var(--dive-blue);
  font-weight: 600; margin-bottom: 20px;
}
.form-time svg { width: 14px; height: 14px; }
.field { margin-bottom: 20px; position: relative; }
.lab {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--text-primary); margin: 0 0 8px;
}
.lab-optional { font-weight: 400; color: var(--text-muted); font-size: 12px; margin-left: 4px; }
.ast { color: var(--coral-safety); font-weight: 700; margin-left: 3px; }
.inp {
  width: 100%; box-sizing: border-box;
  padding: 15px 16px; border: 1.5px solid var(--tropical-mist);
  border-radius: 10px; font-size: 16px; font-family: inherit;
  background: #fff; color: var(--text-primary);
  transition: all 0.15s;
}
.inp:focus {
  outline: none; border-color: var(--dive-blue);
  box-shadow: 0 0 0 3px rgba(0,119,182,0.15);
}
.inp.valid {
  border-color: var(--success-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A9D6E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  background-size: 18px; padding-right: 44px;
}
.inp.error { border-color: var(--coral-safety); }
.err-msg {
  color: var(--coral-safety); font-size: 13px; margin-top: 6px;
  font-weight: 500; display: flex; align-items: center; gap: 6px;
}
.field-help { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

.honeypot { position: absolute; left: -9999px; }

.radios-3, .radios-wrap { display: grid; gap: 8px; grid-template-columns: repeat(3, 1fr); }
.radios-wrap { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 420px) { .radios-wrap { grid-template-columns: repeat(4, 1fr); } }

.radio-opt {
  position: relative;
  padding: 14px 10px; border: 1.5px solid var(--tropical-mist);
  border-radius: 10px; text-align: center; font-size: 14px;
  color: var(--text-primary); background: #fff; cursor: pointer;
  font-weight: 500; transition: all 0.15s;
  user-select: none; line-height: 1.3;
  display: flex; align-items: center; justify-content: center;
  min-height: 48px;
}
.radio-opt:hover { border-color: var(--current-teal); background: rgba(202,240,248,0.4); }
.radio-opt input { position: absolute; opacity: 0; pointer-events: none; }
.radio-opt.sel {
  border-color: var(--dive-blue); background: rgba(0,119,182,0.08);
  color: var(--abyssal-navy); font-weight: 700;
  box-shadow: inset 0 0 0 1px var(--dive-blue);
}
.radio-opt:focus-within { outline: 2px solid var(--dive-blue); outline-offset: 2px; }

.more-toggle {
  background: none; border: none;
  color: var(--dive-blue); font-weight: 600; font-size: 14px;
  cursor: pointer; padding: 10px 0; font-family: inherit;
  display: flex; align-items: center; gap: 6px;
  margin: 0 auto 16px;
}
.more-toggle svg { transition: transform 0.3s; }
.more-toggle.open svg { transform: rotate(180deg); }
.more-fields { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.more-fields.open { max-height: 600px; }
.more-fields-inner { padding-top: 8px; }

.submit {
  width: 100%;
  background: linear-gradient(180deg, var(--dive-blue), var(--deep-ocean));
  color: #fff; border: none; padding: 18px;
  border-radius: 12px; font-size: 16px; font-weight: 700;
  letter-spacing: 0.03em; margin-top: 12px;
  box-shadow: 0 10px 24px rgba(0,119,182,0.4);
  cursor: pointer; font-family: inherit; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0,119,182,0.5);
}
.submit:active { transform: translateY(0); }
.submit:disabled { opacity: 0.85; cursor: not-allowed; }
.spinner {
  width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.privacy-note {
  font-size: 12px; color: var(--text-muted);
  text-align: center; margin-top: 16px; line-height: 1.55;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.privacy-note svg { width: 14px; height: 14px; flex-shrink: 0; }

.what-happens { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(144,224,239,0.5); }
.wh-title {
  font-size: 13px; font-weight: 700; color: var(--text-primary);
  text-transform: uppercase; letter-spacing: 0.1em;
  text-align: center; margin-bottom: 16px;
}
.wh-steps { display: flex; justify-content: space-between; gap: 8px; }
.wh-step { flex: 1; text-align: center; }
.wh-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--surface-foam); color: var(--dive-blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; margin: 0 auto 6px;
}
.wh-step-txt { font-size: 11px; color: var(--text-muted); line-height: 1.3; }

.success { text-align: center; padding: 20px 0; }
.success-icon-wrap { position: relative; width: 88px; height: 88px; margin: 0 auto 20px; }
.success-icon {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, var(--success-green), #0EB77D);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(10,157,110,0.35);
  animation: popIn 0.5s cubic-bezier(.2,.8,.2,1.4);
}
.success-ring {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 3px solid var(--success-green);
  animation: ring 1.4s ease-out;
}
@keyframes popIn { 0% { transform: scale(0.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes ring { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }
.success h2 { color: var(--success-green); margin-bottom: 12px; }
.success p { color: var(--text-primary); font-size: 15px; line-height: 1.6; margin-bottom: 10px; }
.success-meta {
  background: var(--surface-foam); border-radius: 12px;
  padding: 16px; margin-top: 20px;
  font-size: 13px; color: var(--text-primary);
  display: flex; align-items: center; gap: 10px; justify-content: center;
}

.tmi-sec { padding: 88px 24px; background: var(--bubble-white); }
.tmi-grid { display: grid; gap: 18px; max-width: 1000px; margin: 0 auto; }
@media (min-width: 768px) { .tmi-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.tmi-card {
  background: #fff; border: 1px solid rgba(144,224,239,0.5);
  border-radius: 16px; padding: 26px;
  box-shadow: var(--shadow-sm); transition: all 0.25s;
  display: flex; flex-direction: column; text-align: left;
}
.tmi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stars { color: #F4A024; font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.tmi-quote { font-size: 15px; color: var(--text-primary); line-height: 1.6; margin: 0 0 18px; flex: 1; }
.tmi-author { display: flex; align-items: center; gap: 12px; }
.tmi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--shallow-aqua), var(--dive-blue));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.tmi-name { font-size: 14px; color: var(--text-primary); font-weight: 700; margin-bottom: 2px; }
.tmi-location { font-size: 12px; color: var(--text-muted); }
.tmi-verified {
  font-size: 11px; color: var(--success-green); font-weight: 600;
  display: flex; align-items: center; gap: 4px; margin-top: 3px;
}
.tmi-verified svg { width: 12px; height: 12px; }

.faq-sec { padding: 88px 24px; background: var(--surface-foam); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff; border-radius: 12px;
  margin-bottom: 12px; overflow: hidden;
  border: 1px solid rgba(144,224,239,0.4);
  transition: box-shadow 0.2s;
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%; padding: 20px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 16px; color: var(--text-primary);
  user-select: none; line-height: 1.4;
  background: none; border: none; font-family: inherit; text-align: left;
}
.faq-q:hover { background: rgba(202,240,248,0.3); }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px; margin-left: 16px;
  transition: transform 0.3s;
  color: var(--dive-blue);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 15px; color: var(--text-muted); line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 22px; }

.mission { background: var(--sand-warm); padding: 80px 24px; position: relative; }
.mission-inner { max-width: 760px; margin: 0 auto; }
.mission-trans {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dive-blue); font-weight: 700; text-align: center; margin: 0 0 18px;
}
.mission h2 {
  font-size: clamp(28px, 4.5vw, 40px); color: var(--abyssal-navy);
  text-align: center; margin: 0 0 24px; font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.12;
}
.mission-body { font-size: 17px; color: var(--text-primary); line-height: 1.65; margin: 0 0 28px; text-align: center; }
.mission-bullets {
  background: rgba(255,255,255,0.6); border-radius: 16px;
  padding: 24px 28px; margin: 0 0 32px;
  border: 1px solid rgba(0,119,182,0.18);
  backdrop-filter: blur(6px);
}
.mission-bullets div {
  font-size: 15px; color: var(--text-primary);
  padding: 10px 0; display: flex; align-items: flex-start;
  gap: 14px; line-height: 1.5; font-weight: 500;
}
.mb-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--dive-blue); display: flex;
  align-items: center; justify-content: center; margin-top: 1px;
}
.mb-icon svg { width: 12px; height: 12px; color: #fff; }
.mission-closing { font-size: 15px; color: var(--text-muted); text-align: center; margin: 0 0 32px; font-style: italic; }
.coral-cta {
  display: block; width: 100%; max-width: 400px; margin: 0 auto;
  background: var(--coral-safety); color: #fff; border: none;
  padding: 18px; border-radius: 12px; font-size: 16px; font-weight: 700;
  letter-spacing: 0.02em; box-shadow: 0 10px 28px rgba(255,107,53,0.4);
  cursor: pointer; font-family: inherit; text-align: center;
  transition: all 0.25s;
}
.coral-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(255,107,53,0.5); background: #E85A26; }

.footer {
  background: var(--abyssal-navy); color: var(--tropical-mist);
  padding: 52px 24px 32px; text-align: center;
  font-size: 13px; line-height: 1.7;
}
.footer-logo-wrap { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 12px; }
.footer-logo { color: #fff; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; }
.footer-logo span { color: var(--reef-cyan); }
.footer-links { margin-top: 16px; }
.footer-links a { color: var(--reef-cyan); text-decoration: none; margin: 0 10px; transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid rgba(144,224,239,0.15);
  font-size: 11px; color: var(--tropical-mist); opacity: 0.7;
}

.modal-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(3,4,94,0.6);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  z-index: 200; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-backdrop.open { display: flex; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-wrap { position: relative; max-width: 500px; width: 100%; }
.modal {
  background: var(--bubble-white); border-radius: 20px;
  padding: 36px 30px; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  animation: slideUp 0.3s cubic-bezier(.2,.8,.2,1);
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal h3 {
  font-size: 24px; color: var(--abyssal-navy); margin: 0 0 6px;
  font-weight: 800; letter-spacing: -0.02em;
}
.modal-sub { font-size: 14px; color: var(--text-muted); margin: 0 0 26px; line-height: 1.5; }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(144,224,239,0.4); border: none;
  width: 34px; height: 34px; border-radius: 50%;
  cursor: pointer; font-size: 20px; color: var(--deep-ocean);
  display: flex; align-items: center; justify-content: center;
  font-family: inherit; transition: all 0.15s;
  z-index: 2;
}
.modal-close:hover { background: var(--tropical-mist); transform: rotate(90deg); }
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-opt {
  padding: 14px 16px; border: 1.5px solid var(--tropical-mist);
  border-radius: 10px; font-size: 14px; color: var(--text-primary);
  background: #fff; cursor: pointer; font-weight: 500;
  transition: all 0.15s; display: flex; align-items: center;
  gap: 12px; user-select: none; position: relative;
}
.checkbox-opt:hover { border-color: var(--current-teal); }
.checkbox-opt.sel { border-color: var(--dive-blue); background: rgba(0,119,182,0.08); font-weight: 600; }
.checkbox-opt input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox-box {
  width: 22px; height: 22px; border: 2px solid var(--tropical-mist);
  border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.checkbox-opt.sel .checkbox-box { background: var(--dive-blue); border-color: var(--dive-blue); }
.checkbox-opt.sel .checkbox-box::after {
  content: ""; width: 11px; height: 6px;
  border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}
textarea.inp { resize: vertical; min-height: 90px; font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================
   Sub-pages (privacy, terms, contact, diveshops)
   ========================================================== */
.legal-body { color: var(--text-primary); font-size: 16px; line-height: 1.7; text-align: left; }
.legal-body h3 { color: var(--deep-ocean); font-size: 19px; margin: 32px 0 10px; font-weight: 700; letter-spacing: -0.01em; }
.legal-body p, .legal-body ul { margin: 0 0 14px; }
.legal-body ul { padding-left: 22px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--dive-blue); text-decoration: underline; }
.legal-body a:hover { color: var(--deep-ocean); }

.contact-card {
  background: #fff; border-radius: 18px; padding: 40px 28px;
  box-shadow: 0 8px 32px rgba(2, 62, 138, 0.08);
  border: 1px solid var(--tropical-mist);
  margin: 28px 0 40px; text-align: center;
}
.contact-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(0,119,182,0.1); color: var(--dive-blue);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.contact-icon svg { width: 28px; height: 28px; }
.contact-label { color: var(--text-muted); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.contact-email { color: var(--dive-blue); font-size: 22px; font-weight: 700; text-decoration: none; display: inline-block; word-break: break-all; }
.contact-email:hover { color: var(--deep-ocean); text-decoration: underline; }
.contact-note { color: var(--text-muted); font-size: 14px; margin: 12px 0 18px; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 30px; text-align: left; }
.contact-block {
  background: #fff; border: 1px solid var(--tropical-mist); border-radius: 14px;
  padding: 22px; transition: transform 0.15s, box-shadow 0.15s;
}
.contact-block:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(2,62,138,0.08); }
.contact-block h3 { color: var(--deep-ocean); font-size: 16px; margin: 0 0 6px; font-weight: 700; }
.contact-block p { color: var(--text-muted); font-size: 14px; line-height: 1.55; margin: 0 0 12px; }
.contact-link { color: var(--dive-blue); font-weight: 600; font-size: 14px; text-decoration: none; }
.contact-link:hover { color: var(--deep-ocean); text-decoration: underline; }
