:root{
  --bg:#f7f8fc;
  --bg-soft:#eef4ff;
  --paper:#ffffff;
  --paper-soft:#f8fbff;
  --primary:#2554ff;
  --primary-700:#1738d9;
  --navy-950:#0b1630;
  --navy-900:#13294b;
  --navy-800:#22416e;
  --navy-700:#35588c;
  --ink:#17263a;
  --muted:#5f6f86;
  --muted-2:#7d8ea6;
  --line:#dbe5f3;
  --line-strong:#c9d8ee;
  --success:#0d9f6e;
  --warning:#b86a18;
  --shadow-xl:0 36px 96px rgba(13,31,58,.11);
  --shadow-lg:0 24px 64px rgba(13,31,58,.09);
  --shadow-md:0 16px 38px rgba(13,31,58,.07);
  --radius-xl:34px;
  --radius-lg:28px;
  --radius-md:22px;
  --radius-sm:16px;
  --max:1260px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Plus Jakarta Sans",Arial,Helvetica,sans-serif;
  color:var(--ink);
  line-height:1.65;
  background:
    radial-gradient(circle at top left, rgba(37,84,255,.07), transparent 22%),
    radial-gradient(circle at top right, rgba(37,84,255,.05), transparent 24%),
    linear-gradient(180deg,#fbfcff 0%,#f6f8fd 48%,#f8f9fc 100%);
}
body:before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:.45;
  background-image:
    linear-gradient(rgba(37,84,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,84,255,.03) 1px, transparent 1px);
  background-size:120px 120px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.28), transparent 88%);
}
a{color:inherit;text-decoration:none}
img{max-width:100%}

.container{width:min(var(--max),calc(100% - 32px));margin:0 auto}
.section{padding:72px 0;position:relative}
.hidden{display:none!important}

header{
  position:sticky;
  top:0;
  z-index:40;
  backdrop-filter:blur(18px);
  background:linear-gradient(145deg, rgba(15,44,135,.96) 0%, rgba(20,67,202,.96) 48%, rgba(30,93,255,.96) 100%);
  border-bottom:1px solid rgba(255,255,255,.12);
  box-shadow:0 16px 36px rgba(11,22,48,.16);
}
.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  color:#fff;
  font-size:18px;
  letter-spacing:-.02em;
}
.brand-mark{
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  border-radius:18px;
  color:#fff;
  font-weight:900;
  font-size:15px;
  letter-spacing:.05em;
  background:linear-gradient(145deg,var(--primary),var(--primary-700));
  box-shadow:0 14px 28px rgba(8,24,86,.22);
}
.nav-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  color:rgba(255,255,255,.82);
  font-size:14px;
  font-weight:700;
}
.nav-links a{
  padding:10px 14px;
  border-radius:999px;
  transition:background .22s ease,color .22s ease,transform .22s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"]{
  color:#fff;
  background:rgba(255,255,255,.12);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:0;
  cursor:pointer;
  border-radius:16px;
  padding:14px 22px;
  font:inherit;
  font-size:14px;
  font-weight:800;
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:linear-gradient(145deg,var(--primary),var(--primary-700));
  color:#fff;
  box-shadow:0 18px 42px rgba(37,84,255,.22);
}
.btn-secondary{
  background:#fff;
  color:var(--primary-700);
  border:1px solid var(--line);
  box-shadow:0 12px 28px rgba(13,31,58,.07);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.9);
  border:1px solid var(--line);
  box-shadow:0 8px 22px rgba(13,31,58,.04);
  color:var(--navy-700);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.heading{
  max-width:820px;
  margin:0 auto 22px;
  text-align:center;
}
.heading h2{
  margin:12px 0 10px;
  font-size:clamp(30px,4vw,50px);
  line-height:1.02;
  letter-spacing:-.05em;
  color:var(--navy-950);
}
.heading p{
  margin:0;
  font-size:18px;
  line-height:1.8;
  color:var(--muted);
}

