:root{
  /* Light theme: white + light-blue + orange */
  --bg: #f7fbff;
  --bg2:#ffffff;

  --surface:#ffffff;
  --surface2:#eef6ff;

  --text:#0b1b2a;
  --muted:#4b6478;
  --muted2:#6a879c;

  --line: rgba(10, 35, 60, .12);
  --line2: rgba(10, 35, 60, .08);

  --blue:#2da8ff;
  --blue2:#78c8ff;

  --orange:#ff7a18;
  --orange2:#ffb067;

  --shadow: 0 22px 55px rgba(10,30,50,.12);
  --shadow2: 0 12px 28px rgba(10,30,50,.10);

  --radius: 18px;
  --radius2: 14px;
  --container: 1120px;

  /* German flag palette */
  --de-black: #000000;
  --de-red: #dd0000;
  --de-gold: #ffce00;

  /* Soft tints for light backgrounds */
  --de-red-soft: rgba(221,0,0,.10);
  --de-gold-soft: rgba(255,206,0,.18);
  --de-ink-soft: rgba(0,0,0,.05);
}

*{ 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);
  line-height: 1.55;

  background:
    radial-gradient(1200px 650px at 18% 0%, rgba(45,168,255,.18), transparent 60%),
    radial-gradient(900px 650px at 86% 10%, rgba(255,122,24,.16), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width: min(100% - 40px, var(--container));
  margin-inline:auto;
}

:focus-visible{
  outline: 3px solid rgba(45,168,255,.55);
  outline-offset: 3px;
  border-radius: 10px;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left: 16px;
  top: 16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  z-index:9999;
  box-shadow: var(--shadow2);
}

/* German flag stripe band (top of themed sections) */
.de-stripe{
  position: relative;
}
.de-stripe::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height: 8px;
  background: linear-gradient(
    to bottom,
    var(--de-black) 0%,
    var(--de-black) 33%,
    var(--de-red) 33%,
    var(--de-red) 66%,
    var(--de-gold) 66%,
    var(--de-gold) 100%
  );
  opacity: .95;
  z-index: 3;
  pointer-events:none;
}

/* German flag (CSS mini icon) */
.flag{
  display:inline-block;
  width: 20px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid rgba(10,35,60,.18);
  background: linear-gradient(
    to bottom,
    #000 0%,
    #000 33%,
    #dd0000 33%,
    #dd0000 66%,
    #ffce00 66%,
    #ffce00 100%
  );
  box-shadow: 0 6px 16px rgba(10,30,50,.10);
  flex: 0 0 auto;
}
.flag--sm{ width: 16px; height: 11px; border-radius: 3px; }

/* Topbar */
.topbar{
  position:relative;
  z-index:40;
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid var(--line2);
  backdrop-filter: blur(12px);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 0;
  gap: 14px;
}
.topbar__pill{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
}
.topbar__right{
  display:flex;
  gap: 10px;
  align-items:center;
  font-size: 12.5px;
  color: var(--muted);
}
.topbar__link{ opacity:.92; }
.topbar__link:hover{ opacity:1; text-decoration:underline; }
.sep{ opacity:.6; }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line2);
  transition: box-shadow .2s ease, background .2s ease;
}
.header.is-scrolled{
  box-shadow: 0 10px 30px rgba(10,30,50,.10);
  background: rgba(255,255,255,.88);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 240px;
}
.brand__mark{
  width: 44px;
  height: 44px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line2);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.brand__logo{
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 10px;
}
.brand__text{ display:flex; flex-direction:column; line-height:1.1; }
.brand__name{ font-weight: 800; letter-spacing: .2px; }
.brand__tag{ font-size: 12px; color: var(--muted); margin-top: 4px; }

