:root{
  --primary:#0D45D2;
  --primary-700:#0A37A8;
  --primary-100:#E9F0FF;
  --bg:#FFFFFF;
  --text:#0B1020;
  --muted:#5B6578;
  --card:#FFFFFF;
  --border:rgba(13,69,210,.14);
  --shadow:0 14px 36px rgba(11,16,32,.10);
  --radius:18px;
  --radius-sm:14px;
  --container:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}

a{color:inherit}
img,svg{max-width:100%;height:auto;display:block}
button,input,textarea{font:inherit}

.container{max-width:var(--container);margin:0 auto;padding:0 20px}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.skip-link{
  position:absolute;
  top:10px;left:10px;
  transform:translateY(-200%);
  background:var(--bg);
  border:1px solid var(--border);
  padding:10px 12px;
  border-radius:12px;
  z-index:9999;
}
.skip-link:focus{transform:translateY(0)}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--primary);
  color:#fff;
  box-shadow:0 8px 28px rgba(13,69,210,.28);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:74px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.2px;
}
.brand-text{font-size:20px}
.brand-logo{
  width:40px;
  height:40px;
  border-radius:14px;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.20);
  background:rgba(255,255,255,.12);
}

.site-nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav-link{
  color:rgba(255,255,255,.92);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
  white-space:nowrap;
}
.nav-link:hover{
  background:rgba(255,255,255,.12);
  color:#fff;
}
.nav-link[aria-current="page"]{
  background:rgba(255,255,255,.16);
  color:#fff;
}

.nav-toggle{
  display:none;
  background:transparent;
  border:0;
  padding:10px;
  border-radius:12px;
  color:#fff;
}
.nav-toggle:hover{background:rgba(255,255,255,.12)}
.nav-toggle-bar{
  display:block;
  width:22px;height:2px;
  background:rgba(255,255,255,.92);
  margin:5px 0;
  border-radius:999px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  font-weight:700;
  border-radius:14px;
  padding:12px 16px;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background:var(--primary);
  color:#fff;
  border-color:rgba(255,255,255,.0);
}
.btn-primary:hover{background:var(--primary-700)}
.btn-ghost{
  background:rgba(13,69,210,.08);
  color:var(--primary);
  border-color:rgba(13,69,210,.18);
}
.btn-ghost:hover{background:rgba(13,69,210,.12)}
.btn-full{width:100%}

/* Hero */
.hero{
  background:
    radial-gradient(1200px 520px at 18% 12%, rgba(13,69,210,.16), transparent 60%),
    radial-gradient(1100px 520px at 86% 22%, rgba(13,69,210,.12), transparent 55%),
    linear-gradient(180deg, #FFFFFF 0%, #F6F9FF 100%);
  padding:56px 0 42px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:44px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
  color:var(--primary);
  margin:0 0 14px;
}
.hero-copy h1{
  font-size:48px;
  line-height:1.12;
  margin:0 0 14px;
  letter-spacing:-.02em;
}
.lead{font-size:18px;color:var(--muted);margin:0 0 18px}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin:18px 0 18px}

.hero-badges{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:10px;
}
.badge{
  background:rgba(255,255,255,.78);
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px 12px;
  box-shadow:0 10px 28px rgba(11,16,32,.06);
}
.badge-title{display:block;font-weight:800}
.badge-sub{display:block;font-size:13px;color:var(--muted);margin-top:2px}