.page-hero{
  padding:34px 0 54px;
  overflow:hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(37,84,255,.09), transparent 26%),
    radial-gradient(circle at 84% 10%, rgba(37,84,255,.06), transparent 20%),
    linear-gradient(180deg,#f4f8ff 0%,#fbfcff 60%,#f7f9fd 100%);
}
.page-hero-wrap{
  position:relative;
  max-width:1420px;
  margin:0 auto;
  padding:22px;
  border-radius:40px;
  border:1px solid rgba(219,229,243,.94);
  background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.72));
  box-shadow:0 32px 88px rgba(11,22,48,.10), inset 0 1px 0 rgba(255,255,255,.68);
  backdrop-filter:blur(16px);
}
.page-hero-wrap:before{
  content:"";
  position:absolute;
  right:4%;
  top:-54px;
  width:260px;
  height:260px;
  border-radius:50%;
  border:1px solid rgba(37,84,255,.08);
  box-shadow:0 0 0 82px rgba(37,84,255,.03),0 0 0 164px rgba(37,84,255,.018);
  pointer-events:none;
}
.page-hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  align-items:center;
}
.page-hero-copy{
  max-width:860px;
  margin:0 auto;
  padding:12px 8px 12px 4px;
  text-align:center;
}
.page-hero-copy h1{
  margin:16px 0 14px;
  font-size:clamp(42px,5.2vw,74px);
  line-height:.96;
  letter-spacing:-.06em;
  color:var(--navy-950);
}
.page-hero-copy p{
  margin:0 0 18px;
  font-size:18px;
  color:var(--muted);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:24px;
  justify-content:center;
}
.hero-note{
  margin-top:18px;
  color:var(--muted-2);
  font-size:13px;
  font-weight:700;
  text-align:center;
}
.hero-panel{
  position:relative;
  padding:26px;
  min-height:420px;
  border-radius:30px;
  border:1px solid rgba(219,229,243,.94);
  background:
    radial-gradient(circle at 82% 18%, rgba(37,84,255,.12), transparent 24%),
    linear-gradient(180deg,#ffffff 0%,#f4f8ff 100%);
  box-shadow:0 26px 72px rgba(11,22,48,.10);
  overflow:hidden;
}
.hero-panel:before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(37,84,255,.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,84,255,.038) 1px, transparent 1px);
  background-size:58px 58px;
  mask-image:radial-gradient(circle at center, rgba(0,0,0,.82), transparent 90%);
}
.hero-stack{
  position:relative;
  z-index:1;
  display:grid;
  gap:16px;
}
.glass-card{
  position:relative;
  padding:22px;
  border-radius:24px;
  border:1px solid rgba(210,223,248,.95);
  background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(244,248,255,.96));
  box-shadow:0 22px 54px rgba(11,22,48,.08);
}
.glass-card h3,
.metric-card h3,
.page-card h3{
  margin:0 0 10px;
  color:var(--navy-950);
  font-size:24px;
  line-height:1.08;
  letter-spacing:-.04em;
}
.glass-card p,
.metric-card p,
.page-card p,
.contact-card p,
.policy-card p,
.policy-card li{
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.8;
}
.glass-card p + p,
.page-card p + p,
.policy-card p + p{margin-top:14px}

.hero-mini-grid,
.stats-grid,
.feature-grid,
.contact-grid,
.policy-grid,
.link-grid{
  display:grid;
  gap:18px;
}
.hero-mini-grid{grid-template-columns:repeat(2,1fr)}
.stats-grid{grid-template-columns:repeat(3,1fr)}
.feature-grid{grid-template-columns:repeat(3,1fr)}
.contact-grid{grid-template-columns:repeat(3,1fr)}
.policy-grid{grid-template-columns:260px 1fr}
.link-grid{grid-template-columns:repeat(2,1fr)}

.metric-card,
.page-card,
.contact-card,
.policy-card,
.toc-card,
.cta-band{
  position:relative;
  overflow:hidden;
  padding:30px;
  border-radius:30px;
  border:1px solid rgba(210,223,248,.95);
  background:linear-gradient(180deg,rgba(255,255,255,.99),rgba(243,248,255,.98));
  box-shadow:0 24px 60px rgba(11,22,48,.08);
}
.metric-card:before,
.page-card:before,
.contact-card:before,
.policy-card:before,
.toc-card:before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:1px;
  background:linear-gradient(90deg, rgba(53,88,140,0), rgba(56,111,255,.42), rgba(53,88,140,0));
}
.metric-card span,
.contact-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(210,223,248,.92);
  background:rgba(255,255,255,.88);
  color:var(--navy-700);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.metric-card strong{
  display:block;
  margin-bottom:10px;
  color:var(--navy-950);
  font-size:30px;
  line-height:1.06;
  letter-spacing:-.05em;
}

