:root{
  /* Brand */
  --blue-900:#1F3A5F;
  --blue-800:#243E63;
  --blue-50:#EAF1FF;

  --orange-500:#F28C28;
  --orange-600:#E97D17;
  --orange-50:#FFF3E6;

  /* Neutrals */
  --bg:#F8FAFC;
  --card:#FFFFFF;
  --text:#0F172A;
  --muted:#475569;
  --line:#E5E7EB;

  /* Layout */
  --max:1200px;
  --radius:18px;
  --shadow:0 14px 40px rgba(15, 23, 42, 0.10);
  --shadow-soft:0 10px 24px rgba(15, 23, 42, 0.08);

  /* Spacing */
  --px:48px;
  --py:84px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:linear-gradient(180deg,#fff 0%,var(--bg) 55%,#fff 100%);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(var(--max), calc(100% - var(--px))); margin:0 auto}
.section{padding:var(--py) 0}
.section-tight{padding:56px 0}
.section-bg{background:linear-gradient(180deg, rgba(31,58,95,.03), rgba(31,58,95,.00))}
hr.sep{border:0;border-top:1px solid var(--line); margin:32px 0}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background:linear-gradient(180deg, rgba(31,58,95,.96), rgba(31,58,95,.92));
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.12);
}
.nav{
  height:72px; display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.brand{
  display:flex; align-items:center; gap:12px; color:#fff;
  font-weight:900; letter-spacing:.2px; font-size:22px; white-space:nowrap;
}
.logo{
  width:34px; height:34px; display:grid; place-items:center;
  border-radius:50%; background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
}
.navlinks{
  display:flex; align-items:center; gap:14px; color:rgba(255,255,255,.92); font-size:14.5px;
}
.navlinks a{padding:10px 10px; border-radius:10px}
.navlinks a:hover{background:rgba(255,255,255,.10)}
.navcta{display:flex; align-items:center; gap:12px; white-space:nowrap}
.link-light{
  color:rgba(255,255,255,.92); font-weight:700; font-size:14px;
  padding:10px 10px; border-radius:10px;
}
.link-light:hover{background:rgba(255,255,255,.10)}
.mobileToggle{
  display:none;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  height:42px; width:44px;
  border-radius:12px;
  cursor:pointer;
}
.mobileMenu{
  display:none;
  padding:12px 0 18px;
}
.mobileMenu a{
  display:block;
  padding:12px 16px;
  margin:6px 0;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-weight:650;
}

/* Buttons */
.btn{
  border:0; cursor:pointer;
  border-radius:14px;
  height:44px;
  padding:0 16px;
  font-weight:900;
  font-size:14px;
  letter-spacing:.2px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
  user-select:none;
}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background:var(--orange-500); color:#fff;
  box-shadow:0 10px 22px rgba(242,140,40,.25);
}
.btn-primary:hover{background:var(--orange-600)}
.btn-secondary{
  background:transparent; color:var(--blue-900);
  border:2px solid rgba(31,58,95,.22);
  height:46px;
}
.btn-secondary:hover{
  border-color: rgba(31,58,95,.36);
  background: rgba(31,58,95,.04);
}
.btn-ghost{
  background: rgba(31,58,95,.08);
  border: 1px solid rgba(31,58,95,.14);
  color: var(--blue-900);
}
.btn-ghost:hover{background: rgba(31,58,95,.12)}
.btn-wide{min-width:180px}

/* Typography */
h1,h2,h3{margin:0 0 12px; color:var(--blue-900); letter-spacing:-.8px}
h1{font-size:56px; line-height:1.05}
h2{font-size:34px; line-height:1.15}
h3{font-size:22px; line-height:1.25}
p{margin:0 0 12px; color:var(--muted); line-height:1.55; font-size:16.5px}
.small{font-size:13.5px; color:var(--muted)}
.kicker{font-size:13px; letter-spacing:.18em; text-transform:uppercase; color:rgba(31,58,95,.72); font-weight:800}

