:root{
  --blue:#0B3FB8;
  --yellow:#F4B400;
  --text:#0b1020;
  --muted:#5b647a;
  --bg:#ffffff;
  --alt:#f6f8ff;
  --card:#ffffff;
  --border:#e5e8f3;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
a{color:var(--blue); text-decoration:none}
a:hover{text-decoration:underline}
strong{font-weight:800}

.container{max-width:1100px; margin:0 auto; padding:0 16px}

/* Header */
.header{
  position:sticky; top:0; z-index:10;
  background:rgba(255,255,255,.92);
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(10px);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:10px 0; gap:12px}
.brand{display:flex; align-items:center; gap:10px; font-weight:800; color:var(--text)}
.brand img{
  width:34px; height:34px;
  border-radius:10px;
  background:#fff;
  border:1px solid rgba(11,63,184,.15);
  padding:5px;
}
.pill{
  font-size:12px;
  font-weight:800;
  color:var(--blue);
  border:1px solid rgba(11,63,184,.18);
  background:rgba(11,63,184,.06);
  padding:4px 10px;
  border-radius:999px;
}
.menu{display:flex; gap:14px; align-items:center}
.menu a{font-weight:800; color:var(--text)}

/* Buttons */
.btn{
  display:inline-block;
  background:var(--blue);
  color:#fff !important;
  padding:10px 14px;
  border-radius:12px;
  font-weight:900;
  border:2px solid var(--blue);
  box-shadow:0 10px 22px rgba(11,63,184,.12);
}
.btn.secondary{
  background:#fff;
  color:var(--blue) !important;
  box-shadow:none;
}
.btn:hover{transform:translateY(-1px); text-decoration:none}
button.btn{cursor:pointer}

/* Hero */
.hero{
  padding:46px 0 26px;
  background:
    url("./images/hero-illustration.svg") right 30px top 20px / 520px auto no-repeat,
    linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
  border-bottom:1px solid var(--border);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:stretch;
}
h1{font-size:40px; line-height:1.15; margin:0 0 10px}
.accent{color:var(--blue)}
.lead{color:var(--muted); margin:0 0 14px}
.actions{display:flex; gap:10px; flex-wrap:wrap; margin:0 0 12px}
.small{font-size:13px; color:var(--muted)}
.tight{margin-top:6px}
.muted{color:var(--muted)}

/* Hero polish left side */
.hero-soft-left{position:relative}
.hero-soft-left:before{
  content:"";
  position:absolute;
  left:-80px; top:-40px;
  width:260px; height:260px;
  border-radius:999px;
  background:rgba(244,180,0,.12);
  filter: blur(2px);
  z-index:-1;
}
.hero-mark-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:12px;
}
.hero-mark{
  width:56px;height:56px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(11,63,184,.18);
  box-shadow:0 10px 24px rgba(11,63,184,.10);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.hero-mark img{width:100%; height:100%; object-fit:contain; padding:10px}
.hero-mini-badges{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
}
.mbadge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:900;
  font-size:13px;
  color:var(--text);
}
.mbadge .dot{
  width:8px;height:8px;border-radius:999px;
  background:var(--yellow);
  box-shadow:0 0 0 3px rgba(244,180,0,.18);
}

/* Trust chips */
.trust{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.trust span{
  background:#fff;
  border:1px solid var(--border);
  border-radius:999px;
  padding:6px 10px;
  font-size:13px;
  font-weight:800;
}

/* Carriers */
.carrier-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.cbadge{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--border);
  background:#fff;
  border-radius:14px;
  font-weight:900;
}
.cico{
  width:34px;height:34px;
  border-radius:12px;
  background:rgba(244,180,0,.16);
  border:1px solid rgba(244,180,0,.25);
  display:flex;align-items:center;justify-content:center;
}
.cico svg{width:18px;height:18px;fill:var(--blue)}