/* Nav */
.nav{
  display:flex;
  align-items:center;
  gap: 6px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav__link{
  font-size: 13.5px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.nav__link:hover{
  background: rgba(45,168,255,.08);
  border-color: rgba(45,168,255,.18);
  color: var(--text);
}
.nav__link.is-active{
  background: rgba(45,168,255,.12);
  border-color: rgba(45,168,255,.22);
  color: var(--text);
}
.nav__link--cta{
  background: linear-gradient(135deg, rgba(45,168,255,.18), rgba(255,122,24,.18));
  border-color: rgba(10,35,60,.14);
  color: var(--text);
}
.nav__toggle{
  display:none;
  appearance:none;
  border:none;
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
  box-shadow: var(--shadow2);
  cursor:pointer;
}
.nav__toggleBars{
  display:block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}
.nav__toggleBars:before,
.nav__toggleBars:after{
  content:"";
  position:absolute;
  left:0;
  width: 18px;
  height: 2px;
  background: currentColor;
}
.nav__toggleBars:before{ top: -6px; }
.nav__toggleBars:after{ top: 6px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 650;
  font-size: 14px;
  cursor:pointer;
  transition: transform .2s ease, filter .2s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }
.btn--full{ width:100%; }

.btn--primary{
  background: linear-gradient(135deg, var(--blue), var(--orange));
  color: #ffffff;
  border-color: rgba(255,255,255,.35);
  box-shadow: 0 14px 34px rgba(45,168,255,.20), 0 14px 34px rgba(255,122,24,.16);
}
.btn--primary:hover{ filter: brightness(1.03); transform: translateY(-1px); }

.btn--secondary{
  background: #fff;
  border-color: var(--line);
  color: var(--text);
  box-shadow: var(--shadow2);
}
.btn--secondary:hover{ background: rgba(45,168,255,.06); transform: translateY(-1px); }

.btn--ghost{
  background: rgba(255,255,255,.65);
  border-color: var(--line);
  color: var(--text);
}
.btn--ghost:hover{ background: rgba(45,168,255,.08); }

.btn--link{
  background: transparent;
  border: none;
  color: rgba(45,168,255,.95);
  padding: 10px 0;
}
.btn--link:hover{ text-decoration: underline; }

/* Hero */
.hero{
  position:relative;
  padding: 66px 0 46px;
  overflow:hidden;
  border-bottom: 1px solid var(--line2);
}
.hero--de-red{
  background:
    radial-gradient(1200px 520px at 18% 0%, var(--de-red-soft), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,0));
}
.hero__bg{ position:absolute; inset:0; pointer-events:none; z-index:0; }
.gridlines{
  position:absolute;
  inset:-2px;
  background-image:
    linear-gradient(to right, rgba(10,35,60,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,35,60,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity:.40;
  mask-image: radial-gradient(70% 55% at 50% 40%, black 0%, transparent 70%);
}
.orb{
  position:absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: .55;
  animation: float 10s ease-in-out infinite;
}
.orb--blue{
  width: 420px;
  height: 420px;
  left: -150px;
  top: -170px;
  background: radial-gradient(circle at 35% 35%, rgba(45,168,255,.65), transparent 60%),
              radial-gradient(circle at 65% 70%, rgba(120,200,255,.55), transparent 60%);
}
.orb--orange{
  width: 520px;
  height: 520px;
  right: -190px;
  bottom: -220px;
  background: radial-gradient(circle at 40% 40%, rgba(255,122,24,.55), transparent 62%),
              radial-gradient(circle at 70% 60%, rgba(255,176,103,.55), transparent 62%);
  animation-delay: -3s;
}
@keyframes float{
  0%,100%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(0,-16px,0) scale(1.04); }
}

.hero__inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: 1.2fr .85fr;
  gap: 26px;
  align-items: start;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line2);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
}
.hero h1{
  margin: 14px 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.6px;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16.5px;
  max-width: 62ch;
}
.hero__actions{
  display:flex;
  align-items:center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.trust{
  list-style:none;
  padding:0;
  margin: 18px 0 0;
  display:grid;
  gap: 10px;
  color: var(--muted);
}
.check{
  display:inline-block;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  margin-right: 10px;
  transform: translateY(3px);
  background: linear-gradient(135deg, rgba(45,168,255,.95), rgba(255,122,24,.85));
  box-shadow: 0 0 0 4px rgba(45,168,255,.14);
  position:relative;
}
.check:after{
  content:"";
  position:absolute;
  left: 5px;
  top: 3px;
  width: 6px;
  height: 9px;
  border: 2px solid rgba(255,255,255,.95);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.hero__card{ position:relative; z-index:1; }
.heroCard{
  background: rgba(255,255,255,.80);
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroCard__top{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--line2);
  background: rgba(255,255,255,.85);
}
.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
}
.badge--soft{
  color: var(--text);
  background: rgba(45,168,255,.10);
  border-color: rgba(45,168,255,.18);
}
.heroCard__mid{ padding: 18px 16px; }
.heroCard__mid h3{ margin:0 0 8px; font-size: 18px; }
.heroCard__mid p{ margin:0 0 14px; color: var(--muted); }
.heroCard__ctaRow{
  display:grid;
  gap: 10px;
  margin: 12px 0 10px;
}
.miniStats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.miniStat{
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line2);
  background: rgba(45,168,255,.06);
}
.miniStat__num{ font-weight: 800; letter-spacing:.2px; }
.miniStat__label{ font-size: 12px; color: var(--muted); margin-top: 3px; }
.heroCard__bottom{
  padding: 14px 16px;
  border-top: 1px solid var(--line2);
  background: rgba(255,255,255,.70);
}