.page-section{padding-top:20px}
.page-section .heading{margin-bottom:24px}
.page-section .heading h2{font-size:clamp(29px,3.5vw,46px)}
.page-section .heading p{max-width:820px;margin:0 auto}

.list-clean{
  margin:18px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
}
.list-clean li{
  padding:16px 18px;
  border-radius:20px;
  border:1px solid rgba(210,223,248,.92);
  background:linear-gradient(180deg,#ffffff 0%,#f4f8ff 100%);
  color:var(--muted);
  font-size:18px;
  line-height:1.8;
}
.list-clean strong{
  display:block;
  margin-bottom:4px;
  color:var(--navy-900);
  font-size:18px;
}

.check-grid{
  display:grid;
  gap:14px;
  margin-top:18px;
}
.check-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
}
.check-dot{
  width:12px;
  height:12px;
  margin-top:7px;
  border-radius:999px;
  background:linear-gradient(145deg,var(--primary),var(--primary-700));
  box-shadow:0 0 0 6px rgba(37,84,255,.10);
  flex:0 0 auto;
}

.contact-layout{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:22px;
  align-items:start;
}
.contact-card h3{margin:0 0 12px}
.contact-lines{
  display:grid;
  gap:14px;
  margin-top:16px;
}
.contact-line{
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(210,223,248,.9);
  background:#fff;
}
.contact-line strong{
  display:block;
  margin-bottom:4px;
  color:var(--navy-900);
  font-size:17px;
}
.contact-line span,
.contact-line a{color:var(--muted);font-size:18px;line-height:1.8}