/* Phone mock */
.hero-visual{display:flex;justify-content:center}
.phone{
  width:340px;
  max-width:100%;
  position:relative;
}
.phone-shadow{
  position:absolute;
  left:0;right:0;bottom:-14px;
  height:34px;
  filter:blur(16px);
  background:rgba(11,16,32,.18);
  border-radius:999px;
  z-index:0;
}
.phone-screen{
  position:relative;
  z-index:1;
  border-radius:34px;
  overflow:hidden;
  background:linear-gradient(180deg, var(--primary) 0%, #0C3FC2 60%, #0B3AAE 100%);
  border:10px solid #0B0B10;
  box-shadow:var(--shadow);
}
.phone-notch{
  position:absolute;
  top:0;left:50%;
  transform:translateX(-50%);
  width:132px;height:28px;
  background:#0B0B10;
  border-radius:0 0 18px 18px;
  z-index:2;
}
.phone-top{padding:30px 22px 18px;color:#fff}
.app-icon{
  width:42px;height:42px;
  border-radius:16px;
  background:rgba(255,255,255,.18);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.22);
  margin-bottom:12px;
  position:relative;
}
.app-icon:before,.app-icon:after{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  width:18px;height:18px;
  border:3px solid rgba(255,255,255,.92);
  border-radius:999px;
  transform:translateX(-4px);
}
.app-icon:after{
  width:14px;height:14px;
  transform:translateX(6px) translateY(3px);
}
.phone-title{font-weight:900;font-size:20px}
.phone-subtitle{opacity:.92;font-size:12.8px;margin-top:6px}

.phone-card{
  background:#fff;
  border-radius:22px 22px 0 0;
  padding:18px 18px 18px;
}
.field-label{font-weight:700;font-size:12px;color:var(--muted);margin-bottom:10px}
.field{
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid rgba(11,16,32,.12);
  border-radius:14px;
  padding:12px 12px;
  background:#fff;
}
.chip{
  font-weight:800;
  color:var(--primary);
  background:rgba(13,69,210,.08);
  border:1px solid rgba(13,69,210,.16);
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
}
.placeholder{color:rgba(11,16,32,.45);font-weight:600}
.check-row{
  display:flex;
  gap:10px;
  align-items:center;
  margin:12px 2px 14px;
  color:var(--muted);
  font-size:12.5px;
  font-weight:600;
}
.checkbox{
  width:16px;height:16px;
  border-radius:4px;
  border:1.5px solid rgba(11,16,32,.20);
  background:#fff;
}
.btn-disabled{
  width:100%;
  text-align:center;
  padding:12px 14px;
  border-radius:14px;
  background:#E8ECF6;
  color:rgba(11,16,32,.42);
  font-weight:800;
  border:1px solid rgba(11,16,32,.08);
}
.fine-print{margin-top:10px;font-size:11.2px;color:rgba(11,16,32,.52);font-weight:600}
.fine-print .link{color:var(--primary)}

/* Expert phone template (purple like screenshot) */
.phone-screen--expert{
  background:#6A54FF;
  border-radius:48px;
  border-width:12px;
}
.phone-screen--expert .phone-notch{
  /* notch is sibling, keep as-is */
}
.phone-statusbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 18px 0;
}
.phone-statusbar svg{display:block;filter:drop-shadow(0 10px 18px rgba(0,0,0,.14))}

.expert-head{
  padding:18px 22px 6px;
  color:#fff;
}
.expert-title{
  font-size:22px;
  font-weight:800;
  letter-spacing:-.01em;
}
.expert-subtitle{
  margin-top:4px;
  font-size:13px;
  font-weight:700;
  opacity:.88;
}
.expert-art{
  padding:4px 20px 0;
  display:flex;
  justify-content:flex-end;
}
.expert-art img{
  width:170px;
  max-width:60%;
  opacity:.98;
}

