/* =========================
   Design Tokens
   ========================= */
:root{
  --bg:#0b1220;
  --bg2:#0f172a;
  --stroke: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --brand:#2dd4bf;
  --brand2:#60a5fa;
  --warn:#fbbf24;
  --accent: #00eb1f;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --r: 22px;
  --r2: 16px;
  --max: 1120px;
  --focus: 0 0 0 4px rgba(96,165,250,.25);
  --line: var(--stroke);
  --shadow2: 0 12px 30px rgba(0,0,0,.25);
  --shadow-lg: var(--shadow);
  --shadow-sm: var(--shadow2);
}

/* =========================
   Base / Reset
 ========================= */
*{ 
  box-sizing:border-box;
}
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(1100px 650px at 18% 8%, rgba(96,165,250,.18), transparent 58%),
    radial-gradient(950px 620px at 85% 12%, rgba(45,212,191,.16), transparent 58%),
    radial-gradient(820px 620px at 55% 95%, rgba(34,197,94,.10), transparent 62%),
    linear-gradient(180deg, #070d18 0%, #0b1220 55%, #08101e 100%);
  background-attachment: fixed;
}
a{ color: inherit; }

/* =========================
   Layout
   ========================= */
.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 16px 30px;
  padding-bottom: var(--cta-space, 0px);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.cols {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  margin-top: 12px;
}
.contactWrap {
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: start;
  gap: 12px;
  margin-top: 12px;
} 

/* =========================
   Topbar / Navigation
 ========================= */
.topbar{
  position: sticky;
  height: 65px;
  top:8px;
  padding:10px 10px;
  z-index: 50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background: transparent;
  border: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-radius: 999px;
  isolation:isolate;
  overflow: visible;
}
.topbar::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 999px;
  border-bottom: 1px solid var(--stroke);
  background: rgba(10, 18, 32, .55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  pointer-events:none;
  z-index:0;
}
.topbar > *{ 
  position: relative; z-index:1;
}
.brand{
  display:flex;
  flex: 1 1 auto;
  align-items:center;
  gap:10px;
  min-width:0;
  font-weight:900;
  letter-spacing:.2px;
}
.logo {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34,199,255,.28);
  background: linear-gradient(135deg, rgba(34,199,255,.18), rgba(23,214,166,.12));
  box-shadow: var(--shadow2);
  flex: 0 0 auto;
}
.brand a{
  text-decoration:none;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.nav{
  display:flex;
  margin-left:auto;
  flex: 0 0 auto;
  gap:8px;
  align-items:center;
  white-space:nowrap;
  justify-content:flex-end;
}
.nav a{
  text-decoration:none;
  display: flex;
  gap: 10px;
  font-size:14px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
}
.nav a:hover{
  color: var(--text);
  border-color: var(--stroke);
  background: rgba(255,255,255,.04);
}

/* =========================
   Buttons
 ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 700;
  text-decoration:none;
  cursor:pointer;
  transition:
    transform .12s ease,
    background .12s ease,
    border-color .12s ease,
    box-shadow .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.22);
}
.btn-small{
  padding:10px 12px;
  font-size:14px;
}

/* =========================
   Surfaces (Panels / Cards)
 ========================= */
.panel{
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r2);
  padding: 14px;
  max-width: 100%;
}
.card, .card * {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.cardHead{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cardIcon{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34,199,255,.22);
  background: linear-gradient(135deg, rgba(34,199,255,.15), rgba(23,214,166,.10));
  flex: 0 0 auto;
}
.card h3{
  margin: 0;
  font-size: 16px;
}
.card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.card:hover, .panel:hover, .tile:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.card, .panel, .tile{
  transition: transform .12s ease, box-shadow .12s ease;
  will-change: transform;
}
.tile, .note, .heroCard, .glass, .sectionCard {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
}

/* =========================
   Hero
 ========================= */
.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: stretch;
  gap:18px;
  margin-top:12px;
}
.heroMain{
  padding:24px 22px;
  position:relative;
  overflow:hidden;
  isolation:isolate;
  contain: paint;
}
.heroMain::before {
  content:"";
  position:absolute;
  inset:-140px -140px auto auto;
  width:520px;
  height:520px;
  pointer-events:none;
  opacity:.55;
  background:radial-gradient(circle at 30% 30%, rgba(34,199,255,.30), transparent 55%), radial-gradient(circle at 70% 55%, rgba(23,214,166,.18), transparent 60%), conic-gradient(from 180deg at 50% 50%, rgba(34,199,255,.10), rgba(255,255,255,0), rgba(23,214,166,.08), rgba(255,255,255,0), rgba(34,199,255,.10) );
  filter:blur(2px);
  transform:rotate(10deg);
  will-change: transform, filter;
}
.tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-size:13px;
  font-weight:800;
  position:relative;
  z-index:1;
}
h1{
  margin:12px 0 10px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height:1.05;
  letter-spacing: -0.6px;
  position:relative;
  z-index:1;
}
.sub{
  margin:0;
  color:var(--muted);
  font-size:16px;
  max-width:78ch;
  position:relative;
  z-index:1;
}
.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
  position:relative;
  z-index:1;
}
.bullets{
  margin-top:14px;
  display:grid;
  gap:10px;
  position:relative;
  z-index:1;
}
.bullet{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px 12px;
  border-radius: var(--r2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  font-size:14px;
}
.bullet .ic{
  width:30px;
  height:30px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.notice {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  border-radius: var(--r2);
  padding: 12px;
  color: var(--muted);
  font-size: 14px;
}
.notice strong {
  color: var(--text)
}
.notice .warn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.88);
  font-weight: 900;
}
.notice .warn i{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--warn);
  position:relative;
  flex:0 0 auto;
}
.notice .warn i:after{
  content:"";
  position:absolute;
  inset:-7px;
  border-radius:999px;
  border:1px solid rgba(255,207,90,.28);
  animation:pulse 1.8s ease-out infinite;
  opacity:.9;
}

