@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #F8FAFC; color: #0F172A; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; line-height: 1.12; }
a { text-decoration: none; }
em { font-style: normal; color: #1F6FE5; }

/* ── NAV ──────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,250,252,0.95);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #E2E8F0; transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(15,23,42,0.07); }
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 20px; color: #0F172A; letter-spacing: -0.02em; }
.logo-text em { color: #1F6FE5; }
#lp-tl { animation: lp-tl .5s cubic-bezier(0.34,1.6,0.64,1) .05s both; }
#lp-tr { animation: lp-tr .5s cubic-bezier(0.34,1.6,0.64,1) .15s both; }
#lp-bl { animation: lp-bl .5s cubic-bezier(0.34,1.6,0.64,1) .10s both; }
#lp-br { animation: lp-br .5s cubic-bezier(0.34,1.6,0.64,1) .20s both; }
@keyframes lp-tl { from{transform:translate(-24px,-24px);opacity:0} to{transform:translate(0,0);opacity:1} }
@keyframes lp-tr { from{transform:translate( 24px,-24px);opacity:0} to{transform:translate(0,0);opacity:1} }
@keyframes lp-bl { from{transform:translate(-24px, 24px);opacity:0} to{transform:translate(0,0);opacity:1} }
@keyframes lp-br { from{transform:translate( 24px, 24px);opacity:0} to{transform:translate(0,0);opacity:1} }
.logo-wordmark { animation: wordIn .4s cubic-bezier(0.34,1.3,0.64,1) .36s both; }
@keyframes wordIn { from{opacity:0;transform:translateX(-10px)} to{opacity:1;transform:translateX(0)} }

.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-item { position: relative; }
.nav-link {
  display: block; padding: 8px 16px; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  color: #334155; cursor: pointer; transition: background .15s, color .15s;
}
.nav-link:hover, .nav-link.active { background: #E8F0FE; color: #1F6FE5; }
.has-dd::after { content: ' ↓'; font-size: 10px; opacity: .5; }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff; border: 1px solid #E2E8F0; border-radius: 16px; padding: 8px;
  box-shadow: 0 20px 60px rgba(15,23,42,0.13);
  min-width: 260px; opacity: 0; pointer-events: none;
  transform: translateY(-6px); transition: opacity .18s, transform .18s; z-index: 200;
}
.nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dd-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; transition: background .12s; }
.dd-item:hover { background: #E8F0FE; }
.dd-icon { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dd-label { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 13px; color: #0F172A; }
.dd-sub { font-family: 'Inter', sans-serif; font-size: 12px; color: #94A3B8; margin-top: 1px; }

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 22px; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; border: none; transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: scale(1.03); }
.btn-blue { background: #1F6FE5; color: #fff; }
.btn-blue:hover { background: #1A5CC4; box-shadow: 0 8px 24px rgba(31,111,229,.28); }
.btn-ghost { background: transparent; color: #1F6FE5; border: 1.5px solid #1F6FE5; }
.btn-ghost:hover { background: #E8F0FE; }
.btn-white { background: #fff; color: #1F6FE5; }
.btn-white:hover { box-shadow: 0 8px 32px rgba(15,23,42,.18); }

/* ── PAGE HERO (inner pages) ──────────────────── */
.page-hero { background: linear-gradient(135deg, #1F6FE5 0%, #2EC4B6 100%); padding: 80px 32px; }
.page-hero-inner { max-width: 1160px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(36px,4.5vw,56px); color: #fff; margin-bottom: 16px; letter-spacing: -0.03em; }
.page-hero p { font-family: 'Inter', sans-serif; font-size: 18px; color: rgba(255,255,255,.85); line-height: 1.7; max-width: 560px; }
.page-breadcrumb { font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.page-breadcrumb a { color: rgba(255,255,255,.6); }
.page-breadcrumb a:hover { color: #fff; }

/* ── SHARED SECTIONS ─────────────────────────── */
.section { max-width: 1160px; margin: 0 auto; padding: 88px 32px; }
.eyebrow { display: block; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; color: #1F6FE5; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-size: clamp(26px,3vw,38px); margin-bottom: 16px; }
.section-sub { font-family: 'Inter', sans-serif; font-size: 17px; color: #334155; line-height: 1.7; max-width: 580px; margin-bottom: 52px; }

/* Check list */
.check-list { list-style: none; margin-top: 20px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-family: 'Inter', sans-serif; font-size: 14px; color: #334155; padding: 9px 0; border-bottom: 1px solid #F1F5F9; }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; color: #2EC4B6; font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* CTA strip */
.cta-strip { background: #0F172A; padding: 64px 32px; }
.cta-strip-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-strip h2 { font-size: clamp(22px,2.5vw,32px); color: #fff; }
.cta-strip p { font-family: 'Inter', sans-serif; font-size: 16px; color: #94A3B8; margin-top: 8px; }

/* FAQ */
.faq-item { border-bottom: 1px solid #E2E8F0; }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 16px; color: #0F172A; text-align: left; }
.faq-q:hover { color: #1F6FE5; }
.faq-a { font-family: 'Inter', sans-serif; font-size: 15px; color: #334155; line-height: 1.75; padding-bottom: 20px; padding-left: 2px; display: none; }
.faq-a.open { display: block; }
.faq-chevron { color: #94A3B8; font-size: 20px; transition: transform .2s; flex-shrink: 0; }
.faq-chevron.open { transform: rotate(180deg); color: #1F6FE5; }

.divider { height: 1px; background: #E2E8F0; }

/* ── FOOTER ──────────────────────────────────── */
footer { background: #0F172A; padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.foot-logo { display: flex; align-items: center; gap: 10px; }
.foot-logo span { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 16px; color: #fff; }
.foot-logo span em { color: #1F6FE5; }
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-links a { font-family: 'Inter', sans-serif; font-size: 13px; color: #94A3B8; transition: color .15s; }
.foot-links a:hover { color: #fff; }
footer small { font-family: 'Inter', sans-serif; font-size: 13px; color: #94A3B8; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-inner { padding: 0 20px; }
  .section { padding: 64px 20px; }
  .page-hero { padding: 56px 20px; }
  .cta-strip { padding: 48px 20px; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
}