/* Results strip */
.results{
  padding: 36px 0 24px;
  border-bottom: 1px solid var(--line2);
}
.results--de-gold{
  background:
    radial-gradient(900px 520px at 16% 0%, var(--de-gold-soft), transparent 60%),
    rgba(255,255,255,.72);
}
.results__inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:center;
}
.results__headline h2{
  margin:0 0 8px;
  font-size: 22px;
}
.results__headline p{ margin:0; color: var(--muted); }
.results__cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.iconCard{
  border: 1px solid var(--line2);
  border-radius: 16px;
  background: #fff;
  padding: 14px;
  box-shadow: var(--shadow2);
}
.iconCard__icon{ font-size: 20px; margin-bottom: 8px; }
.iconCard h3{ margin:0 0 4px; font-size: 14px; }
.iconCard p{ margin:0; color: var(--muted); font-size: 13px; }

/* Sections */
.section{ padding: 66px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(238,246,255,.95), rgba(255,255,255,.95));
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
}

/* German flag "black" section tint (still light) */
.section--de-ink{
  background:
    radial-gradient(1000px 520px at 85% 0%, rgba(0,0,0,.06), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(238,246,255,.86));
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
}

.section__head{ margin-bottom: 22px; }
.section__head h2{
  margin: 0 0 8px;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.3px;
}
.section__head h3{ margin: 0 0 8px; font-size: 22px; }
.section__head p{
  margin:0;
  color: var(--muted);
  max-width: 92ch;
}
.section__cta{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

/* Grid and Cards */
.grid{ display:grid; gap: 14px; }
.grid--2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card{
  text-align:left;
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid var(--line2);
  background: #fff;
  box-shadow: var(--shadow2);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.card:hover{
  transform: translateY(-3px);
  background: rgba(45,168,255,.05);
  border-color: rgba(45,168,255,.20);
}
.card__icon{ font-size: 24px; margin-bottom: 10px; }
.card h3{ margin:0 0 8px; font-size: 18px; }
.card p{ margin:0; color: var(--muted); }

.divider{
  height: 1px;
  margin: 26px 0 22px;
  background: linear-gradient(90deg, transparent, rgba(10,35,60,.20), transparent);
}

/* Level tiles */
.levelGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.levelTile{
  text-align:left;
  border:none;
  cursor:pointer;
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid var(--line2);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(45,168,255,.06));
  box-shadow: var(--shadow2);
  transition: transform .2s ease, border-color .2s ease, filter .2s ease;
}
.levelTile:hover{
  transform: translateY(-3px);
  border-color: rgba(45,168,255,.28);
  filter: brightness(1.01);
}
.levelTile__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 10px;
}
.levelChip{
  font-weight: 800;
  letter-spacing: .5px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(45,168,255,.22);
  background: rgba(45,168,255,.10);
  color: var(--text);
}
.levelArrow{ color: var(--muted); }
.levelTile h3{ margin:0 0 6px; font-size: 16px; }
.levelTile p{ margin:0; color: var(--muted); }

/* Steps */
.steps{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap: 12px;
}
.step{
  display:grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items:start;
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid var(--line2);
  background: #fff;
  box-shadow: var(--shadow2);
}
.step__num{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  border: 1px solid rgba(255,255,255,.35);
}
.step__body h3{ margin:0 0 6px; font-size: 16px; }
.step__body p{ margin:0; color: var(--muted); }

/* Bullets */
.bullets{
  margin: 8px 0 0;
  color: var(--muted);
  padding-left: 18px;
}

/* Feature list + promo */
.featureList ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
  color: var(--muted);
}
.note{
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--radius2);
  border: 1px dashed rgba(10,35,60,.20);
  background: rgba(45,168,255,.06);
}
.note p{ margin: 6px 0 0; color: var(--muted); }