/* =========================
   Badge
 ========================= */
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  font-weight:900;
  font-size:13px;
  position:relative;
  z-index:1;
  margin-top:10px;
}
.badge247{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 207, 90, .26);
  background: rgba(255, 207, 90, .10);
  color: rgba(255, 255, 255, .92);
  font-weight: 950;
  letter-spacing: .2px;
  font-size: 13px;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}
.badge247 .pulse{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--warn);
  position: relative;
  flex: 0 0 auto;
}
.badge247 .pulse:after{
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 207, 90, .28);
  animation: pulse 1.8s ease-out infinite;
  opacity: .9;
}
@keyframes pulse{
0%{
    transform: scale(.65);
    opacity: .9;
}
100% {
    transform: scale(1.25);
    opacity: 0;
  }
}
.badge247 small {
  display: block;
  font-weight: 700;
  color: rgba(255,255,255,.70);
  letter-spacing: 0;
  margin-top: 2px;
}
.badge .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--warn);
}
.heroAside{ 
 padding:16px;
 align-self: start;
 position: sticky;
 top: 94px;
}

/* =========================
   Sections / Content
 ========================= */
.section {
 padding:14px;
 margin:9px;
}
.section h2 {
 margin: 0 0 10px 0;
 font-size: 20px;
 letter-spacing: -.2px;
}
.section p {
 margin: 0;
 color: var(--muted);
}
.list {
 margin: 0;
 padding-left: 18px;
 color: var(--muted)
}
.list li {
 margin: 6px 0
}
a.flowCard, a.flowCard *{
  text-decoration: none;
}
#probleme a.flowCard:hover h3,
#probleme a.flowCard:focus-visible h3,
#ratgeber-teaser a.flowCard:hover h3,
#ratgeber-teaser a.flowCard:focus-visible h3{
  text-decoration: none;
}
#leistungen ul.list{
  list-style: none;
  padding-left: 0;
  margin: 14px 0 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
#leistungen ul.list > li{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: var(--r);
  padding: 14px 14px;
}
#leistungen .checkBody{ 
  min-width: 0;
}
.trustFlow {
  margin-top: 26px;
}
.sectionHead {
  margin: 0 0 14px;
}
.sectionHead h2 {
  margin: 0 0 6px;
}
.flowGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.flowCard {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  padding: 16px;
  box-shadow: var(--shadow-sm);
        }
