:root {
  --void: #03080f;
  --deep: #070e1a;
  --ocean-1: #0a1628;
  --ocean-2: #0d1f3c;
  --ocean-3: #112850;
  --gold-0: #fff4c2;
  --gold-1: #ffd966;
  --gold-2: #f5a623;
  --gold-3: #e07b00;
  --coral-1: #ff6b47;
  --coral-2: #ff4d2e;
  --teal-1: #00d4c8;
  --teal-2: #00a89e;
  --white: #ffffff;
  --white-70: rgba(255,255,255,0.70);
  --white-40: rgba(255,255,255,0.40);
  --white-15: rgba(255,255,255,0.15);
  --white-08: rgba(255,255,255,0.08);
  --white-04: rgba(255,255,255,0.04);
  --r: 10px;
  --r2: 18px;
  --r3: 26px;
  --ff-h: 'Playfair Display', serif;
  --ff-b: 'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-b);
  background: var(--void);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── ORBS / ATMOSPHERE ── */
.atmo {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: drift 20s ease-in-out infinite alternate;
}
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(245,166,35,0.20) 0%, transparent 70%); top: -150px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,212,200,0.12) 0%, transparent 70%); bottom: 100px; left: -100px; animation-delay: -7s; }
.orb-3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,107,71,0.12) 0%, transparent 70%); top: 40%; left: 40%; animation-delay: -12s; }
@keyframes drift { from { transform: translate(0,0) scale(1); } to { transform: translate(40px, 30px) scale(1.08); } }

/* Grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 1;
}

/* ── TICKER ── */
.ticker {
  position: relative; z-index: 100;
  background: linear-gradient(90deg, var(--gold-3), var(--gold-2), var(--coral-1), var(--gold-2), var(--gold-3));
  background-size: 200%;
  animation: sheen 6s linear infinite;
  overflow: hidden; height: 30px;
  display: flex; align-items: center;
}
@keyframes sheen { from{background-position:0%} to{background-position:200%} }
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  padding: 0 24px;
  font-size: 10.5px; font-weight: 500; color: var(--void);
  text-transform: uppercase; letter-spacing: 0.14em;
  display: flex; align-items: center; gap: 16px;
}
.ticker-track span::after { content: '◆'; opacity: 0.4; margin-left: 16px; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(3,8,15,0.80);
  backdrop-filter: blur(32px);
  border-bottom: 1px solid var(--white-08);
}
.logo-mark { display: flex; align-items: baseline; gap: 3px; text-decoration: none; }
.logo-goa { font-family: var(--ff-h); font-size: 26px; font-weight: 900; font-style: italic; background: linear-gradient(135deg, var(--gold-1), var(--gold-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.logo-taxis { font-family: var(--ff-h); font-size: 26px; font-weight: 400; color: var(--white-70); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 12px; font-weight: 500; color: var(--white-40); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-1); }
.nav-cta { display: flex; align-items: center; gap: 6px; background: linear-gradient(135deg, var(--gold-2), var(--gold-3)); color: var(--void); font-family: var(--ff-b); font-size: 12px; font-weight: 700; padding: 8px 20px; border-radius: 99px; text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.2s; box-shadow: 0 0 24px rgba(245,166,35,0.3); }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 32px rgba(245,166,35,0.5); }
@media (max-width: 600px) { .nav-links { display: none; } }

/* ── HERO ── */
.section-anchor { display: block; height: 88px; margin-top: -88px; visibility: hidden; }
.hero {
  position: relative; z-index: 10;
  padding: 90px 5% 80px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; color: var(--gold-2);
  text-transform: uppercase; letter-spacing: 0.20em;
  margin-bottom: 28px;
}
.hero-line { width: 32px; height: 1px; background: var(--gold-2); }
.hero h1 {
  font-family: var(--ff-h);
  font-size: clamp(52px, 10vw, 100px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero h1 .l1 { color: var(--white); }
.hero h1 .l2 { font-style: italic; background: linear-gradient(135deg, var(--gold-0) 0%, var(--gold-1) 35%, var(--gold-2) 65%, var(--coral-1) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; }
.hero-sub { font-size: 15px; font-weight: 300; color: var(--white-40); max-width: 460px; margin: 0 auto 36px; line-height: 1.8; letter-spacing: 0.01em; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 40px; }
.hero-pill { display: flex; align-items: center; gap: 6px; background: var(--white-08); backdrop-filter: blur(8px); border: 1px solid var(--white-15); border-radius: 99px; padding: 5px 14px; font-size: 11.5px; font-weight: 400; color: var(--white-70); transition: all 0.2s; }
.hero-pill:hover { border-color: var(--gold-2); color: var(--gold-1); }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--gold-2), var(--coral-1)); color: var(--void); font-family: var(--ff-b); font-size: 14px; font-weight: 700; padding: 14px 32px; border-radius: 99px; text-decoration: none; letter-spacing: 0.03em; transition: all 0.25s; box-shadow: 0 6px 32px rgba(245,166,35,0.35); }
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(245,166,35,0.5); }
.btn-hero-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white-70); font-family: var(--ff-b); font-size: 14px; font-weight: 400; padding: 13px 28px; border-radius: 99px; border: 1px solid var(--white-15); text-decoration: none; letter-spacing: 0.02em; transition: all 0.2s; }
.btn-hero-ghost:hover { border-color: var(--gold-1); color: var(--gold-1); background: rgba(245,166,35,0.06); }
.scroll-bob { animation: bob 2.2s ease-in-out infinite; display: inline-block; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ── DIVIDERS ── */
.wave-divider { position: relative; z-index: 5; margin-top: -2px; line-height: 0; }
.wave-divider svg { display: block; width: 100%; }
.wave-up { position: relative; z-index: 5; margin-bottom: -2px; line-height: 0; background: #060d1c; }
.wave-up svg { display: block; width: 100%; }
.wave-contact-in { position: relative; z-index: 5; line-height: 0; margin-top: -2px; background: var(--void); }
.wave-contact-in svg { display: block; width: 100%; }

/* ═══════════════════════════════════
   CALCULATOR ZONE
═══════════════════════════════════ */
.calc-zone {
  position: relative; z-index: 10;
  background: #060d1c;
  padding: 60px 5% 80px;
}
.calc-zone::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(0,212,200,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 5% 90%, rgba(245,166,35,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.calc-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }

.zone-header { text-align: center; margin-bottom: 44px; }
.zone-label { display: inline-block; font-size: 10px; font-weight: 600; color: var(--teal-1); text-transform: uppercase; letter-spacing: 0.20em; margin-bottom: 14px; }
.zone-title { font-family: var(--ff-h); font-size: clamp(30px, 5vw, 50px); font-weight: 700; color: var(--white); line-height: 1.05; letter-spacing: -0.02em; }
.zone-title em { font-style: italic; background: linear-gradient(135deg, var(--gold-1), var(--coral-1)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* TABS */
.tab-shell {
  display: flex; justify-content: center; gap: 4px; margin-bottom: 32px;
  background: var(--white-04); border: 1px solid var(--white-08);
  border-radius: 99px; padding: 5px;
  flex-wrap: wrap;
}
@media (max-width: 640px) { .tab-shell { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; border-radius: 20px; } .tab-shell::-webkit-scrollbar { display: none; } }
.tb { flex-shrink: 0; display: flex; align-items: center; gap: 6px; padding: 9px 20px; border-radius: 99px; background: transparent; border: none; color: var(--white-40); font-family: var(--ff-b); font-size: 12.5px; font-weight: 500; cursor: pointer; white-space: nowrap; transition: all 0.25s; letter-spacing: 0.02em; }
.tb:hover { color: var(--white-70); background: var(--white-08); }
.tb.on { background: linear-gradient(135deg, var(--gold-2), var(--coral-1)); color: var(--void); font-weight: 700; box-shadow: 0 2px 20px rgba(245,166,35,0.4); }

/* CALC CARD */
.calc-card { background: var(--white-04); backdrop-filter: blur(24px); border: 1px solid var(--white-08); border-radius: var(--r3); overflow: hidden; }
.calc-card-stripe { height: 3px; background: linear-gradient(90deg, var(--gold-2), var(--coral-1), var(--teal-1)); }
.calc-card-body { padding: 36px; }
@media (max-width: 560px) { .calc-card-body { padding: 24px 18px; } }

.calc-header { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.calc-icon-ring { width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(255,107,71,0.10)); border: 1px solid var(--white-15); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.calc-title { font-family: var(--ff-h); font-size: 24px; font-weight: 700; color: var(--white); }
.calc-subtitle { font-size: 12px; color: var(--white-40); margin-top: 2px; }

/* FORM */
.fg { display: flex; flex-direction: column; gap: 7px; }
label { font-size: 10px; font-weight: 500; color: var(--white-40); text-transform: uppercase; letter-spacing: 0.10em; }
.fi { background: rgba(255,255,255,0.05); border: 1px solid var(--white-08); border-radius: var(--r); padding: 11px 15px; color: var(--white); font-family: var(--ff-b); font-size: 13.5px; font-weight: 400; width: 100%; outline: none; transition: border-color 0.2s, background 0.2s; -webkit-appearance: none; }
.fi::placeholder { color: rgba(255,255,255,0.18); }
.fi:focus { border-color: var(--gold-2); background: rgba(245,166,35,0.06); }
.fi option { background: var(--deep); color: var(--white); }
select.fi { cursor: pointer; }
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.g3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 680px) { .g3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .g2, .g3 { grid-template-columns: 1fr; } }

/* AUTOCOMPLETE */
.ac { position: relative; }
.acd { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: var(--ocean-2); border: 1px solid var(--white-15); border-radius: var(--r); max-height: 200px; overflow-y: auto; z-index: 50; display: none; box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.acd.on { display: block; }
.aci { padding: 11px 15px; font-size: 13px; color: var(--white-70); cursor: pointer; transition: background 0.1s; }
.aci:hover { background: rgba(245,166,35,0.12); color: var(--gold-1); }

/* TOGGLE */
.tog-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--white-04); border: 1px solid var(--white-08); border-radius: var(--r); padding: 12px 15px; margin-bottom: 14px; }
.tog-lbl { font-size: 13px; font-weight: 400; color: var(--white-70); line-height: 1.4; }
.tog-lbl small { display: block; font-size: 11px; color: var(--white-40); margin-top: 2px; }
.tog { position: relative; display: inline-block; width: 42px; height: 22px; flex-shrink: 0; }
.tog input { opacity: 0; width: 0; height: 0; }
.tog-sl { position: absolute; inset: 0; background: var(--white-15); border-radius: 99px; cursor: pointer; transition: background 0.2s; }
.tog-sl::before { content: ''; position: absolute; width: 16px; height: 16px; left: 3px; top: 3px; background: var(--white); border-radius: 50%; transition: transform 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.tog input:checked + .tog-sl { background: linear-gradient(135deg, var(--gold-2), var(--coral-1)); }
.tog input:checked + .tog-sl::before { transform: translateX(20px); }
.tog-locked .tog-sl { opacity: 0.5; cursor: not-allowed; }
.tog-locked .tog-lbl { color: var(--gold-1); }
.tog-locked .tog-lbl small { color: rgba(245,166,35,0.6); }

/* PRICE OUTPUT */
.po-wrap { position: relative; }
.po { background: var(--white-04); border: 1px solid var(--white-08); border-radius: var(--r); padding: 13px 16px; font-family: var(--ff-h); font-size: 24px; font-weight: 700; color: rgba(255,255,255,0.2); min-height: 52px; transition: color 0.2s, border-color 0.2s; }
.po.lit { background: linear-gradient(135deg, rgba(245,166,35,0.08), rgba(255,107,71,0.06)); border-color: rgba(245,166,35,0.3); color: var(--gold-1); }
.po-spin { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; border: 2px solid var(--white-15); border-top-color: var(--gold-2); border-radius: 50%; display: none; animation: spin 0.7s linear infinite; }
.po-spin.on { display: block; }
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }
.po-note { font-size: 11px; color: var(--white-40); margin-top: 5px; }

/* SURCHARGE */
.surcharge-badge { display: none; align-items: center; gap: 10px; background: rgba(245,166,35,0.08); border: 1px solid rgba(245,166,35,0.25); border-radius: var(--r); padding: 11px 15px; font-size: 13px; font-weight: 500; color: var(--gold-1); width: 100%; min-height: 52px; }
.surcharge-badge.show { display: flex; }
.sc-time-note { font-size: 11px; color: rgba(245,166,35,0.5); margin-top: 4px; }

/* RESULT PANEL */
.rp { background: var(--white-04); border: 1px solid var(--white-08); border-radius: var(--r2); padding: 20px 22px; margin: 16px 0; display: none; }
.rp.show { display: block; animation: fadeUp 0.35s ease; }
@keyframes fadeUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
.rr { display: flex; justify-content: space-between; align-items: baseline; padding: 7px 0; }
.rl { font-size: 11px; color: var(--white-40); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.rv { font-size: 13.5px; color: var(--white-70); font-weight: 400; text-align: right; }
.rv.big { font-family: var(--ff-h); font-size: 26px; font-weight: 700; background: linear-gradient(135deg, var(--gold-1), var(--coral-1)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.rv-tag { background: rgba(0,212,200,0.10); border: 1px solid rgba(0,212,200,0.22); border-radius: 99px; padding: 2px 10px; font-size: 11.5px; color: var(--teal-1); font-weight: 500; }
.rdiv { height: 1px; background: var(--white-08); margin: 8px 0; }
.rnote { font-size: 11.5px; color: var(--white-40); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--white-08); line-height: 1.7; }

/* STATUS */
.st { font-size: 13px; border-radius: var(--r); }
.st.ok  { padding: 11px 15px; background: rgba(0,212,200,0.08); color: var(--teal-1); border: 1px solid rgba(0,212,200,0.22); }
.st.err { padding: 11px 15px; background: rgba(255,77,46,0.10); color: #ff8c72; border: 1px solid rgba(255,77,46,0.25); }
.st.info{ padding: 11px 15px; background: rgba(245,166,35,0.08); color: var(--gold-1); border: 1px solid rgba(245,166,35,0.22); }

/* CHIPS */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip { display: flex; align-items: center; gap: 6px; background: rgba(0,212,200,0.07); border: 1px solid rgba(0,212,200,0.18); border-radius: 99px; padding: 4px 12px; font-size: 11.5px; color: var(--teal-1); font-weight: 500; }
.chip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal-1); flex-shrink: 0; }

/* DEPOSIT */
.deposit-badge { display: flex; align-items: center; gap: 8px; background: var(--white-04); border: 1px solid var(--white-08); border-radius: var(--r); padding: 11px 15px; font-size: 13px; color: var(--white-40); width: 100%; min-height: 52px; }
.deposit-badge.hidden { display: none; }
.dep-amt { color: var(--teal-1); font-weight: 600; }
.dep-note { font-size: 11px; color: var(--white-40); }

/* BUTTONS */
.g2-btn { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
@media (max-width: 480px) { .g2-btn { grid-template-columns: 1fr; } }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 24px; border-radius: 99px; font-family: var(--ff-b); font-size: 13.5px; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; letter-spacing: 0.03em; text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--gold-2), var(--coral-1)); color: var(--void); box-shadow: 0 4px 20px rgba(245,166,35,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(245,166,35,0.5); }
.btn-wa { background: var(--white-08); color: var(--white-70); border: 1px solid var(--white-15); }
.btn-wa:hover { background: var(--white-15); }

/* PKG SPINNER */
.pkg-select-wrap { position: relative; }
.pkg-loading { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; border: 2px solid var(--white-08); border-top-color: var(--gold-2); border-radius: 50%; display: none; animation: spin 0.7s linear infinite; }
.pkg-loading.on { display: block; }

/* CRUISE */
.cruise-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 22px; }
@media (max-width: 600px) { .cruise-grid { grid-template-columns: repeat(2,1fr); } }
.cruise-card { background: var(--white-04); border: 1px solid var(--white-08); border-radius: var(--r2); padding: 18px 14px; cursor: pointer; text-align: center; transition: all 0.22s; user-select: none; }
.cruise-card:hover { border-color: rgba(245,166,35,0.3); background: rgba(245,166,35,0.06); }
.cruise-card.selected { border-color: var(--gold-2); background: rgba(245,166,35,0.10); box-shadow: 0 0 24px rgba(245,166,35,0.15); }
.ct-icon { font-size: 28px; margin-bottom: 8px; }
.ct-name { font-size: 11.5px; font-weight: 600; color: var(--white-70); margin-bottom: 5px; letter-spacing: 0.02em; }
.ct-price { font-size: 11.5px; color: var(--gold-2); font-weight: 500; }
.ct-dur { font-size: 10px; color: var(--white-40); margin-top: 3px; }
.cruise-inclusions { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.incl-tag { background: rgba(0,212,200,0.07); border: 1px solid rgba(0,212,200,0.18); color: var(--teal-1); border-radius: 99px; padding: 4px 12px; font-size: 11px; font-weight: 500; }
.pax-stepper { display: flex; align-items: center; gap: 10px; background: var(--white-04); border: 1px solid var(--white-08); border-radius: var(--r); padding: 8px 14px; height: 46px; }
.pax-stepper button { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--white-15); background: var(--white-08); color: var(--white); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.pax-stepper button:hover { background: rgba(245,166,35,0.2); border-color: var(--gold-2); }
.pax-val { font-family: var(--ff-h); font-size: 20px; font-weight: 700; color: var(--white); min-width: 26px; text-align: center; }
.addons-check-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.addon-row { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: var(--white-04); border: 1px solid var(--white-08); border-radius: var(--r); font-size: 13px; color: var(--white-70); cursor: pointer; transition: background 0.15s; }
.addon-row:hover { background: rgba(245,166,35,0.06); }
.addon-row input[type=checkbox] { width: 15px; height: 15px; accent-color: var(--gold-2); cursor: pointer; }
.addon-price { margin-left: auto; font-weight: 600; font-size: 13px; color: var(--gold-2); }
.cruise-note { background: rgba(245,166,35,0.06); border: 1px solid rgba(245,166,35,0.20); border-radius: var(--r); padding: 11px 15px; font-size: 13px; color: var(--gold-1); margin-bottom: 14px; line-height: 1.6; display: none; }
.cr-empty { text-align: center; padding: 48px 20px; color: var(--white-40); }
.cr-empty .cr-big { font-size: 50px; margin-bottom: 14px; }
.cr-empty p { font-size: 14px; line-height: 1.7; }

/* TAB CONTENT */
.tc { display: none; }
.tc.on { display: block; animation: fadeUp 0.35s ease; }

/* ══════════════════════
   ABOUT
══════════════════════ */
.about-section { position: relative; z-index: 10; background: var(--void); padding: 80px 5% 60px; }
.section-label { font-size: 10px; font-weight: 600; color: var(--gold-2); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 14px; }
.section-title { font-family: var(--ff-h); font-size: clamp(36px, 6vw, 58px); font-weight: 900; color: var(--white); line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 48px; }
.section-title em { font-style: italic; background: linear-gradient(135deg, var(--gold-1), var(--coral-1)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 56px; }
@media (max-width: 600px) { .stats-band { grid-template-columns: repeat(2,1fr); } }
.stat-tile { background: var(--white-04); border: 1px solid var(--white-08); border-radius: var(--r2); padding: 24px 16px; text-align: center; transition: all 0.2s; }
.stat-tile:hover { border-color: var(--gold-2); background: rgba(245,166,35,0.06); }
.stat-n { font-family: var(--ff-h); font-size: 40px; font-weight: 700; background: linear-gradient(135deg, var(--gold-1), var(--coral-1)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: 6px; }
.stat-l { font-size: 11px; color: var(--white-40); text-transform: uppercase; letter-spacing: 0.08em; }
.story-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 56px; align-items: start; }
@media (max-width: 680px) { .story-layout { grid-template-columns: 1fr; } }
.story-body p { font-size: 14.5px; color: var(--white-40); line-height: 1.85; margin-bottom: 14px; font-weight: 300; }
.story-body p:last-child { margin-bottom: 0; }
.owner-tile { background: linear-gradient(135deg, var(--ocean-2), var(--ocean-3)); border: 1px solid var(--white-15); border-radius: var(--r3); padding: 28px; position: relative; overflow: hidden; }
.owner-tile::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 90% 0%, rgba(245,166,35,0.10) 0%, transparent 60%); pointer-events: none; }
.owner-inner { position: relative; z-index: 1; }
.owner-top { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.owner-avatar { width: 50px; height: 50px; border-radius: 50%; background: rgba(245,166,35,0.12); border: 2px solid var(--gold-2); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.owner-name { font-family: var(--ff-h); font-size: 19px; font-weight: 700; color: var(--white); }
.owner-role { font-size: 11.5px; color: var(--white-40); margin-top: 2px; letter-spacing: 0.04em; }
.owner-div { height: 1px; background: var(--white-08); margin-bottom: 18px; }
.owner-row { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--white-40); margin-bottom: 11px; }
.owner-row:last-child { margin-bottom: 0; }
.owner-row-icon { font-size: 14px; width: 20px; text-align: center; flex-shrink: 0; }
.owner-row a { color: var(--gold-1); text-decoration: none; }
.owner-row a:hover { text-decoration: underline; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 48px; }
@media (max-width: 640px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
.svc-tile { border: 1px solid var(--white-08); border-radius: var(--r2); padding: 22px 18px; background: var(--white-04); transition: all 0.2s; }
.svc-tile:hover { border-color: var(--gold-2); background: rgba(245,166,35,0.06); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.svc-e { font-size: 24px; margin-bottom: 12px; }
.svc-n { font-family: var(--ff-h); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.svc-d { font-size: 12px; color: var(--white-40); line-height: 1.65; }
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-tile { display: flex; gap: 14px; background: var(--white-04); border: 1px solid var(--white-08); border-radius: var(--r2); padding: 18px; transition: border-color 0.2s; }
.why-tile:hover { border-color: var(--teal-1); }
.why-icon { width: 34px; height: 34px; flex-shrink: 0; background: rgba(0,212,200,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.why-t { font-family: var(--ff-h); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-d { font-size: 11.5px; color: var(--white-40); line-height: 1.6; }
.sub-heading { font-family: var(--ff-h); font-size: clamp(22px, 3.5vw, 32px); font-weight: 700; color: var(--white); letter-spacing: -0.02em; margin-bottom: 20px; margin-top: 48px; }
.sub-heading em { font-style: italic; color: var(--teal-1); }

/* ══════════════════════
   CONTACT
══════════════════════ */
.contact-section { position: relative; z-index: 10; background: var(--ocean-1); padding: 80px 5% 80px; }
.contact-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(0,212,200,0.06) 0%, transparent 60%); pointer-events: none; }
.contact-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.contact-title { font-family: var(--ff-h); font-size: clamp(36px, 6vw, 56px); font-weight: 900; color: var(--white); line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 48px; }
.contact-title em { font-style: italic; color: var(--teal-1); }
.contact-label { font-size: 10px; font-weight: 600; color: var(--teal-1); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 14px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 680px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { background: var(--white-04); border: 1px solid var(--white-08); border-radius: var(--r3); padding: 32px; }
.ci-title { font-family: var(--ff-h); font-size: 21px; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.ci-item:last-of-type { margin-bottom: 0; }
.ci-ic { width: 36px; height: 36px; border-radius: 10px; background: rgba(245,166,35,0.10); border: 1px solid rgba(245,166,35,0.20); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.ci-lbl { font-size: 10px; font-weight: 600; color: var(--white-40); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 3px; }
.ci-val { font-size: 13.5px; color: var(--white-70); }
.ci-val a { color: var(--gold-1); text-decoration: none; }
.ci-val a:hover { text-decoration: underline; }
.ci-sub { font-size: 11px; color: var(--white-40); margin-top: 2px; }
.wa-big-btn { display: flex; align-items: center; justify-content: center; gap: 10px; background: #25D366; color: #fff; font-family: var(--ff-b); font-size: 14px; font-weight: 600; padding: 13px 24px; border-radius: 99px; text-decoration: none; margin-top: 24px; transition: all 0.2s; }
.wa-big-btn:hover { background: #1ea855; transform: translateY(-2px); }
.contact-form { background: var(--white-04); border: 1px solid var(--white-08); border-radius: var(--r3); padding: 32px; }
.form-title { font-family: var(--ff-h); font-size: 21px; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.contact-section .fi { background: var(--white-04); border-color: var(--white-08); color: var(--white); }
.contact-section .fi:focus { border-color: var(--teal-1); }
.contact-section label { color: var(--white-40); }
.form-st { font-size: 13px; border-radius: var(--r); margin-top: 12px; }
.form-st.ok  { padding: 11px 15px; background: rgba(0,212,200,0.08); color: var(--teal-1); border: 1px solid rgba(0,212,200,0.22); display: block; }
.form-st.err { padding: 11px 15px; background: rgba(255,77,46,0.10); color: #ff8c72; border: 1px solid rgba(255,77,46,0.25); display: block; }
.form-st.inf { padding: 11px 15px; background: rgba(245,166,35,0.08); color: var(--gold-1); border: 1px solid rgba(245,166,35,0.22); display: block; }
.btn-full { width: 100%; margin-top: 4px; }

/* MODAL */
.modal-ov { position: fixed; inset: 0; background: rgba(3,8,15,0.90); backdrop-filter: blur(20px); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-ov.on { display: flex; }
.modal-box { background: var(--ocean-2); border: 1px solid var(--white-15); border-radius: var(--r3); padding: 36px; max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 24px 80px rgba(0,0,0,0.6); animation: fadeUp 0.3s ease; }
.modal-stripe { height: 3px; margin: -36px -36px 28px; border-radius: var(--r3) var(--r3) 0 0; background: linear-gradient(90deg, var(--gold-2), var(--coral-1), var(--teal-1)); }
.modal-close { position: absolute; top: 16px; right: 18px; background: var(--white-08); border: 1px solid var(--white-15); color: var(--white-40); width: 30px; height: 30px; border-radius: 50%; font-size: 13px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.15s; }
.modal-close:hover { background: rgba(245,166,35,0.2); color: var(--gold-1); }
.modal-hdr h3 { font-family: var(--ff-h); font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.modal-hdr p { font-size: 13px; color: var(--white-40); margin-bottom: 20px; }
.modal-hdr a { color: var(--gold-1); text-decoration: none; }
.modal-prefill { background: rgba(245,166,35,0.06); border: 1px solid rgba(245,166,35,0.18); border-radius: var(--r); padding: 13px 15px; margin-bottom: 18px; display: none; }
.modal-prefill.show { display: block; }
.modal-prefill-inner { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 13px; color: var(--white-40); }
.modal-prefill-inner span b { color: var(--white-70); }
.modal-box .fi { background: var(--white-04); border-color: var(--white-08); color: var(--white); }
.modal-box .fi:focus { border-color: var(--gold-2); }
.modal-box label { color: var(--white-40); }

/* COOKIE */
.cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(7,14,26,0.97); backdrop-filter: blur(16px); border-top: 1px solid var(--white-08); z-index: 9999; padding: 14px 5%; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cookie-bar.hidden { display: none; }
.cookie-text { font-size: 12px; color: var(--white-40); max-width: 680px; line-height: 1.6; }
.cookie-text a { color: var(--gold-1); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn { font-family: var(--ff-b); font-size: 12px; font-weight: 600; padding: 8px 18px; border-radius: 99px; border: none; cursor: pointer; transition: background 0.15s; }
.cookie-accept { background: linear-gradient(135deg, var(--gold-2), var(--coral-1)); color: var(--void); }
.cookie-decline { background: var(--white-08); color: var(--white-40); border: 1px solid var(--white-15); }

/* FOOTER */
footer { position: relative; z-index: 10; background: #02050a; border-top: 1px solid var(--white-04); padding: 28px 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.f-logo { font-family: var(--ff-h); font-size: 22px; font-weight: 700; }
.f-logo .cor { font-style: italic; background: linear-gradient(135deg, var(--gold-1), var(--coral-1)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.f-logo .wt { color: var(--white-40); }
.flinks { display: flex; gap: 24px; flex-wrap: wrap; }
.flinks a { font-size: 11.5px; color: var(--white-40); text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em; transition: color 0.15s; }
.flinks a:hover { color: var(--gold-1); }