.contact-form{
  display:grid;
  gap:14px;
  margin-top:16px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.field label{
  font-size:13px;
  font-weight:800;
  color:var(--navy-900);
}
.field input,
.field textarea{
  width:100%;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(210,223,248,.92);
  background:linear-gradient(180deg,#ffffff 0%,#f6f9ff 100%);
  font:inherit;
  color:var(--ink);
  outline:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.7);
}
.field input:focus,
.field textarea:focus{
  border-color:#9eb8ff;
  box-shadow:0 0 0 4px rgba(37,84,255,.08);
}
.helper-note{
  margin-top:14px;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(210,223,248,.92);
  background:linear-gradient(180deg,rgba(255,255,255,.95),rgba(242,247,255,.96));
  color:var(--muted);
  font-size:18px;
  line-height:1.8;
}

.toc-card{
  position:sticky;
  top:110px;
  align-self:start;
}
.toc-card h3{
  margin:0 0 12px;
  font-size:22px;
  line-height:1.1;
  letter-spacing:-.03em;
}
.toc-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}
.toc-list a{
  display:block;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(244,248,255,.92);
  border:1px solid rgba(210,223,248,.9);
  color:var(--navy-800);
  font-weight:700;
  font-size:14px;
}
.toc-list a:hover{background:#fff}
.policy-card{scroll-margin-top:110px}
.policy-card h3{
  margin:0 0 14px;
  font-size:28px;
  line-height:1.05;
  letter-spacing:-.04em;
  color:var(--navy-950);
}
.policy-card ul{
  margin:14px 0 0;
  padding-left:18px;
}
.policy-card li + li{margin-top:8px}
.policy-note{
  margin-top:16px;
  padding:16px 18px;
  border-radius:18px;
  background:linear-gradient(180deg,#fff9ed 0%,#fffdf8 100%);
  border:1px solid #ecd8ac;
  color:#7f5f1a;
  font-size:17px;
  line-height:1.8;
}

.breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:center;
  margin:0 0 16px;
  color:var(--muted-2);
  font-size:13px;
  font-weight:700;
}
.breadcrumbs a{color:var(--navy-700)}
.article-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-top:18px;
}
.article-meta span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.9);
  border:1px solid rgba(210,223,248,.92);
  color:var(--navy-800);
  font-size:12px;
  font-weight:800;
}
.article-layout{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:22px;
  align-items:start;
}
.article-stack{
  display:grid;
  gap:20px;
}
.article-card{
  position:relative;
  overflow:hidden;
  padding:30px;
  border-radius:30px;
  border:1px solid rgba(210,223,248,.95);
  background:linear-gradient(180deg,rgba(255,255,255,.99),rgba(243,248,255,.98));
  box-shadow:0 24px 60px rgba(11,22,48,.08);
  scroll-margin-top:110px;
}
.article-card:before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:1px;
  background:linear-gradient(90deg, rgba(53,88,140,0), rgba(56,111,255,.42), rgba(53,88,140,0));
}
.article-card h2{
  margin:0 0 14px;
  font-size:clamp(30px,3.7vw,46px);
  line-height:1.04;
  letter-spacing:-.045em;
  color:var(--navy-950);
}
.article-card h3{
  margin:22px 0 10px;
  font-size:24px;
  line-height:1.1;
  letter-spacing:-.03em;
  color:var(--navy-950);
}
.article-card p,
.article-card li{
  color:var(--muted);
  font-size:18px;
  line-height:1.8;
}
.article-card p{margin:0}
.article-card p + p{margin-top:14px}
.article-card ul{
  margin:16px 0 0;
  padding-left:18px;
}
.article-card li + li{margin-top:10px}
.article-lead{
  font-size:18px!important;
  color:var(--navy-800)!important;
}
.article-callout{
  margin-top:18px;
  padding:18px 20px;
  border-radius:20px;
  border:1px solid rgba(210,223,248,.92);
  background:linear-gradient(180deg,#ffffff 0%,#f4f8ff 100%);
  color:var(--navy-800);
  font-size:18px;
  line-height:1.8;
}
.article-callout strong{color:var(--navy-950)}
.price-table-wrap{
  margin-top:18px;
  border:1px solid rgba(210,223,248,.92);
  border-radius:22px;
  overflow:auto;
  background:#fff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.74);
}
.price-table{
  width:100%;
  min-width:640px;
  border-collapse:collapse;
}
.price-table th,
.price-table td{
  padding:16px 18px;
  border-bottom:1px solid rgba(224,232,243,.92);
  text-align:left;
  vertical-align:top;
}
.price-table th{
  background:linear-gradient(180deg,#f4f8ff 0%,#edf4ff 100%);
  color:var(--navy-900);
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.price-table td{
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}
.price-table td strong{
  color:var(--navy-950);
  font-size:16px;
}
.price-table tr:last-child td{border-bottom:0}
.faq-stack{
  display:grid;
  gap:14px;
  margin-top:18px;
}
details.article-faq{
  padding:20px 22px;
  border-radius:22px;
  border:1px solid rgba(210,223,248,.92);
  background:linear-gradient(180deg,#ffffff 0%,#f4f8ff 100%);
  box-shadow:0 18px 40px rgba(11,22,48,.06);
}
details.article-faq summary{
  cursor:pointer;
  list-style:none;
  position:relative;
  padding-right:28px;
  color:var(--navy-950);
  font-size:18px;
  font-weight:800;
  letter-spacing:-.02em;
}
details.article-faq summary::-webkit-details-marker{display:none}
details.article-faq summary:after{
  content:"+";
  position:absolute;
  right:0;
  top:-1px;
  color:var(--primary);
  font-size:24px;
}
details.article-faq[open] summary:after{content:"–"}
details.article-faq p{
  margin-top:12px;
}

.article-hero-simple .page-hero-copy{
  max-width:900px;
}
.article-hero-simple .page-hero-copy p{
  max-width:820px;
  margin-left:auto;
  margin-right:auto;
}
.article-meta-line{
  margin-top:8px;
  color:var(--muted-2);
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.article-simple-section{
  padding-top:24px;
}
.article-simple-toc{
  max-width:920px;
  margin:0 auto 36px;
  padding:24px 26px;
  border:1px solid #cfdcf4;
  border-radius:24px;
  background:linear-gradient(180deg,#ffffff 0%,#edf4ff 100%);
  box-shadow:0 20px 46px rgba(11,22,48,.07);
}
.article-simple-toc h2{
  margin:0 0 14px;
  color:#000;
  font-size:28px;
  line-height:1.08;
  letter-spacing:-.03em;
}
.article-simple-toc-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.article-simple-toc-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid #c8d8f4;
  background:#fff;
  color:#000;
  font-size:14px;
  font-weight:700;
  box-shadow:0 10px 22px rgba(11,22,48,.06);
  text-decoration:none;
}
.article-simple-toc-links a:hover{
  border-color:var(--primary);
  color:var(--primary-700);
  background:#f8fbff;
}
.article-simple-body{
  max-width:920px;
  margin:0 auto;
}
.article-simple-body h2{
  margin:40px 0 14px;
  color:#000;
  font-size:clamp(28px,3.3vw,40px);
  line-height:1.08;
  letter-spacing:-.04em;
}
.article-simple-body h2:first-child{margin-top:0}
.article-simple-body h3{
  margin:26px 0 10px;
  color:#000;
  font-size:22px;
  line-height:1.12;
  letter-spacing:-.03em;
}
.article-simple-body p,
.article-simple-body li,
.article-simple-body th,
.article-simple-body td{
  color:#000;
}
.article-simple-body p{
  margin:0 0 18px;
  font-size:18px;
  line-height:1.85;
}
.article-simple-body .article-lead{
  font-size:18px!important;
  line-height:1.85;
  color:#000!important;
}
.article-simple-body ul{
  margin:0 0 18px;
  padding-left:24px;
}
.article-simple-body li{
  margin-bottom:10px;
  font-size:18px;
  line-height:1.85;
}
.article-simple-body strong{color:#000}
.article-simple-body .price-table-wrap{
  margin:22px 0 24px;
  border:1px solid #bfc9d8;
  border-radius:18px;
  background:#fff;
  box-shadow:none;
}
.article-simple-body .price-table{
  min-width:680px;
}
.article-simple-body .price-table th,
.article-simple-body .price-table td{
  border:1px solid #d3dbe6;
}
.article-simple-body .price-table th{
  background:#f4f8ff;
  color:#000;
}
.article-simple-body .price-table td{
  background:#fff;
  color:#000;
}
.article-simple-body .price-table td strong{
  color:#000;
}
.article-featured-image{
  max-width:920px;
  margin:0 auto 28px;
}
.article-featured-image img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
  border-radius:28px;
  border:2px solid #d3dbe6;
  outline:1px solid #eef4ff;
  outline-offset:0;
  background:#f4f8ff;
  box-shadow:0 20px 46px rgba(11,22,48,.08);
}
.blog-card-image{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
  border-radius:22px;
  margin-bottom:18px;
  border:2px solid #d3dbe6;
  outline:1px solid #eef4ff;
  outline-offset:0;
  background:#f4f8ff;
}
.article-simple-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}
.article-simple-cta{
  margin-top:34px;
  padding:28px 30px;
  border:1px solid #cad9f2;
  border-radius:24px;
  background:linear-gradient(180deg,#ffffff 0%,#edf4ff 100%);
  box-shadow:0 22px 50px rgba(11,22,48,.08);
}
.article-simple-cta h3{
  margin:0 0 10px;
  color:#000;
  font-size:28px;
  line-height:1.08;
  letter-spacing:-.03em;
}
.article-simple-cta p{
  margin:0;
  color:#000;
  font-size:18px;
  line-height:1.8;
}

.cta-band{
  margin-top:26px;
  padding:34px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.18), transparent 24%),
    radial-gradient(circle at 66% 74%, rgba(255,255,255,.11), transparent 26%),
    linear-gradient(145deg,#0f2c87 0%,#1443ca 48%,#1e5dff 100%);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  box-shadow:0 34px 80px rgba(37,84,255,.22);
}
.cta-band h3{
  margin:0 0 10px;
  font-size:clamp(28px,3.5vw,44px);
  line-height:1.02;
  letter-spacing:-.05em;
}
.cta-band p{
  margin:0;
  color:rgba(255,255,255,.82);
}

footer{
  margin-top:0;
  padding:72px 0 30px;
  background:
    radial-gradient(circle at 84% 14%, rgba(146,190,255,.18), transparent 24%),
    radial-gradient(circle at 10% 82%, rgba(255,255,255,.08), transparent 22%),
    linear-gradient(145deg,#0f2c87 0%,#1443ca 48%,#1e5dff 100%);
  color:rgba(255,255,255,.82);
  position:relative;
  overflow:hidden;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr 1fr;
  gap:24px;
  margin:0 0 24px;
}
.footer-grid h3,
.footer-grid h4{
  margin-top:0;
  color:#fff;
  letter-spacing:-.02em;
}
.footer-grid p,
.footer-grid li,
.footer-grid a{color:rgba(255,255,255,.76)}
.footer-brand{display:flex;align-items:center;gap:14px;margin-bottom:16px}
.footer-link-list{list-style:none;margin:0;padding:0;display:grid;gap:10px}
.footer-link-list a:hover{color:#fff}
.footer-location-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 14px;
}
.footer-locations-compact{
  grid-column:1 / -1;
  padding-top:8px;
}
.footer-location-inline{
  display:flex;
  flex-wrap:wrap;
  gap:8px 18px;
  margin-top:10px;
}
.footer-location-inline li{
  position:relative;
  padding-left:12px;
}
.footer-location-inline li:before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:rgba(255,255,255,.55);
}
.footer-location-list a{
  color:rgba(255,255,255,.76);
}
.footer-location-list a:hover{color:#fff}
.footer-bottom{
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  font-size:14px;
}

@media (max-width:1100px){
  .page-hero-grid,
  .contact-layout,
  .article-layout,
  .policy-grid,
  .footer-grid{grid-template-columns:1fr}
  .stats-grid,
  .feature-grid,
  .contact-grid,
  .link-grid{grid-template-columns:repeat(2,1fr)}
  .toc-card{position:relative;top:auto}
}

@media (max-width:760px){
  .container{width:min(var(--max),calc(100% - 24px))}
  .section{padding:52px 0}
  .nav{flex-wrap:wrap;justify-content:center;padding:14px 0;text-align:center}
  .brand{width:100%;justify-content:center}
  .nav-links{width:100%;justify-content:center}
  .page-hero{padding:20px 0 36px}
  .page-hero-wrap{padding:18px;border-radius:30px}
  .page-hero-copy{padding:4px 2px}
  .page-hero-copy h1{font-size:clamp(34px,10vw,50px)}
  .hero-panel{min-height:auto;padding:18px}
  .stats-grid,
  .feature-grid,
  .contact-grid,
  .hero-mini-grid,
  .link-grid{grid-template-columns:1fr}
  .page-card,
  .metric-card,
  .contact-card,
  .policy-card,
  .article-card,
  .toc-card,
  .cta-band{padding:22px}
  .breadcrumbs,
  .article-meta{justify-content:flex-start}
  .article-simple-toc{margin-bottom:28px}
  .article-simple-toc h2{font-size:24px}
  .article-simple-body p,
  .article-simple-body li{font-size:17px;line-height:1.8}
  .article-simple-body .article-lead{font-size:17px!important}
  .price-table,
  .article-simple-body .price-table{
    min-width:0;
    table-layout:fixed;
  }
  .price-table th,
  .price-table td,
  .article-simple-body .price-table th,
  .article-simple-body .price-table td{
    padding:12px 10px;
    font-size:14px;
    line-height:1.55;
    word-break:break-word;
  }
  .price-table td strong,
  .article-simple-body .price-table td strong{
    font-size:14px;
  }
  .article-featured-image{margin:0 auto 24px}
  .article-featured-image img{border-radius:22px}
  .article-simple-toc{padding:20px}
  .article-simple-cta{padding:22px}
  .article-simple-cta h3{font-size:24px}
  .footer-location-list{grid-template-columns:1fr 1fr}
  .footer-location-inline{
    gap:8px 14px;
  }
}