.promoCard{
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,122,24,.18);
  background: linear-gradient(180deg, #fff, rgba(255,122,24,.06));
  box-shadow: var(--shadow);
}
.promoCard h3{ margin:0 0 10px; font-size: 20px; }
.promoCard p{ margin:0 0 16px; color: var(--muted); }
.promoCard__actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* Testimonials */
.testimonialRow{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.quoteCard{
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid var(--line2);
  background: #fff;
  box-shadow: var(--shadow2);
}
.quote{ margin:0 0 10px; font-size: 15px; }
.who{ margin:0; color: var(--muted); font-size: 13px; }

/* Compare */
.compare{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.compare__col{
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid var(--line2);
  background: #fff;
  box-shadow: var(--shadow2);
}
.compare__col h4{ margin:0 0 10px; font-size: 16px; }
.compare__col ul{
  margin:0;
  color: var(--muted);
  padding-left: 18px;
}

/* Tabs (Deep Dive) */
.tabs{
  border-radius: var(--radius);
  border: 1px solid var(--line2);
  background: #fff;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.tabs__list{
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
  padding: 12px;
  border-bottom: 1px solid var(--line2);
  background: linear-gradient(90deg, rgba(45,168,255,.10), rgba(255,122,24,.08));
}
.tabs__tab{
  border: 1px solid rgba(10,35,60,.12);
  background: rgba(255,255,255,.85);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  cursor:pointer;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.tabs__tab:hover{
  transform: translateY(-1px);
  border-color: rgba(45,168,255,.24);
  background: rgba(45,168,255,.08);
}
.tabs__tab.is-active{
  background: linear-gradient(135deg, rgba(45,168,255,.18), rgba(255,122,24,.16));
  border-color: rgba(45,168,255,.28);
}

.tabs__panels{ padding: 14px; }
.tabs__panel{ display:none; }
.tabs__panel.is-active{ display:block; }

.panelGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items:start;
}
.panelMain{
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid var(--line2);
  background: rgba(45,168,255,.04);
}
.panelMain h3{ margin:0 0 8px; font-size: 20px; }
.panelLead{ margin: 0 0 14px; color: var(--muted); }
.panelMain h4{
  margin: 14px 0 8px;
  font-size: 14.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(10,35,60,.72);
}

.panelSide{
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid var(--line2);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,122,24,.06));
}
.sideBadge{
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(10,35,60,.10);
  background: rgba(255,255,255,.85);
  box-shadow: 0 10px 22px rgba(10,30,50,.08);
  margin-bottom: 12px;
}
.sideBadge__title{
  display:block;
  font-size: 12px;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.sideBadge__text{ display:block; font-weight: 650; color: var(--text); }

.panelCta{ display:grid; gap: 10px; margin-top: 8px; }

/* Apply */
.applyGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items:start;
}
.form{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line2);
  background: #fff;
  box-shadow: var(--shadow);
}
.form__row{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.field{
  display:flex;
  flex-direction:column;
  gap: 8px;
  margin-bottom: 12px;
}
label{ font-size: 13px; color: var(--muted); }

input, select, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(10,35,60,.14);
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input::placeholder, textarea::placeholder{ color: rgba(75,100,120,.65); }
input:focus, select:focus, textarea:focus{
  border-color: rgba(45,168,255,.55);
  box-shadow: 0 0 0 4px rgba(45,168,255,.16);
}
.field__error{
  min-height: 16px;
  font-size: 12px;
  color: #c2410c;
}
.form__microcopy{
  margin: 10px 0 0;
  font-size: 12.5px;
  color: var(--muted2);
}

.sideCard{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(45,168,255,.18);
  background: #fff;
  box-shadow: var(--shadow);
}
.sideCard h3{ margin:0 0 10px; }
.sideCard p{ margin:0 0 14px; color: var(--muted); }
.sideCard__stack{ display:grid; gap: 12px; margin: 14px 0 16px; }
.miniInfo{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line2);
  background: rgba(45,168,255,.05);
}
.miniInfo__icon{
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: #fff;
  border: 1px solid var(--line2);
  box-shadow: var(--shadow2);
}
.miniInfo__title{ font-weight: 800; }
.miniInfo__text{ font-size: 13px; color: var(--muted); margin-top: 2px; }