.flowCard h3 {
  margin: 10px 0 6px;
  font-size: 16px;
  letter-spacing: -.2px;
}
.flowIcon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
}
.flowIcon svg {
  width: 22px;
  height: 22px;
}
.trustStrip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.trustItem {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trustItem strong {
  font-size: 14px;
}
.trustItem span {
  font-size: 13px;
}

/* =========================
   Forms
 ========================= */
form{ 
  margin-top:12px;
  display:grid; gap:10px;
}
label{ 
  display:grid; 
  gap:6px; 
}
.lbl{ 
  font-weight:900; 
  color: rgba(255,255,255,.90);
}
input, textarea, select{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(10,18,32,.55);
  color:var(--text);
  padding:12px 14px;
  outline:none;
  font-size: 16px;
}
textarea{ resize: vertical; 
  min-height: 120px; 
}
.formGrid{
 display:grid;
 grid-template-columns:1fr 1fr;
 gap:10px;
}
.consent{
  display:flex;
  gap:10px;
  align-items:center;
  padding:12px;
  border-radius: var(--r2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size:14px;
}
.consent input{
  width:auto;
  margin-top:3px;
}
.tiny{
  margin:0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

/* =========================
   Footer
 ========================= */
.footer{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:10px;
  padding:14px 16px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  background: rgba(255,255,255,.04);
  border-radius: var(--r);
  border:1px solid var(--stroke);
}
.footer a:hover{
  text-decoration:underline;
}

/* =========================
   Mobile Sticky CTA
 ========================= */
.mobileCta{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:60;
  padding:10px 12px;
  background: rgba(7,13,24,.65);
  backdrop-filter: blur(16px);
  border-top:1px solid var(--stroke);
}
.mobileCtaInner{
  max-width:var(--max);
  margin:0 auto;
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.pill{
  flex:1 1 100%;
  min-height:48px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  min-width:0;
  justify-content:center;
}
.pill strong{
  color:var(--text);
  white-space:nowrap;
}
.pill span{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* =========================
   Details
 ========================= */
details summary{ 
  cursor:pointer;
  font-weight:900;
}

/* =========================
   Mobile Menu (Topbar)
 ========================= */
.menuBtn{
  padding:12px 18px;
  font-size:15px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.20);
}
.menuPanel{
  display:none;
  position:fixed;
  left:12px;
  right:12px;
  top:72px;
  z-index:100;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(7,13,24,.92);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 10px;
}
.menuPanel.is-open{
  display: block;
}
.menuPanel a{
  display:block;
  padding:14px 14px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 800;
  color: rgba(255,255,255,.92);
  border:1px solid transparent;
}
.menuPanel a + a{
  margin-top:6px;
}
.menuPanel a:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
}

/* =========================
	  MOBILE
 ========================= */
@media (max-width: 768px){
  .formGrid{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px){
  .flowGrid{
    grid-template-columns: 1fr;
  }
  main .wrap{
    padding:14px 12px calc(120px + env(safe-area-inset-bottom));
  }
}
@media (max-width: 1020px){ 
  body{
    font-size:16px;
    line-height:1.6;
  }
  .actions .btn {
    width:100%;
    min-height:48px;
  }
  .section h2 {
    font-size:20px;
  }
  .grid {
    grid-template-columns:1fr;
    gap:12px;
  }
  .card h3 {
    font-size:16px;
  }
  .card p {
    font-size:14px;
  }
  input, select {
    min-height:48px;
    font-size:16px;
  }
  textarea {
    min-height:120px;
    font-size:16px;
  }
  .mobileCtaInner {
    flex-wrap:wrap;
    gap:10px;
  }
  .pill {
    flex:1 1 100%;
  }
  .mobileCtaInner .btn {
    flex:1 1 calc(50% - 6px);
    min-height:48px;
  }
  .menuBtn{ 
    display:inline-flex; 
  }
  .hero{
    display:grid;
    grid-template-columns: 1fr;
  }
  .cols{
  	grid-template-columns: 1fr;
  }
  .flowCard{
    padding:14px;
  }
  .contactWrap{
    display:flex;
    flex-wrap:wrap
  }
}
@media (max-width: 1100px){
  .nav{
    display:none;
  }
}
@media (min-width: 1021px){
  .mobileCta{
    display:none;
  }
  #faq .cols{
  	grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1101px){
  .menuBtn{
    display:none;
  }
}
@media (prefers-reduced-motion: reduce){
  *{ 
    transition:none;
  }
  html{ 
    scroll-behavior:auto;
  }
}

/* =========================
   Other
 ========================= */
.asideTitle {
  margin: 0 0 10px 0;
  font-weight: 950;
  letter-spacing: .2px;
}
.contactSummary {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  border-radius: var(--r2);
  padding: 14px;
  position: sticky;
  top: 92px;
}
.contactSummary h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  letter-spacing: -.1px;
}
.summaryRow {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  margin-top: 8px;
}
.summaryRow .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 4px;
  flex: 0 0 auto;
}
.summaryRow strong {
  color: var(--text)
}
.summaryRow span {
  color: rgba(255,255,255,.72);
  font-size: 13px
}
.contactSummary .mini {
  margin: 10px 0 0 0;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}
:target {
  scroll-margin-top: 86px;
}
.checklist{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:14px;
}
.checkItem{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:16px 16px;
  border-radius:18px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.checkIcon{
  width:46px;
  height:46px;
  flex:0 0 46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  font-size:18px;
}
.checkBody{
  min-width:0
}
.checkTitle{
  font-weight:800;
  letter-spacing:.2px;
  font-size:18px;
  line-height:1.15;
  margin:2px 0 6px 0;
}
.checkText{
  margin:0;
  color: var(--muted);
  font-size:14px;
  line-height:1.5;
}
h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.3px;
}
.important, .aside, .sidebar, .rightCard {
  position: relative;
}
.important:before, .aside:before, .sidebar:before, .rightCard:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(96,165,250,.18), rgba(45,212,191,.14), rgba(34,197,94,.10));
  filter: blur(16px);
  opacity: .7;
  z-index: -1;
}
ul li {
  margin: 8px 0;
}
.muted, small {
  color: rgba(255,255,255,.72);
}
.no-underline {
  text-decoration: none;
}
.no-underline:hover, .no-underline:focus {
  text-decoration: none;
}