.expert-sheet{
  margin-top:12px;
  background:#fff;
  border-radius:28px 28px 0 0;
  padding:16px 16px 14px;
}
.sheet-label{
  font-size:12px;
  font-weight:800;
  color:#6B7280;
  margin-bottom:10px;
}
.sheet-field{
  display:flex;
  align-items:center;
  gap:10px;
  background:#F4F6FA;
  border:1px solid rgba(11,16,32,.10);
  border-radius:14px;
  padding:12px 12px;
}
.sheet-field .country{
  font-weight:900;
  color:#E75B8A;
}
.sheet-placeholder{
  font-weight:800;
  color:rgba(11,16,32,.55);
}
.sheet-help{
  margin:10px 2px 12px;
  color:#14A06F;
  font-size:12px;
  font-weight:700;
}
.sheet-cta{
  width:100%;
  text-align:center;
  padding:13px 14px;
  border-radius:16px;
  background:#F7B6C9;
  color:#FFFFFF;
  font-weight:900;
  letter-spacing:.02em;
}
.sheet-terms{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top:12px;
  color:rgba(11,16,32,.55);
  font-size:11.2px;
  font-weight:650;
}
.sheet-check{
  width:16px;height:16px;
  border-radius:5px;
  background:#E8EBF4;
  border:1px solid rgba(11,16,32,.16);
  flex:0 0 auto;
  margin-top:2px;
}
.sheet-link{color:#0D45D2;font-weight:800}

/* Sections */
.section{padding:56px 0}
.section-tint{background:linear-gradient(180deg, #FFFFFF 0%, #F6F9FF 100%)}
.section-head{margin-bottom:18px}
.section-head h2{margin:0 0 6px;font-size:30px;letter-spacing:-.02em}
.muted{color:var(--muted)}
.tiny{font-size:12px}

.grid{display:grid;gap:18px}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 10px 30px rgba(11,16,32,.06);
}

/* Plans */
.plans{grid-template-columns:repeat(4,1fr)}
.plan{
  padding:22px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.plan h3{margin:0 0 6px;font-size:18px}
.price{
  margin-top:16px;
  font-weight:900;
  font-size:22px;
  color:var(--primary);
  padding:14px 12px;
  border-radius:14px;
  background:rgba(13,69,210,.08);
  border:1px solid rgba(13,69,210,.14);
}
.plan-wide{grid-column:1 / span 2}

/* Stats */
.stats{grid-template-columns:repeat(4,1fr)}
.stat{padding:18px 18px 16px;text-align:center}
.stat-icon{
  width:44px;height:44px;
  margin:-36px auto 12px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#fff;
  border:1px solid var(--border);
  color:var(--primary);
  box-shadow:0 12px 30px rgba(11,16,32,.08);
  font-weight:900;
}
.stat-number{font-size:38px;font-weight:900;letter-spacing:-.02em}
.stat-label{color:var(--muted);font-weight:700}

/* About split */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
}
.illus{
  background:rgba(13,69,210,.06);
  border:1px solid var(--border);
  border-radius:24px;
  padding:18px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.about-img{
  width:100%;
  height:auto;
  max-width:560px;
}
.about-copy h2{margin:0 0 10px;font-size:32px;letter-spacing:-.02em}
.checklist{margin:14px 0 0;padding:0;list-style:none}
.checklist li{
  position:relative;
  padding-left:30px;
  margin:10px 0;
  color:var(--muted);
  font-weight:600;
}
.checklist li:before{
  content:"✓";
  position:absolute;
  left:0;top:0;
  width:20px;height:20px;
  border-radius:999px;
  background:rgba(13,69,210,.10);
  color:var(--primary);
  display:grid;
  place-items:center;
  font-weight:900;
  font-size:12px;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1.3fr;
  gap:18px;
  align-items:start;
}
.contact-cards{display:grid;gap:14px}
.contact-item{display:flex;gap:14px;padding:16px}
.contact-icon{
  width:46px;height:46px;
  border-radius:16px;
  background:rgba(13,69,210,.10);
  color:var(--primary);
  display:grid;
  place-items:center;
  font-size:18px;
  flex:0 0 auto;
}
.contact-title{font-weight:900;margin-bottom:2px}

.form{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.field-wrap{display:block}
.field-wrap input,.field-wrap textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(11,16,32,.12);
  padding:12px 12px;
  outline:none;
  background:#fff;
}
.field-wrap input:focus,.field-wrap textarea:focus{
  border-color:rgba(13,69,210,.45);
  box-shadow:0 0 0 4px rgba(13,69,210,.14);
}
.field-wrap textarea{resize:vertical}

/* Footer */
.site-footer{
  background:var(--primary);
  color:#fff;
  padding:22px 0;
  margin-top:0;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footer-brand{font-weight:900}
.footer-muted{opacity:.9;font-weight:600;font-size:13px}
.footer-links{display:flex;gap:14px;flex-wrap:wrap}
.footer-links a{
  color:rgba(255,255,255,.92);
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  padding:10px 10px;
  border-radius:12px;
}
.footer-links a:hover{background:rgba(255,255,255,.12);color:#fff}

/* Back to top */
.to-top{
  position:fixed;
  right:16px;
  bottom:16px;
  width:46px;height:46px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.0);
  background:var(--primary);
  color:#fff;
  font-weight:900;
  box-shadow:0 18px 40px rgba(13,69,210,.32);
  cursor:pointer;
  opacity:0;
  transform:translateY(10px);
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease, background .18s ease;
}
.to-top:hover{background:var(--primary-700)}
.to-top.is-visible{opacity:1;transform:translateY(0);pointer-events:auto}

/* Policy pages */
.page-hero{
  background:
    radial-gradient(900px 420px at 16% 18%, rgba(13,69,210,.18), transparent 55%),
    linear-gradient(180deg, #FFFFFF 0%, #F6F9FF 100%);
  padding:44px 0 18px;
}
.page-title{margin:0;font-size:38px;letter-spacing:-.02em}
.page-subtitle{margin:10px 0 0;color:var(--muted);font-weight:600}
.policy{
  padding:18px 0 62px;
}
.policy article{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:24px;
  box-shadow:0 12px 34px rgba(11,16,32,.06);
}
.policy h2{margin:22px 0 10px;font-size:20px}
.policy h2:first-of-type{margin-top:0}
.policy p{margin:0 0 10px;color:var(--muted);font-weight:550}
.policy ul{margin:8px 0 12px;padding-left:18px;color:var(--muted);font-weight:600}
.policy li{margin:6px 0}
.note{
  background:rgba(13,69,210,.06);
  border:1px solid rgba(13,69,210,.14);
  color:var(--muted);
  border-radius:16px;
  padding:14px 14px;
  font-weight:650;
}

/* Responsive */
@media (max-width: 1040px){
  .hero-inner{grid-template-columns:1fr;gap:26px}
  .hero-copy h1{font-size:40px}
  .hero-badges{grid-template-columns:1fr 1fr}
  .plans{grid-template-columns:repeat(2,1fr)}
  .plan-wide{grid-column:auto}
  .stats{grid-template-columns:repeat(2,1fr)}
  .split{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
}

@media (max-width: 780px){
  .nav-toggle{display:inline-flex}
  .site-nav{
    position:absolute;
    left:0;right:0;
    top:74px;
    background:var(--primary);
    border-top:1px solid rgba(255,255,255,.14);
    padding:12px 20px 16px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }
  .site-header.is-open .site-nav{display:flex}
  .nav-link{width:100%}
  .hero{padding:44px 0 30px}
  .hero-copy h1{font-size:34px}
  .hero-badges{grid-template-columns:1fr}
  .row{grid-template-columns:1fr}
}

