:root {
  --navy: #0b3d5f;
  --navy-2: #14506f;
  --teal: #2f9e8f;
  --gold: #f1c40f;
  --bg: #f5f8fb;
  --ink: #173042;
  --muted: #5b6c7a;
  --line: #dfe8ee;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(11, 61, 95, 0.10);
  --shadow-lg: 0 22px 50px rgba(11, 61, 95, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--card);
  background: var(--bg);
  line-height: 1.55;
}
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
img, video { display: block; max-width: 100%; }

/* NOTICE */
.notice {
  background: #fff3cd;
  color: #6b5600;
  font-size: 12.5px;
  padding: 7px 20px;
  text-align: center;
}
.notice a { color: inherit; font-weight: 600; }

/* HEADER */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 20px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--navy); }
.brand:hover { text-decoration: none; }
.brand-name { font-weight: 800; letter-spacing: -0.3px; font-size: 19px; color: var(--navy); }
.nav { display: flex; gap: 22px; font-weight: 600; font-size: 15px; }
.nav a { color: var(--navy); }
.nav a:hover { color: var(--teal); text-decoration: none; }
.btn {
  display: inline-block; padding: 12px 20px; border-radius: 10px;
  font-weight: 700; border: none; cursor: pointer; transition: transform .12s, box-shadow .12s;
  font-size: 15px;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--navy-2); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-wa { background: #25d366; color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 14px; font-size: 14px; }

/* HERO */
.hero { background: linear-gradient(135deg, #eaf4f8, #ffffff); padding: 64px 0 56px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 1.5px; font-size: 12px;
  font-weight: 700; color: var(--teal); margin: 0 0 10px;
}
h1 { font-size: clamp(28px, 4.4vw, 44px); line-height: 1.15; color: var(--navy); margin: 0 0 14px; }
h2 { font-size: clamp(22px, 3vw, 32px); color: var(--navy); margin: 0 0 12px; }
.subtitle { font-size: 17px; color: var(--muted); margin: 0 0 22px; max-width: 60ch; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.tick-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.tick-list li { padding-left: 26px; position: relative; color: var(--ink, var(--card)); }
.tick-list li::before { content: "✔"; position: absolute; left: 0; top: 0; color: var(--teal); font-weight: 800; }

/* HERO VISUAL / CHART */
.hero-visual { display: flex; justify-content: center; }
.card-mock {
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg);
  padding: 24px; width: 100%; max-width: 360px;
}
.card-label { font-weight: 800; color: var(--navy); margin: 0 0 16px; }
.bars { display: flex; align-items: flex-end; gap: 12px; height: 150px; }
.bars span {
  flex: 1; background: linear-gradient(180deg, var(--gold), #eab308);
  border-radius: 8px 8px 0 0; height: var(--h);
  display: flex; flex-direction: column; justify-content: flex-end;
  align-items: center; color: #fff; font-weight: 700; padding-bottom: 6px; gap: 2px;
  animation: grow 1s ease;
}
.bars span:nth-child(2n) { background: linear-gradient(180deg, var(--teal), #1f7a6e); }
.bars span:nth-child(3n) { background: linear-gradient(180deg, var(--navy-2), var(--navy)); }
.bars i { font-style: normal; font-size: 10px; opacity: 0.9; }
.bars b { font-size: 13px; }
.card-note { margin: 14px 0 0; color: var(--muted); font-size: 13.5px; }
@keyframes grow { from { height: 0; } }

/* BAND */
.band { background: var(--navy); color: #fff; }
.band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 26px 20px; text-align: center; }
.stat b { display: block; font-size: 26px; color: var(--gold); }
.stat { font-size: 14px; opacity: 0.95; }

/* SECTIONS */
.section { padding: 70px 0; }
.section.alt { background: #fff; }
.lede { color: var(--muted); font-size: 16px; max-width: 70ch; margin: 6px 0 26px; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 8px;
  color: var(--card); transition: transform .14s, box-shadow .14s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); text-decoration: none; color: var(--card); }
.card-icon { font-size: 30px; }
.card h3 { margin: 0; color: var(--navy); font-size: 19px; }
.card p { margin: 0; color: var(--muted); font-size: 14.5px; flex: 1; }
.card-link { font-weight: 700; color: var(--teal); margin-top: 6px; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 6px;
}
.step-img {
  font-size: 40px; background: #f2f7fa; border-radius: 12px; width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 6px;
}
.step h3 { margin: 0; color: var(--navy); font-size: 17px; }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* VIDEO */
.two-col { display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: center; }
.video-frame { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); background: #000; aspect-ratio: 16 / 10; }
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.caption { color: var(--muted); font-size: 13px; text-align: center; margin: 10px 0 0; }
.mini-player { max-width: 360px; margin: 0 auto; }
#remotion-player { width: 100%; height: 100%; }
#remotion-player > div { width: 100%; height: 100%; }

/* ADVISORS */
.advisors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.advisor {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; text-align: center; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 8px; align-items: stretch;
}
.avatar {
  width: 66px; height: 66px; border-radius: 50%; margin: 0 auto;
  background: linear-gradient(135deg, var(--teal), var(--navy)); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 24px;
}
.advisor h3 { margin: 0; color: var(--navy); font-size: 18px; }
.advisor .role { margin: 0; color: var(--teal); font-weight: 600; font-size: 13.5px; }

/* CONTACT */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.contact-list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 14px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; }
.ci { font-size: 22px; line-height: 1.3; }
.contact-list a { color: var(--navy); font-weight: 700; }
.social { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.social-title { font-weight: 700; color: var(--navy); margin: 0 6px 0 0; }
.social a {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 7px 14px;
  font-size: 14px; color: var(--navy); font-weight: 600;
}
.map-box { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 320px; }
.map-box iframe { min-height: 320px; }

/* MODAL */
.modal {
  position: fixed; inset: 0; z-index: 80; background: rgba(11,42,64,0.5);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-box {
  background: #fff; border-radius: 16px; padding: 28px; max-width: 480px; width: 100%;
  position: relative; box-shadow: var(--shadow-lg); max-height: 90vh; overflow: auto;
}
.modal-close {
  position: absolute; top: 12px; right: 16px; background: none; border: none;
  font-size: 30px; line-height: 1; cursor: pointer; color: var(--muted);
}
.modal h2 { margin-top: 0; }
.modal label { display: block; font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 14px; }
.modal input, .modal select {
  width: 100%; margin-top: 5px; padding: 11px; border: 1px solid var(--line);
  border-radius: 9px; font-size: 15px; background: #fafcfd;
}
.modal .consent { display: flex; gap: 8px; align-items: flex-start; font-weight: 500; color: var(--muted); font-size: 13px; }
.modal .consent input { width: auto; margin-top: 2px; }
.form-ok { color: var(--teal); font-weight: 700; }

/* FOOTER */
.footer { background: var(--navy); color: #cfe0ea; padding: 40px 0 26px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer .brand-name { color: #fff; }
.footer-small { color: #a9c2d1; font-size: 13px; }
.footer-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-nav a { color: #cfe0ea; }
.footer-disclaimer { margin-top: 26px; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 18px; }
.footer-disclaimer p { font-size: 12px; color: #9fb8c7; }

@media (max-width: 900px) {
  .hero-grid, .two-col, .contact-wrap { grid-template-columns: 1fr; }
  .cards, .steps, .advisors { grid-template-columns: 1fr 1fr; }
  .band-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .header-inner .btn { display: none; }
}
@media (max-width: 560px) {
  .cards, .steps, .advisors, .band-grid { grid-template-columns: 1fr; }
  .section { padding: 46px 0; }
}