:root{
  --navy:#0b2b4a;
  --navy-2:#123b63;
  --blue:#1f6fff;
  --blue-2:#2e8bff;
  --green:#18a957;
  --bg:#f3f7fc;
  --text:#0f172a;
  --muted:#5b677a;
  --card:#ffffff;
  --line:#dbe6f2;
  --line-soft:#e9f0f7;
  --shadow-sm:0 10px 24px rgba(15,23,42,.08);
  --shadow-md:0 16px 40px rgba(15,23,42,.12);
  --shadow-lg:0 24px 60px rgba(15,23,42,.18);
  --radius:22px;
  --radius-sm:16px;
  --header-h:84px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{min-height:100%}
body{
  margin:0;
  color:var(--text);
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(51,124,255,.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.76)),
    url('/img/easyimmigrateusa_backgroundv2.webp') center top / cover no-repeat fixed;
  padding-top:var(--header-h);
}

@media (max-width:1024px){
  body{background-attachment:scroll}
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,textarea{font:inherit}

.container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

.container.wide{
  width:min(1320px, calc(100% - 32px));
}

.section{
  padding:8px 0 14px;
}

.glass-panel{
  background:rgba(255,255,255,.76);
  border:1px solid rgba(255,255,255,.7);
  box-shadow:var(--shadow-md);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.kicker-pill,
.section-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
}

.section-pill{
  background:#fff;
  color:var(--navy);
  border:1px solid var(--line);
}

.card-white{
  background:#fff;
  border:1px solid var(--line-soft);
  box-shadow:var(--shadow-sm);
}

@media (max-width:860px){
  :root{--header-h:74px}
  .container,.container.wide{width:min(100% - 24px, 1320px)}
  .section{padding:8px 0 14px}
}

