:root{
  --brand: #012C32;
  --brand-2:#003035;
  --soft: rgba(1,44,50,.08);
  --text: #0d1213;
  --muted:#5c6b6e;
  --white:#ffffff;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(0,0,0,.14);
  --shadow2: 0 10px 24px rgba(0,0,0,.10);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fbfcfc;
}

.container{ width:min(1120px, 92%); margin:0 auto; }

.section{ padding: 86px 0; position:relative; }
.section--soft{ background: linear-gradient(180deg, var(--soft), transparent); }
.section__header{ margin-bottom: 28px; }
.section__header h2{
  margin:0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 40px);
}
.section__header p{ margin:0; color:var(--muted); }

.topbar{
  position: sticky; top:0; z-index: 50;
  background: #003035;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  color:white;
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 5px 0;
  gap: 16px;
}

.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; color:inherit; }
/* .brand__logo{ width:42px; height:42px; object-fit:contain; } */
.brand__logo{ width:200px; height:70px; object-fit:cover; }
.brand__name{ font-weight:700; letter-spacing:.2px; }

.nav{ display:flex; gap:18px; align-items:center; }
.nav a{
  text-decoration:none; color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.nav a:hover{ background: var(--soft); color: white; }

.burger{
  display:none;
  width:44px; height:44px;
  border:1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow2);
}
.burger span{ display:block; height:2px; margin:7px 10px; background: var(--brand); border-radius:2px; }

.hero{ padding: 0; min-height: calc(100vh - 74px); display:flex; }
.hero__media{ position:absolute; inset:0; overflow:hidden; }
.hero__video{
  width:100%; height:100%;
  object-fit:cover;
  transform: scale(1.03);
  filter: saturate(1.05);
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(800px 380px at 15% 30%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(120deg, rgba(1,44,50,.80), rgba(1,44,50,.55));
}
.hero__content{
  position:relative;
  padding: 110px 0 86px;
  color:#fff;
}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(0,0,0,.12);
  font-size: 13px;
}
.hero__title{
  margin: 16px 0 10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1.02;
}
.hero__subtitle{
  margin: 0 0 22px;
  max-width: 58ch;
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height: 1.6;
}
.accent{ color: #e9fbff; text-decoration: underline; text-underline-offset: 10px; text-decoration-thickness: 3px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration:none;
  font-weight: 600;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  background: #fff;
  color: var(--brand);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}
.btn--primary:hover{ transform: translateY(-1px); box-shadow: 0 18px 46px rgba(0,0,0,.28); }
.btn--ghost{
  background: rgba(255,255,255,.08);
  color:#fff;
  border-color: rgba(255,255,255,.25);
}
.btn--ghost:hover{ background: rgba(255,255,255,.14); transform: translateY(-1px); }

.hero__cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 10px; }

.hero__stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  max-width: 760px;
}
.stat{
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.12);
}
.stat__num{ font-weight: 800; font-size: 18px; }
.stat__label{ color: rgba(255,255,255,.78); font-size: 13px; margin-top: 4px; }

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

.card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.card h3{ margin:0 0 10px; }
.muted{ color: var(--muted); }
.tiny{ font-size: 12px; }

.checklist{ list-style:none; padding:0; margin: 12px 0 0; display:grid; gap: 8px; }
.checklist li{
  position:relative; padding-left: 26px; color: rgba(0,0,0,.72);
}
.checklist li::before{
  content:"";
  width: 16px; height: 16px;
  border-radius: 6px;
  background: var(--soft);
  border: 1px solid rgba(1,44,50,.25);
  position:absolute; left:0; top:2px;
}
.checklist li::after{
  content:"";
  position:absolute; left:6px; top:7px;
  width: 6px; height: 3px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

.price{
  position:relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow2);
}
.price__top h3{ margin: 0; }
.price__tag{ margin: 6px 0 0; color: var(--muted); }
.price__amount{
  margin: 16px 0 12px;
  font-size: 34px;
  font-weight: 800;
  color: var(--brand);
}
.price__amount span{ font-size: 14px; font-weight: 600; color: var(--muted); margin-left: 6px; }
.price__list{ margin: 0 0 16px; padding-left: 18px; color: rgba(0,0,0,.72); }
.price__list li{ margin: 8px 0; }

.price--featured{
  border-color: rgba(1,44,50,.25);
  box-shadow: 0 20px 60px rgba(1,44,50,.22);
  transform: translateY(-6px);
}
.pill{
  position:absolute; top: 14px; right: 14px;
  background: var(--brand);
  color: #fff;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.note{ margin-top: 16px; color: var(--muted); }

.faq{ display:grid; gap: 12px; }
.faq__item{
  text-align:left;
  width: 100%;
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: var(--shadow2);
  cursor:pointer;
  transition: transform .16s ease, border-color .16s ease;
}
.faq__item:hover{ transform: translateY(-1px); border-color: rgba(1,44,50,.18); }
.faq__q{ font-weight: 700; display:block; }
.faq__a{
  display:block;
  margin-top: 10px;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq__item.is-open .faq__a{ max-height: 140px; }

.form{ display:grid; gap: 12px; }
.form__row{ display:grid; gap: 6px; }
label{ font-size: 13px; color: rgba(0,0,0,.72); }
input, select, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  outline: none;
  font: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(1,44,50,.35);
  box-shadow: 0 0 0 4px rgba(1,44,50,.10);
}
.form__hint{ margin:0; }

.link{ color: var(--brand); text-decoration: none; font-weight: 600; }
.link:hover{ text-decoration: underline; }

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

.cta{ background: linear-gradient(135deg, rgba(1,44,50,.10), rgba(1,44,50,.02)); }
.cta__box{
  display:flex; align-items:center; justify-content:space-between;
  gap: 14px;
  padding: 18px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(1,44,50,.12);
  background: #fff;
  box-shadow: var(--shadow2);
}
.cta__actions{ display:flex; gap: 10px; flex-wrap:wrap; }

.footer{
  padding: 26px 0;
  border-top: 1px solid rgba(0,0,0,.06);
  background:#fff;
}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap: 14px; flex-wrap:wrap;
}
.footer__brand{ font-weight: 800; color: var(--brand); }

/* Scroll reveal */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .grid--3{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .hero__stats{ grid-template-columns: 1fr; max-width: 520px; }
  .nav{
    display:none;
    position:absolute; right:4%; top: 70px;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow);
    flex-direction:column;
    align-items:flex-start;
    width: min(92vw, 340px);
  }
  .nav.is-open{ display:flex; }
  .nav a{ width:100%; }
  .burger{ display:inline-block; }
  .cta__box{ flex-direction: column; align-items:flex-start; }
}
