/* ============================================================
   Seavita — Minyak Ikan Hiu | Design System
   Mobile-first, satu file untuk semua halaman
   ============================================================ */

:root {
  --ink: #08243b;
  --ink-2: #0e3a5c;
  --body: #446073;
  --muted: #7690a1;
  --sea: #14a0b8;
  --sea-deep: #0a6c85;
  --sea-soft: #e4f5f8;
  --gold: #f0a92e;
  --gold-deep: #c9820f;
  --gold-soft: #fdf3e0;
  --wa: #1faa54;
  --bg: #f6fbfd;
  --surface: #ffffff;
  --line: #ddeaf1;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(8, 36, 59, .06);
  --shadow: 0 18px 40px -22px rgba(8, 36, 59, .35);
  --shadow-lg: 0 40px 80px -40px rgba(8, 36, 59, .45);
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --maxw: 1160px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.14;
  margin: 0 0 .55em;
  font-weight: 700;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(1.95rem, 7.2vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 4.9vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 3.1vw, 1.28rem); }
h4 { font-size: .95rem; font-family: var(--font-body); font-weight: 700; }
p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

a { color: var(--sea-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--sea); }
strong { color: var(--ink); font-weight: 700; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 999;
}
.skip-link:focus { left: 0; color: #fff; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 6px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: #3a2500;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  box-shadow: 0 12px 26px -14px rgba(201, 130, 15, .8);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -16px rgba(201, 130, 15, .9); }
.btn:active { transform: translateY(0); }
.btn-dark { --btn-bg: var(--ink); --btn-fg: #fff; box-shadow: 0 12px 26px -16px rgba(8,36,59,.8); }
.btn-dark:hover { color: #fff; box-shadow: 0 18px 34px -16px rgba(8,36,59,.85); }
.btn-wa { --btn-bg: var(--wa); --btn-fg: #fff; box-shadow: 0 12px 26px -16px rgba(31,170,84,.8); }
.btn-wa:hover { color: #fff; box-shadow: 0 18px 34px -16px rgba(31,170,84,.95); }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--line); box-shadow: none; }
.btn-ghost:hover { color: var(--ink); background: #fff; box-shadow: var(--shadow-sm); }
.btn-sm { padding: 10px 18px; font-size: .84rem; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246, 251, 253, .86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.nav {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; min-height: 70px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark { width: 36px; height: 36px; flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; letter-spacing: -.02em; }
.brand-tag { font-size: .58rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; color: var(--sea-deep); }

.nav-menu { display: none; }
.nav.is-open .nav-menu {
  display: block; position: absolute; left: -20px; right: -20px; top: 69px;
  background: #fff; padding: 10px 20px 24px;
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
}
.nav-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; }
.nav-list a {
  display: block; padding: 13px 4px;
  font-size: .9rem; font-weight: 600; color: var(--ink-2);
  border-bottom: 1px solid var(--line); border-radius: 0;
}
.nav-list a:hover { color: var(--sea-deep); background: none; }
.nav-list a[aria-current="page"] { color: var(--sea-deep); }
.nav-cta { width: 100%; margin-top: 18px; }

.nav-toggle {
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  display: grid; place-items: center; padding: 0; flex: 0 0 auto;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--ink);
  position: relative; transition: background .2s ease;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; border-radius: 2px;
  background: var(--ink); transition: transform .28s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 52px 0 64px;
  background:
    radial-gradient(1100px 520px at 88% -8%, #d8f1f6 0%, rgba(216,241,246,0) 62%),
    radial-gradient(760px 420px at -12% 108%, #fdeecd 0%, rgba(253,238,205,0) 60%),
    var(--bg);
}
.hero-grid { display: grid; gap: 40px; align-items: center; }

.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--sea-deep);
  background: #fff; border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px; box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.kicker::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; }
.hero h1 { margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--sea-deep); }
.lead { font-size: clamp(.95rem, 2.35vw, 1.1rem); color: var(--ink-2); max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 22px; }

.hero-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.hero-points li { position: relative; padding-left: 28px; font-size: .9rem; color: var(--ink-2); }
.hero-points li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 17px; height: 17px; border-radius: 50%;
  background: var(--sea-soft); box-shadow: inset 0 0 0 1.5px var(--sea);
}
.hero-points li::after {
  content: ""; position: absolute; left: 4px; top: 9px; width: 7px; height: 3.5px;
  border-left: 2px solid var(--sea-deep); border-bottom: 2px solid var(--sea-deep);
  transform: rotate(-45deg);
}

.hero-art { position: relative; }
.hero-art svg { width: 100%; height: auto; filter: drop-shadow(0 34px 54px rgba(8,36,59,.22)); }
.float { animation: float 7s ease-in-out infinite; }
.float.b { animation-duration: 9s; animation-delay: -3s; }
.float.c { animation-duration: 8s; animation-delay: -5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.hero-stats {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px;
  background: var(--line); border-radius: var(--radius); overflow: hidden;
  margin-top: 30px; border: 1px solid var(--line);
}
.hero-stats div { background: #fff; padding: 18px 16px; }
.hero-stats dt { font-family: var(--font-head); font-size: 1.45rem; font-weight: 800; color: var(--sea-deep); margin: 0; }
.hero-stats dd { margin: 2px 0 0; font-size: .76rem; color: var(--muted); line-height: 1.4; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--ink); color: #cfe4ee; padding: 20px 0; }
.trust-inner { display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; justify-content: center; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; font-size: .78rem; font-weight: 700; letter-spacing: .04em; color: #eaf6fb; }
.trust-item svg { width: 18px; height: 18px; flex: 0 0 auto; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section.tight { padding: 52px 0; }
.section.surface { background: var(--surface); }
.section.tint { background: linear-gradient(180deg, #fff 0%, var(--sea-soft) 100%); }
.section.dark { background: var(--ink); color: #bfd8e4; }
.section.dark h2, .section.dark h3, .section.dark h4, .section.dark strong { color: #fff; }
.section.dark p { color: #bfd8e4; }

.section-head { max-width: 690px; margin-bottom: 38px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { margin-inline: auto; }
.section-head .kicker { margin-bottom: 16px; }
.section-head p { font-size: .96rem; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Cards ---------- */
.card {
  position: relative;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #c6e3ec; }
.card.card-plain:hover { transform: none; box-shadow: var(--shadow-sm); }
.section.dark .card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.section.dark .card:hover { background: rgba(255,255,255,.09); border-color: var(--sea); }

.icon-badge {
  width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--sea-soft), #fff);
  border: 1px solid #cbe7ee; margin-bottom: 18px;
  transition: transform .25s ease;
}
.card:hover .icon-badge { transform: rotate(-6deg) scale(1.06); }
.icon-badge svg { width: 25px; height: 25px; }
.icon-badge.gold { background: linear-gradient(145deg, var(--gold-soft), #fff); border-color: #f3ddb0; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .88rem; }
.tag {
  display: inline-block; font-size: .62rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  color: var(--sea-deep); background: var(--sea-soft); border-radius: 999px; padding: 5px 10px; margin-bottom: 13px;
}

/* ---------- Split ---------- */
.split { display: grid; gap: 40px; align-items: center; }
.split-art {
  background: radial-gradient(120% 120% at 30% 10%, #e8f7fa 0%, #fdf4e4 100%);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow);
}
.split-art svg { width: 100%; height: auto; }
.figure-cap { text-align: center; font-size: .74rem; color: var(--muted); margin-top: 12px; letter-spacing: .03em; }

.spec-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 0; }
.spec-list li { display: grid; grid-template-columns: 68px 1fr; gap: 14px; align-items: start; padding: 15px 0; border-top: 1px solid var(--line); }
.spec-list li:last-child { border-bottom: 1px solid var(--line); }
.spec-num { font-family: var(--font-head); font-weight: 800; font-size: 1.18rem; color: var(--gold-deep); line-height: 1.25; }
.spec-txt b { display: block; color: var(--ink); font-size: .9rem; }
.spec-txt span { font-size: .82rem; color: var(--muted); }

/* ---------- Check list ---------- */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 32px; font-size: .9rem; color: var(--ink-2); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 7px;
  background: var(--gold-soft); border: 1px solid #f0d9ac;
}
.check-list li::after {
  content: ""; position: absolute; left: 6px; top: 9px; width: 7px; height: 3.5px;
  border-left: 2px solid var(--gold-deep); border-bottom: 2px solid var(--gold-deep); transform: rotate(-45deg);
}
.check-list li b { color: var(--ink); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 22px; list-style: none; margin: 0; padding: 0; }
.steps li {
  counter-increment: step; position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 24px 24px;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.steps li:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: -13px; left: 22px;
  font-family: var(--font-head); font-size: .74rem; font-weight: 800; letter-spacing: .1em;
  background: var(--gold); color: #3a2500; padding: 5px 12px; border-radius: 999px;
  box-shadow: 0 8px 18px -10px rgba(201,130,15,.9);
}
.steps h3 { font-size: 1.02rem; }
.steps p { font-size: .88rem; }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
table { border-collapse: collapse; width: 100%; min-width: 540px; font-size: .88rem; }
caption { text-align: left; padding: 14px 18px; color: var(--muted); font-size: .78rem; }
th, td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { background: var(--ink); color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .74rem; letter-spacing: .09em; text-transform: uppercase; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: #f5fbfd; }
td.yes { color: var(--sea-deep); font-weight: 700; }
td.no { color: var(--muted); }
th[scope="row"] { font-weight: 700; color: var(--ink); font-family: var(--font-body); }

/* ---------- Testimonials ---------- */
.t-card { display: flex; flex-direction: column; gap: 14px; }
.t-quote { font-size: .92rem; color: var(--ink-2); font-style: italic; font-family: var(--font-head); margin: 0; }
.t-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center; font-weight: 800; font-size: .88rem; color: #fff;
  background: linear-gradient(140deg, var(--sea), var(--sea-deep));
}
.avatar.g { background: linear-gradient(140deg, var(--gold), var(--gold-deep)); color: #3a2500; }
.t-person b { display: block; color: var(--ink); font-size: .88rem; }
.t-person span { font-size: .76rem; color: var(--muted); }
.stars { display: flex; gap: 3px; }
.stars svg { width: 15px; height: 15px; }
.quote-grid { display: grid; gap: 18px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }

/* ---------- Pricing ---------- */
.plan { position: relative; display: flex; flex-direction: column; padding: 30px 24px; }
.plan-featured { border-color: var(--gold); background: linear-gradient(180deg, #fffdf8 0%, #fff 100%); box-shadow: 0 26px 56px -30px rgba(201,130,15,.55); }
.plan-flag {
  position: absolute; top: -14px; right: 22px;
  background: var(--gold); color: #3a2500; font-size: .62rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px;
}
.plan-price { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--ink); line-height: 1.1; margin: 4px 0; }
.plan-old { color: var(--muted); text-decoration: line-through; font-size: .85rem; }
.plan-unit { font-size: .78rem; color: var(--muted); margin-bottom: 18px; }
.plan ul { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 9px; }
.plan ul li { position: relative; padding-left: 24px; font-size: .86rem; }
.plan ul li::before { content: "✓"; position: absolute; left: 0; top: -1px; font-weight: 800; color: var(--sea-deep); }
.plan .btn { margin-top: auto; }
.price-note { text-align: center; font-size: .76rem; color: var(--muted); margin-top: 22px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 4px; text-align: left;
  font-family: var(--font-body); font-size: .95rem; font-weight: 700; color: var(--ink);
}
.faq-q:hover { color: var(--sea-deep); }
.faq-icon {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  background: #fff; transition: transform .3s ease, background .3s ease, border-color .3s ease;
  position: relative;
}
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--sea-deep); border-radius: 2px; }
.faq-icon::before { width: 11px; height: 2px; }
.faq-icon::after { width: 2px; height: 11px; transition: transform .3s ease; }
.faq-q[aria-expanded="true"] .faq-icon { background: var(--sea-deep); border-color: var(--sea-deep); transform: rotate(90deg); }
.faq-q[aria-expanded="true"] .faq-icon::before, .faq-q[aria-expanded="true"] .faq-icon::after { background: #fff; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: scaleY(0); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .34s ease; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 4px 22px; margin: 0; font-size: .88rem; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--ink) 0%, var(--sea-deep) 62%, var(--sea) 100%);
  color: #e7f5fa; border-radius: var(--radius-lg); padding: 42px 24px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; width: 420px; height: 420px; right: -140px; top: -190px;
  border-radius: 50%; background: radial-gradient(circle, rgba(240,169,46,.45), rgba(240,169,46,0) 68%);
}
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { position: relative; max-width: 52ch; margin-inline: auto; }
.cta-band .kicker { position: relative; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; margin-bottom: 16px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; position: relative; }
.cta-band .btn-ghost { --btn-fg: #fff; border-color: rgba(255,255,255,.4); background: transparent; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.12); }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background: radial-gradient(900px 400px at 82% -20%, #d8f1f6 0%, rgba(216,241,246,0) 60%), var(--surface);
  padding: 56px 0 48px; border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 22ch; }
.page-hero .lead { max-width: 62ch; }
.crumbs { font-size: .74rem; color: var(--muted); margin-bottom: 20px; letter-spacing: .04em; }
.crumbs a { color: var(--muted); font-weight: 600; }
.crumbs a:hover { color: var(--sea-deep); }
.crumbs span { margin: 0 8px; }

/* ---------- Prose ---------- */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 1.9em; }
.prose h3 { margin-top: 1.5em; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  margin: 28px 0; padding: 22px 26px; border-left: 4px solid var(--gold);
  background: var(--gold-soft); border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-head); font-size: 1.02rem; font-style: italic; color: var(--ink);
}

/* ---------- Form ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px; box-shadow: var(--shadow);
}
.field { margin-bottom: 16px; }
label { display: block; font-size: .8rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; letter-spacing: .02em; }
input, select, textarea {
  width: 100%; font-family: var(--font-body); font-size: .92rem; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: #fbfeff;
  transition: border-color .2s ease, box-shadow .2s ease;
  appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%230a6c85' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--sea); box-shadow: 0 0 0 4px rgba(20,160,184,.14); background: #fff; }
textarea { min-height: 100px; resize: vertical; }
.field-row { display: grid; gap: 16px; }
.hint { font-size: .74rem; color: var(--muted); margin-top: 6px; }
.form-status {
  margin-top: 14px; padding: 12px 14px; border-radius: 12px; font-size: .85rem;
  background: var(--sea-soft); border: 1px solid #bfe3ec; color: var(--sea-deep); display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-error { background: #fdeceb; border-color: #f3c6c2; color: #a1372c; }

.contact-side { display: grid; gap: 14px; align-content: start; }
.info-line { display: flex; gap: 12px; align-items: flex-start; }
.info-line .icon-badge { width: 40px; height: 40px; margin: 0 0 12px; border-radius: 12px; flex: 0 0 auto; }
.info-line .icon-badge svg { width: 19px; height: 19px; }
.info-block { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.info-block:last-child { border-bottom: none; padding-bottom: 0; }
.info-block b { display: block; color: var(--ink); font-size: .88rem; margin-bottom: 3px; }
.info-block span { font-size: .82rem; color: var(--muted); display: block; }

.map-box {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #eef7fa;
  box-shadow: var(--shadow-sm);
}
.map-box svg { width: 100%; height: auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #a9c6d5; padding: 58px 0 0; }
.site-footer h4 { color: #fff; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; font-weight: 800; }
.site-footer a { color: #bfd8e4; font-size: .86rem; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 34px; padding-bottom: 40px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { font-size: .85rem; max-width: 42ch; margin-top: 14px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-social { display: flex; gap: 9px; margin-top: 16px; }
.footer-social a { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); }
.footer-social a:hover { background: var(--sea); border-color: var(--sea); }
.footer-social svg { width: 17px; height: 17px; }
.footer-note { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0 26px; font-size: .72rem; line-height: 1.6; color: #82a4b6; }
.footer-note b { color: #cfe4ee; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: space-between; margin-top: 12px; }

/* ---------- Disclaimer ---------- */
.disclaimer {
  background: var(--gold-soft); border: 1px solid #f2ddb2; border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 20px; font-size: .84rem; color: #6a4d13;
}
.disclaimer b { color: #4a3406; }

/* ---------- WA float ---------- */
.wa-float {
  position: fixed; right: 16px; bottom: 16px; z-index: 70;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--wa); color: #fff; font-weight: 700; font-size: .85rem;
  padding: 12px 16px; border-radius: 999px;
  box-shadow: 0 16px 34px -14px rgba(31,170,84,.85);
  transition: transform .22s ease, box-shadow .22s ease;
}
.wa-float:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 22px 40px -14px rgba(31,170,84,.95); }
.wa-float svg { width: 20px; height: 20px; flex: 0 0 auto; }
.wa-float span { display: none; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .float { animation: none; }
}

/* ============================================================
   Breakpoints
   ============================================================ */
@media (min-width: 620px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .wa-float span { display: inline; }
  .quote-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  body { font-size: 16px; }
  .section { padding: 96px 0; }
  .section.tight { padding: 68px 0; }
  .hero { padding: 80px 0 100px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 50px; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: .95fr 1.05fr; gap: 54px; }
  .split.flip > .split-art { order: 2; }
  .quote-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-band { padding: 60px 44px; }
  .footer-grid { grid-template-columns: 2.1fr 1fr 1fr 1.5fr; gap: 28px; }
  .form-row-3 { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { grid-template-columns: 1.4fr .9fr; gap: 30px; align-items: start; }

  /* desktop nav */
  .nav-toggle { display: none; }
  .nav-menu { display: flex; align-items: center; gap: 10px; }
  .nav-list { display: flex; flex-direction: row; gap: 4px; }
  .nav-list a { padding: 8px 14px; border-bottom: none; border-radius: 999px; font-size: .88rem; }
  .nav-list a:hover { background: #eaf5f9; }
  .nav-list a[aria-current="page"] { background: var(--sea-soft); color: var(--sea-deep); }
  .nav-cta { width: auto; margin: 0 0 0 8px; }
}

@media (min-width: 1240px) { .container { padding-inline: 28px; } }