/* Layout helpers */
.grid2{display:grid; grid-template-columns: 1.1fr .9fr; gap:40px; align-items:center}
.grid2-even{display:grid; grid-template-columns: 1fr 1fr; gap:28px; align-items:start}
.row{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.stack{display:flex; flex-direction:column; gap:12px}
.maxch{max-width:60ch}
.center{text-align:center}
.center .maxch{margin:0 auto}

/* Components */
.badge{
  display:inline-flex; align-items:center; gap:8px;
  border-radius:999px;
  padding:10px 14px;
  font-weight:900; font-size:13px; letter-spacing:.2px;
  border:1px solid transparent;
}
.badge.orange{background:var(--orange-50); color:#9A4E06; border-color:rgba(242,140,40,.25)}
.badge.blue{background:var(--blue-50); color:var(--blue-900); border-color:rgba(31,58,95,.16)}

.card{
  background:var(--card);
  border:1px solid rgba(31,58,95,.10);
  border-radius:var(--radius);
  box-shadow:0 10px 22px rgba(15,23,42,.06);
}
.card.pad{padding:22px}
.card.shadow{box-shadow:var(--shadow-soft)}
.card.hero{box-shadow:var(--shadow); border-color:rgba(31,58,95,.12); overflow:hidden}
.accentbar{
  width:200px; height:6px;
  border-radius:999px;
  background:var(--orange-500);
  margin:10px 0 18px;
}

.callout{
  display:flex; gap:14px; align-items:flex-start;
  padding:18px 18px;
  border-radius:18px;
  background:var(--blue-50);
  border:1px solid rgba(31,58,95,.14);
}
.callout .bar{
  width:6px; height:100%;
  border-radius:999px;
  background:var(--orange-500);
  flex:0 0 6px;
}
.callout strong{color:var(--blue-900)}
.callout p{margin:0; color:var(--blue-900); font-weight:800; font-size:18px; line-height:1.35}

.iconbox{
  width:46px; height:46px;
  border-radius:16px;
  background: rgba(31,58,95,.08);
  border: 1px solid rgba(31,58,95,.12);
  display:grid; place-items:center;
  flex:0 0 46px;
}
.iconbox svg{width:22px; height:22px; fill:var(--blue-900)}

.featureGrid{display:grid; grid-template-columns: repeat(3, 1fr); gap:18px}
.feature{
  display:flex; gap:14px; align-items:flex-start;
  padding:20px;
}
.feature p{margin:0; font-size:14.5px}

.steps{display:grid; grid-template-columns: repeat(3,1fr); gap:18px}
.stepNum{
  width:34px; height:34px; border-radius:12px;
  background: rgba(242,140,40,.16);
  border:1px solid rgba(242,140,40,.30);
  display:grid; place-items:center;
  font-weight:900; color:var(--orange-600);
}
.stepTitle{margin:0 0 6px; font-weight:950; color:var(--blue-900)}
.stepText{margin:0; color:var(--muted); font-size:14.5px}

.pricing{display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; align-items:stretch}
.priceTop{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
.price{font-size:34px; font-weight:950; color:var(--orange-500); margin:8px 0 12px}
.ul{
  margin:0; padding:0 0 0 18px;
  color:var(--muted);
  display:flex; flex-direction:column; gap:8px;
  font-size:15px;
}
.ul li{line-height:1.35}
.prizeBlock{
  margin-top:14px; padding:14px;
  border-radius:14px;
  background: rgba(31,58,95,.04);
  border:1px solid rgba(31,58,95,.10);
}
.prizeBlock .label{font-size:12px; letter-spacing:.18em; text-transform:uppercase; color:rgba(31,58,95,.72); font-weight:900}
.prizeBlock .val{font-size:18px; font-weight:950; color:var(--blue-900); margin-top:6px}
.prizeBlock .src{font-size:13.5px; color:var(--muted); margin-top:4px}
.featuredCard{
  border:2px solid rgba(242,140,40,.55);
  box-shadow: 0 18px 50px rgba(242,140,40,.14);
  transform: translateY(-4px);
}
.featuredTag{margin-left:auto}

.cardsScroll{
  display:flex; gap:14px; overflow:auto; padding-bottom:6px;
  scroll-snap-type:x mandatory;
}
.cardsScroll .card{min-width: 320px; scroll-snap-align:start}
.neighMeta{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
  margin-top:8px;
}
.metaPill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  font-weight:850;
  background: rgba(31,58,95,.06);
  border:1px solid rgba(31,58,95,.12);
  color: var(--blue-900);
  font-size:13px;
}

/* FAQ Accordion */
.faq{
  display:flex; flex-direction:column; gap:10px;
}
.faqItem{
  border-radius:16px;
  border:1px solid rgba(31,58,95,.10);
  background:#fff;
  overflow:hidden;
}
.faqBtn{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:16px 16px;
  background:transparent;
  border:0;
  cursor:pointer;
  font-weight:900;
  color:var(--blue-900);
  font-size:15.5px;
  text-align:left;
}
.faqBtn:hover{background:rgba(31,58,95,.03)}
.faqChevron{
  width:34px; height:34px;
  border-radius:12px;
  background: rgba(242,140,40,.14);
  border:1px solid rgba(242,140,40,.26);
  display:grid; place-items:center;
  flex:0 0 34px;
}
.faqChevron svg{width:16px; height:16px; fill:var(--orange-600); transition: transform .2s ease}
.faqBody{
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 14.8px;
  line-height: 1.55;
  display:none;
}
.faqItem.open .faqBody{display:block}
.faqItem.open .faqChevron svg{transform: rotate(180deg)}

/* Forms */
.formGrid{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.field{display:flex; flex-direction:column; gap:6px}
label{font-size:13px; font-weight:850; color:rgba(31,58,95,.78); letter-spacing:.04em}
input, select, textarea{
  border:1px solid rgba(31,58,95,.16);
  border-radius:14px;
  padding:12px 12px;
  font-size:15px;
  outline:none;
  background:#fff;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(242,140,40,.65);
  box-shadow: 0 0 0 4px rgba(242,140,40,.18);
}
textarea{min-height:110px; resize:vertical}
.formActions{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}

/* Footer */
.footer{
  padding:46px 0;
  background: rgba(31,58,95,.06);
  border-top: 1px solid rgba(31,58,95,.10);
}
.footerRow{display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap}
.footer a{color:var(--blue-900); font-weight:850}
.footer small{color:var(--muted)}

/* Responsive */
@media (max-width: 980px){
  :root{--px:32px; --py:68px}
  h1{font-size:42px}
  .grid2{grid-template-columns: 1fr; gap:26px}
  .featureGrid{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .pricing{grid-template-columns: 1fr}
  .featuredCard{transform:none}
  .navlinks{display:none}
  .mobileToggle{display:inline-flex; align-items:center; justify-content:center}
}
@media (max-width: 560px){
  h1{font-size:36px}
  .container{width: calc(100% - 28px)}
  .btn{width:100%}
  .formGrid{grid-template-columns:1fr}
}
