:root {
  --navy: #0b1f3a;
  --navy-2: #123052;
  --gold: #e8b84b;
  --gold-2: #d09a2a;
  --bg: #f5f7fa;
  --card: #ffffff;
  --ink: #10233d;
  --muted: #5a6b85;
  --line: #e3e9f0;
  --good: #1e9e6a;
  --radius: 16px;
  --shadow: 0 12px 34px rgba(10, 30, 60, .10);
  --shadow-sm: 0 4px 14px rgba(10, 30, 60, .07);
  --ff: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

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

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 18px rgba(8, 22, 44, .3);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}
.brand b { font-size: 1.35rem; letter-spacing: .3px; }
.brand b em { color: var(--gold); font-style: normal; }
.brand small { display: block; font-size: .66rem; letter-spacing: 2px; color: #a9bdea; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a { color: #d4dff2; font-weight: 500; font-size: .95rem; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 9px 18px; border-radius: 30px; font-weight: 800;
}
.nav-cta:hover { background: #f3c866; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 1.6rem; cursor: pointer; width: 44px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 30px;
  border: 0; cursor: pointer; font-weight: 700; font-size: .98rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 8px 20px rgba(208,154,42,.35); }
.btn-gold:hover { background: #f3c866; }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: rgba(232,184,75,.12); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(232,184,75,.22), transparent 60%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 60%, #0c2547 100%);
  color: #fff;
  padding: 72px 0 90px;
  overflow: hidden;
}
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: 7px 14px; border-radius: 30px; font-size: .82rem; color: #e6edfb;
  margin-bottom: 22px;
}
.hero-kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 4px rgba(30,158,106,.25); }
.hero h1 { font-size: clamp(1.9rem, 4.4vw, 3.15rem); line-height: 1.12; margin-bottom: 18px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p.lead { color: #c9d6ee; font-size: 1.08rem; max-width: 520px; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { display: flex; gap: 30px; margin-top: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: #c9d6ee; }
.trust-item strong { color: #fff; display: block; font-size: 1.05rem; }
.trust-item svg { width: 26px; height: 26px; flex: none; color: var(--gold); }

/* ---------- Section scaffolding ---------- */
.section { padding: 78px 0; }
.section.alt { background: #eef2f8; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head .tag {
  display: inline-block; color: var(--gold-2); font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px; font-size: .8rem; margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.5rem, 3.2vw, 2.3rem); line-height: 1.16; }
.section-head p { color: var(--muted); margin-top: 14px; }
.section-head.light h2 { color: #fff; }
.section-head.light p { color: #c9d6ee; }

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

.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #d9d5c4; }
.card.icon-top { padding-top: 30px; }
.card h3 { font-size: 1.18rem; margin: 16px 0 8px; }
.card p { color: var(--muted); font-size: .95rem; }
.card a.more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--gold-2); font-weight: 700; font-size: .92rem; }
.card a.more:hover { gap: 10px; }
.icon-badge {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #fff3d6, #fbe3a8);
  color: var(--gold-2);
}
.icon-badge svg { width: 26px; height: 26px; }

/* Featured service cards (clickable to other index) */
.svc-card { cursor: pointer; }

/* ---------- Steps / Process ---------- */
.steps { counter-reset: step; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step + .step { margin-top: 26px; }
.step-num {
  counter-increment: step;
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: grid; place-items: center; font-weight: 800; font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.step h4 { font-size: 1.1rem; margin-bottom: 4px; }
.step p { color: var(--muted); font-size: .95rem; }

/* ---------- Illustration rank ---------- */
.ilu { padding: 30px; background: #eef3f9; border-radius: var(--radius); text-align: center; }
.ilu svg { margin: 0 auto; height: 220px; }

/* ---------- Video ---------- */
.video-wrap {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  aspect-ratio: 16 / 9; background: #0b1f3a; position: relative;
}
.video-wrap iframe, .video-wrap video { width: 100%; height: 100%; border: 0; }

/* ---------- Feature split (text + image) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.flip .split-text { order: 1; }
.split.flip .split-media { order: 2; }
.check-list { list-style: none; margin: 18px 0 22px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; color: var(--muted); }
.check-list svg { flex: none; width: 22px; height: 22px; color: var(--good); margin-top: 3px; }
.check-list b { color: var(--ink); }

/* ---------- Advisors ---------- */
.advisor { text-align: center; }
.advisor .avatar {
  width: 96px; height: 96px; margin: 0 auto 16px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold);
  border: 4px solid #fff; box-shadow: var(--shadow-sm);
}
.advisor .avatar svg { width: 46px; height: 46px; }
.advisor h4 { font-size: 1.1rem; }
.advisor .role { color: var(--gold-2); font-weight: 700; font-size: .85rem; }
.advisor .phone {
  margin-top: 12px; font-weight: 700; color: var(--navy);
  display: inline-flex; align-items: center; gap: 8px;
}
.iso { display: inline-block; margin-top: 14px; background: #eef3f9; padding: 7px 14px; border-radius: 30px; font-size: .8rem; color: var(--muted); }

/* ---------- Contact / CTA ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
  color: #fff; border-radius: 22px; padding: 52px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-band h2 { font-size: 1.8rem; margin-bottom: 8px; }
.cta-band p { color: #c9d6ee; max-width: 520px; }

.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-card:last-child { border-bottom: 0; }
.contact-card .icon-badge { width: 46px; height: 46px; }
.contact-card h4 { font-size: .95rem; }
.contact-card a, .contact-card span { color: var(--muted); font-size: .92rem; word-break: break-word; }
.contact-card a:hover { color: var(--gold-2); }

/* ---------- Map / office ---------- */
.map-box { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-box iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Social ---------- */
.social-row { display: flex; gap: 14px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 40px;
  padding: 10px 18px; font-weight: 600; color: var(--navy); box-shadow: var(--shadow-sm);
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover { border-color: var(--gold); transform: translateY(-2px); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b9c6e0; padding: 52px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 32px; }
.footer-grid h5 { color: #fff; margin-bottom: 14px; font-size: .98rem; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; }
.disclaimer { font-size: .78rem; color: #7f90b4; margin-top: 14px; line-height: 1.5; }

/* ---------- Hero (sub-pages) ---------- */
.page-hero {
  background: linear-gradient(140deg, var(--navy), var(--navy-2) 65%, #0c2547);
  color: #fff; padding: 58px 0 64px;
}
.page-hero h1 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p { color: #c9d6ee; max-width: 680px; font-size: 1.05rem; }
.breadcrumb { font-size: .85rem; color: #8fa3c6; margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Big illustration in content ---------- */
.figure { margin: 6px 0 8px; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.figure figcaption { padding: 10px 16px; font-size: .86rem; color: var(--muted); text-align: center; }

.result-box {
  background: linear-gradient(120deg, #fff7e6, #fdf0d0);
  border: 1px solid #f0d98a; border-radius: var(--radius);
  padding: 20px 22px; display: flex; gap: 16px; align-items: flex-start;
}
.result-box .icon-badge { background: #fff; }
.result-box p { color: var(--ink); }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero .container, .split { grid-template-columns: 1fr; }
  .split.flip .split-text { order: 0; }
  .split.flip .split-media { order: 1; }
  .hero { padding: 48px 0 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: fixed; inset: 0 0 auto 0; top: 74px;
    flex-direction: column; background: var(--navy-2);
    padding: 20px; gap: 18px; display: none; border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .cta-band { padding: 34px 24px; }
}

@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-trust { gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
}