/* UTILITIES */
.u1{height:43px;}
.u2{margin-top:12px;}
.u3{padding:14px 14px;}
.u4{margin:0 0 8px;font-size:18px;}
.u5{margin:0 0 12px;color:rgba(255,255,255,.78);}
.u6{margin-left:8px;}
.u7{margin:0;padding-left:18px;color:rgba(255,255,255,.78);}
.u8{margin-top:14px;padding:16px;}
.u9{margin:0 0 8px;}
.u10{display:flex;gap:10px;flex-wrap:wrap;}
.u11{margin:10px 0 0;color:rgba(255,255,255,.78);}
.u12{color:var(--muted);}
.u13{margin:10px 0 0 0;color:var(--muted);font-size:13px;position:relative;z-index:1;}
.u14{margin:10px 0 0 0;}
.u15{padding:14px 0 0 0;margin:0;}
.u16{font-size:18px;margin:0 0 8px 0;}
.u17{margin:0 0 8px 0;}
.u18{cursor:pointer;font-weight:900;}
.u19{margin-top:8px;color:var(--muted);}
.u20{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden;}
.u21{grid-column:1/-1;}
.u22{font-weight:900;color:rgba(255,255,255,.88);}
.u23{background:var(--brand2);box-shadow:0 0 0 6px rgba(23,214,166,.12);}
.u24{background:var(--warn);box-shadow:0 0 0 6px rgba(255,207,90,.12);}
.u25{background: var(--brand);box-shadow: 0 0 0 6px rgba(34, 199, 255,.12);}
.u26{background:var(--accent);box-shadow: 0 0 0 6px rgba(61, 255, 0,.12);}

.formError{
  display:none;
  margin:0 0 12px 0;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(255,0,0,.16);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.92);
}
.formError.is-visible{
  display:block;
}
.heroMain::after {
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  opacity:.22;
  background-image:linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:radial-gradient(circle at 30% 10%, black 0%, transparent 65%);
}
input:invalid, select:invalid, textarea:invalid {
  border-color:rgba(255,120,120,.40);
}
input:invalid:focus, select:invalid:focus, textarea:invalid:focus {
  box-shadow:0 0 0 4px rgba(255,120,120,.14);
}
form.was-validated input:invalid, form.was-validated select:invalid, form.was-validated textarea:invalid {
  border-color:rgba(255,120,120,.55);
}
form.was-validated .formError {
  display:block;
}
select option, select optgroup {
  color:#0b1f2a;
  background:#ffffff;
}
html {
  scroll-behavior:smooth;
}
.btn-primary, .cta-primary {
  background:linear-gradient(90deg, var(--brand2), var(--brand));
  border:0;
  color:#06101f;
  box-shadow:var(--shadow2);
}
.btn-primary:hover, .cta-primary:hover {
  filter:brightness(1.05);
  box-shadow:var(--shadow2);
}
.chip {
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
}
input::placeholder, textarea::placeholder {
  color:rgba(255,255,255,.45);
}
input:focus, textarea:focus, select:focus {
  outline:none;
  box-shadow:var(--focus);
  border-color:rgba(96,165,250,.45);
}
.hero .actions .btn, .actions .btn {
  min-height:46px;
}
.mobileCtaInner .btn {
  padding:12px 14px;
}
#faq .cols{
  gap:12px;
  align-items:start;
}
#faq .cols .faqCol{
  display:flex;
  flex-direction:column;
  gap:12px;
}
#faq .cols .faqCol > .card{
  margin: 0;
  align-self: stretch;
}