/* Hero card */
.hero-card{
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  background:#fff;
  box-shadow:0 12px 34px rgba(11,63,184,.10);
  position:relative;
}
.hero-badge{
  position:absolute;
  top:12px; right:12px;
  background:var(--yellow);
  color:#1a1400;
  font-weight:900;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
}
.hero-card-title{margin:24px 0 6px}
.hero-card-text{margin:0 0 12px; color:var(--muted)}
.mini-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
.mini{
  border:1px solid rgba(11,63,184,.18);
  border-radius:14px;
  padding:10px;
  font-weight:900;
  color:var(--blue);
  background:rgba(11,63,184,.06);
}
.tagrow{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.tag{
  font-size:13px;
  font-weight:800;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
}

/* Flyer */
.flyer-card{
  margin-top:12px;
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
}
.flyer-preview{
  position:relative;
  height:140px;
  overflow:hidden;
  border-bottom:1px solid var(--border);
  background:#f3f5ff;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
  font-weight:800;
}
.flyer-preview img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top;
  display:block;
}
.flyer-preview.fallback::before{
  content:"Flyer preview will appear here once poster.png is detected";
  padding:16px;
  text-align:center;
}
.flyer-body{
  padding:12px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.flyer-body p{
  margin:0;
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

/* Sections */
.section{padding:34px 0}
.section.alt{background:var(--alt); border-top:1px solid var(--border); border-bottom:1px solid var(--border)}
h2{
  margin:0 0 10px;
  font-size:26px;
  position:relative;
  display:inline-block;
}
h2:after{
  content:"";
  display:block;
  height:5px;
  width:56px;
  background:rgba(244,180,0,.85);
  border-radius:999px;
  margin-top:8px;
}

/* Cards grid */
.features{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.features.two{grid-template-columns:repeat(2,1fr)}
.features.three{grid-template-columns:repeat(3,1fr)}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(11,63,184,.10);
  border-color:rgba(11,63,184,.18);
}
.card h3{margin:0 0 6px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px}

/* Icon rows */
.icon-row{display:flex; gap:10px; align-items:flex-start}
.icon{
  width:34px; height:34px; min-width:34px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(11,63,184,.08);
  border:1px solid rgba(11,63,184,.16);
  margin-top:2px;
}
.icon svg{width:18px; height:18px; fill:var(--blue)}

/* Poster-style list rows */
.ilist{display:grid; gap:10px; margin-top:12px}
.irow{display:flex; gap:10px; align-items:flex-start}
.iico{
  width:34px;height:34px;min-width:34px;
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(11,63,184,.08);
  border:1px solid rgba(11,63,184,.16);
}
.iico svg{width:18px; height:18px; fill:var(--blue)}
.itext strong{display:block}
.itext span{display:block; color:var(--muted); font-size:14px}

/* Callouts */
.callout, .note-box{
  display:flex;
  gap:10px;
  align-items:flex-start;
  border:1px solid var(--border);
  background:#fff;
  border-radius:16px;
  padding:12px;
  margin-top:16px;
}
.callout-ico, .note-ico{
  width:34px;height:34px;min-width:34px;
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(244,180,0,.16);
  border:1px solid rgba(244,180,0,.25);
}
.callout-ico svg, .note-ico svg{width:18px;height:18px;fill:var(--blue)}

/* Reviews */
.review-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}
.review-tag{
  font-size:12px;
  font-weight:900;
  border:1px solid rgba(11,63,184,.18);
  background:rgba(11,63,184,.06);
  color:var(--blue);
  padding:4px 10px;
  border-radius:999px;
}

/* Legal */
.legal{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
  margin-top:10px;
}
.legal h4{margin:14px 0 6px; font-size:14px}
.legal p{margin:0 0 10px}
.legal ul{margin:0; padding-left:18px}
.legal li{margin:6px 0}

/* Track buttons */
.track-links{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

/* Forms */
form{margin-top:12px}
.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin:12px 0 14px;
}
label{font-weight:800; font-size:13px; display:block}
input, select, textarea{
  width:100%;
  margin-top:6px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  font-family:inherit;
  font-size:14px;
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color:rgba(11,63,184,.35);
  box-shadow:0 0 0 4px rgba(11,63,184,.08);
}
.span2{grid-column:1 / -1}
.checkrow{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight:700;
}
.checkrow input{width:auto; margin-top:3px}
.hidden{display:none}
.btnline{display:flex; gap:10px; flex-wrap:wrap}

/* Footer */
.footer{
  border-top:1px solid var(--border);
  padding:18px 0 10px;
  background:#fff;
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  padding-bottom:10px;
}
.footer-links{display:flex; gap:12px; flex-wrap:wrap}
.tiny{font-size:12px}

/* Responsive */
@media (max-width: 900px){
  .hero{
    background:
      url("./images/hero-illustration.svg") center top 20px / 520px auto no-repeat,
      linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
    padding-top:360px;
  }
  .hero-grid{grid-template-columns:1fr}
  .features{grid-template-columns:1fr 1fr}
  .features.three{grid-template-columns:1fr 1fr}
  h1{font-size:34px}
  .form-grid{grid-template-columns:1fr}
}
@media (max-width: 520px){
  .hero{
    background:
      url("./images/hero-illustration.svg") center top 20px / 360px auto no-repeat,
      linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
    padding-top:300px;
  }
  .features{grid-template-columns:1fr}
  .features.two{grid-template-columns:1fr}
  .features.three{grid-template-columns:1fr}
  .menu{display:none}
}