/* Accordion */
.accordion{ display:grid; gap: 10px; }
.accItem{
  border-radius: var(--radius2);
  border: 1px solid var(--line2);
  background: #fff;
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.accSummary{
  list-style:none;
  cursor:pointer;
  padding: 14px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  font-weight: 750;
}
.accSummary::-webkit-details-marker{ display:none; }
.accBody{ padding: 0 14px 14px; color: var(--muted); }
.accIcon{
  width: 28px;
  height: 28px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  border: 1px solid var(--line2);
  background: rgba(45,168,255,.08);
  color: var(--text);
  transition: transform .2s ease;
}
.accItem[open] .accIcon{ transform: rotate(45deg); }

/* Final CTA */
.finalCta{
  padding: 44px 0 54px;
  border-top: 1px solid var(--line2);
  background:
    radial-gradient(1000px 520px at 25% 0%, rgba(45,168,255,.16), transparent 60%),
    radial-gradient(900px 520px at 90% 20%, rgba(255,122,24,.14), transparent 60%),
    rgba(255,255,255,.75);
}
.finalCta__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line2);
  background: #fff;
  box-shadow: var(--shadow);
}
.finalCta__copy h2{ margin:0 0 6px; font-size: 22px; }
.finalCta__copy p{ margin:0; color: var(--muted); }
.finalCta__actions{ display:flex; gap: 10px; flex-wrap:wrap; }

/* Footer */
.footer{
  padding: 36px 0 20px;
  border-top: 1px solid var(--line2);
  background: rgba(255,255,255,.88);
}
.footer__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}
.footer__brandRow{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer__logo{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  object-fit: contain;
  border: 1px solid var(--line2);
  box-shadow: 0 10px 22px rgba(10,30,50,.08);
}
.footer__brandText{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.footer__right{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.footer__title{
  font-weight: 900;
  margin-bottom: 10px;
}
.footer__link{
  display:block;
  color: var(--muted);
  margin-bottom: 8px;
}
.footer__link:hover{ color: var(--text); text-decoration: underline; }
.footer__muted{ color: var(--muted2); font-size: 12.5px; display:block; }
.footer__bottom{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--line2);
}
.small{ font-size: 12.5px; color: var(--muted); }

/* Modal */
.modal{
  position: fixed;
  inset: 0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 200;
}
.modal.is-open{ display:flex; }
.modal__overlay{
  position:absolute;
  inset:0;
  background: rgba(10,30,50,.35);
  backdrop-filter: blur(6px);
}
.modal__panel{
  position:relative;
  width: min(860px, calc(100% - 34px));
  max-height: calc(100% - 34px);
  overflow:auto;
  border-radius: 20px;
  border: 1px solid rgba(10,35,60,.16);
  background: #fff;
  box-shadow: var(--shadow);
}
.modal__head{
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line2);
  backdrop-filter: blur(10px);
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  padding: 16px 16px;
}
.modal__kicker{
  font-size: 12px;
  color: var(--muted);
  display:flex;
  align-items:center;
  gap: 10px;
}
.modal__title{ margin: 4px 0 0; font-size: 20px; }
.modal__close{
  border: 1px solid var(--line2);
  background: #fff;
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  cursor:pointer;
  box-shadow: var(--shadow2);
}
.modal__content{
  padding: 16px;
  color: var(--muted);
}
.modal__content h4{
  margin: 0 0 8px;
  color: var(--text);
}
.modal__content ul{
  margin: 10px 0 14px;
  padding-left: 18px;
}
.modal__actions{
  padding: 16px;
  border-top: 1px solid var(--line2);
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  background: rgba(255,255,255,.85);
}

/* Toast */
.toast{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 300;
  display:none;
  width: min(420px, calc(100% - 36px));
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid var(--line2);
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--text);
}
.toast.is-show{ display:block; animation: pop .22s ease; }
@keyframes pop{ from{ transform: translateY(10px); opacity:0; } to{ transform: translateY(0); opacity:1; } }

/* Scroll to top */
.toTop{
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 160;
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line2);
  background: #fff;
  color: var(--text);
  cursor:pointer;
  box-shadow: var(--shadow2);
}
.toTop.is-show{ display:grid; place-items:center; }

/* Reveal Animations */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .results__inner{ grid-template-columns: 1fr; }
  .results__cards{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .levelGrid{ grid-template-columns: 1fr; }
  .testimonialRow{ grid-template-columns: 1fr; }
  .compare{ grid-template-columns: 1fr; }
  .applyGrid{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr; }
  .panelGrid{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .nav__toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav{
    position: absolute;
    right: 20px;
    top: calc(100% + 10px);
    width: min(460px, calc(100% - 40px));
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid var(--line2);
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
  }
  .nav.is-open{ display:flex; }
  .nav__link{ padding: 12px 12px; }
  .nav__link--cta{ text-align:center; }
}

@media (max-width: 620px){
  .form__row{ grid-template-columns: 1fr; }
  .finalCta__inner{ flex-direction:column; align-items:flex-start; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .orb{ animation: none; }
  .reveal{ transition:none; opacity:1; transform:none; }
  .btn, .card, .levelTile, .accIcon, .tabs__tab{ transition:none; }
}
