:root{
  --bg0:#070B10;
  --bg1:#0B0F14;
  --bg2:#0E1117;

  --card:#0D131A;
  --card2:#0B1016;

  --txt:#E6EAF0;
  --txt2:rgba(230,234,240,.82);
  --muted:rgba(154,163,178,.86);

  --accent:#28D0A8;
  --accent2: rgba(40,208,168,.16);

  --stroke:rgba(255,255,255,.10);
  --stroke2:rgba(255,255,255,.14);

  --radius:18px;
  --shadow: 0 26px 70px rgba(0,0,0,.45);
  --shadowSoft: 0 18px 45px rgba(2,6,23,.28);

  --container: 1180px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--txt);
  background:
    radial-gradient(1200px 700px at 18% 6%, rgba(40,208,168,.07), transparent 60%),
    radial-gradient(1000px 600px at 90% 20%, rgba(40,208,168,.08), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

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

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

.skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  border:1px solid var(--stroke2);
  background:rgba(0,0,0,.72);
  border-radius:12px;
  z-index:9999;
}

.nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(7,11,16,.62);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand__logo{
  height:32px;
  width:auto;
  display:block;
  position:relative;
  top:0;
}

.menu{
  display:flex;
  gap:18px;
  align-items:center;
}
.menu__link{
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  letter-spacing:.04em;
  color: rgba(230,234,240,.86);
  padding:8px 10px;
  border-radius:12px;
  transition: background .2s ease, color .2s ease;
}
.menu__link:hover{
  background: rgba(255,255,255,.06);
  color: var(--txt);
}

.nav__right{
  display:flex;
  align-items:center;
  gap:10px;
}

.navToggle{
  display:none;
  width:44px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:5px;
  padding:0;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.navToggle:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.navToggle:active{ transform: translateY(1px); }
.navToggle__bar{
  width:18px;
  height:2px;
  border-radius:99px;
  background: rgba(230,234,240,.92);
  display:block;
}

.navToggle__bar:nth-child(1){ width:20px; }
.navToggle__bar:nth-child(2){ width:14px; }
.navToggle__bar:nth-child(3){ width:18px; }

.mobileMenu{
  display:none;
  border-top:1px solid rgba(255,255,255,.06);
  background: rgba(7,11,16,.70);
  backdrop-filter: blur(14px);
}
.mobileMenu__inner{
  padding:14px 0 16px;
}
.mobileMenu__links{
  display:grid;
  gap:8px;
  margin-bottom:12px;
}
.mobileMenu__link{
  text-decoration:none;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  font-weight:900;
  letter-spacing:.04em;
  font-size:12px;
  color: rgba(230,234,240,.90);
}
.mobileMenu__link:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.mobileMenu__cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.mobileMenu--open{
  display:block;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  letter-spacing:.02em;
  border:1px solid transparent;
  cursor:pointer;
  user-select:none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: linear-gradient(180deg, rgba(40,208,168,.96), rgba(40,208,168,.82));
  color:#07110E;
  box-shadow: 0 16px 44px rgba(40,208,168,.18);
}
.btn--primary:hover{ background: linear-gradient(180deg, rgba(40,208,168,1), rgba(40,208,168,.86)); }

.btn--outline{
  background: transparent;
  border-color: rgba(40,208,168,.44);
  color: var(--txt);
}
.btn--outline:hover{
  background: rgba(40,208,168,.10);
  border-color: rgba(40,208,168,.62);
}

.btn--ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
  color: var(--txt);
}
.btn--ghost:hover{
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.12);
}

.btn--loading{
  opacity:.88;
  cursor:wait;
}
.btn--loading::after{
  content:"";
  width:14px;
  height:14px;
  border-radius:999px;
  border:2px solid rgba(7,11,16,.42);
  border-top-color: rgba(7,11,16,.92);
  display:inline-block;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero{
  position:relative;
  padding:56px 0 34px;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity:.20;
  mask-image: radial-gradient(900px 520px at 20% 25%, rgba(0,0,0,1), transparent 70%);
  z-index:0;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(
    180deg,
    rgba(7,11,16,0) 0%,
    rgba(7,11,16,0) 48%,
    rgba(7,11,16,.55) 74%,
    rgba(7,11,16,.92) 92%,
    rgba(7,11,16,1) 100%
  );
  z-index:0;
}

.hero .container{
  position:relative;
  z-index:1;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:34px;
  align-items:stretch;
  position:relative;
}

.hero__copy{
  display:flex;
  flex-direction:column;
  align-self:stretch;
  min-height:100%;
}

.kicker{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.12em;
  font-size:12px;
  color: rgba(230,234,240,.74);
}
.kicker__dot{
  width:10px;height:10px;
  border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(40,208,168,.12);
}

.hero__h1{
  margin:14px 0 10px;
  font-size:54px;
  line-height:1.03;
  letter-spacing:-.02em;
}

.hero__p{
  margin:0 0 12px;
  color: var(--txt2);
  font-size:15px;
  line-height:1.6;
}
.hero__p--lead{
  font-size:18px;
  font-weight:800;
  color: rgba(230,234,240,.92);
}
.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:16px 0 14px;
}
.hero__chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:auto;
  padding-top:12px;
}
.chip{
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: rgba(230,234,240,.90);
}

.hero__panel{
  border-radius:22px;
  background: radial-gradient(900px 500px at 20% 10%, rgba(40,208,168,.12), transparent 60%),
              linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadowSoft);
  overflow:hidden;
  align-self:stretch;
}
.panel__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
.panel__title{
  font-weight:900;
  letter-spacing:.12em;
  font-size:11px;
  color: rgba(230,234,240,.72);
}
.panel__status{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  font-size:11px;
  letter-spacing:.10em;
  color: rgba(230,234,240,.80);
}
.panel__statusDot{
  width:8px;height:8px;border-radius:99px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(40,208,168,.14);
}
.panel__kpis{
  padding:16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.kpi{
  padding:14px 14px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
}
.kpi__label{
  font-weight:900;
  letter-spacing:.12em;
  font-size:10px;
  color: rgba(230,234,240,.66);
}
.kpi__value{
  font-size:22px;
  font-weight:900;
  margin-top:8px;
}
.kpi__hint{
  margin-top:6px;
  font-size:12px;
  color: rgba(230,234,240,.70);
}
.spark{
  grid-column: 1 / -1;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.spark__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}
.spark__label{
  font-weight:900;
  letter-spacing:.12em;
  font-size:10px;
  color: rgba(230,234,240,.66);
}
.spark__badge{
  font-weight:900;
  font-size:11px;
  letter-spacing:.10em;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(40,208,168,.35);
  background: rgba(40,208,168,.10);
  color: rgba(230,234,240,.90);
}
.panel__list{
  padding:0 16px 16px;
  display:grid;
  gap:10px;
}
.panelItem{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.panelCheck{
  width:22px;
  height:22px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, rgba(40,208,168,.96), rgba(40,208,168,.80));
  box-shadow: 0 10px 30px rgba(40,208,168,.18);
  flex:0 0 auto;
  color:#07110E;
  position: relative;
}
.panelCheck::before{
  content:"✓";
  font-weight:900;
  font-size:14px;
  line-height:1;
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-48%, -52%);
}

.panelItem strong{
  display:block;
  font-size:13px;
  margin-bottom:3px;
}
.panelItem span{
  display:block;
  font-size:12px;
  color: rgba(230,234,240,.76);
  line-height:1.45;
}

.hero__metrics{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.metric{
  padding:16px 16px 14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.metric__value{
  font-size:26px;
  font-weight:900;
}
.metric__label{
  margin-top:6px;
  font-weight:900;
  font-size:11px;
  letter-spacing:.12em;
  color: rgba(230,234,240,.72);
}
.metric__note{
  margin-top:6px;
  font-size:12px;
  color: rgba(230,234,240,.70);
  line-height:1.45;
}

.logoStrip{
  margin-top:18px;
  padding:16px 16px 14px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 18px 45px rgba(0,0,0,.28);
}
.logoStrip__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.logoStrip__title{
  font-weight:900;
  letter-spacing:.12em;
  font-size:11px;
  color: rgba(230,234,240,.70);
}
.logoStrip__badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.badgeMini{
  padding:6px 10px;
  border-radius:999px;
  font-size:10px;
  font-weight:900;
  letter-spacing:.10em;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(230,234,240,.86);
}
.logoStrip__row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.mark{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  font-weight:900;
  letter-spacing:.10em;
  font-size:11px;
  color: rgba(230,234,240,.78);
}
.proofRow{
  margin-top:12px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.proof{
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.proof__k{
  font-weight:900;
  letter-spacing:.12em;
  font-size:10px;
  color: rgba(230,234,240,.66);
}
.proof__v{
  margin-top:6px;
  font-size:12px;
  color: rgba(230,234,240,.84);
}

.sectionBreak{ padding:10px 0; }
.divider{
  border:0;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  opacity:.9;
}

.section{ padding:10px 0; }
.sectionHead{
  text-align:center;
  margin-bottom:18px;
}
.sectionHead--left{ text-align:left; }
.h2{
  margin:0 0 10px;
  font-size:32px;
  letter-spacing:-.02em;
}
.sub{
  margin:0;
  color: rgba(230,234,240,.78);
  font-size:15px;
  line-height:1.55;
}

.pillars{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
.pillar{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:18px;
}
.pillar--dominant{
  background: radial-gradient(800px 420px at 20% 5%, rgba(40,208,168,.14), transparent 62%),
              rgba(255,255,255,.03);
  border-color: rgba(40,208,168,.24);
}
.pillar__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.pillar__title{
  margin:0;
  font-weight:900;
  letter-spacing:.14em;
  font-size:12px;
}
.pillTag{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-weight:900;
  letter-spacing:.12em;
  font-size:10px;
  color: rgba(230,234,240,.86);
}
.pillTag--dominant{
  border-color: rgba(40,208,168,.32);
  background: rgba(40,208,168,.10);
}
.pillar__desc{
  margin:12px 0 14px;
  color: rgba(230,234,240,.76);
  font-size:13px;
  line-height:1.55;
}
.dominantNote{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(40,208,168,.28);
  background: rgba(40,208,168,.08);
  font-weight:900;
  letter-spacing:.12em;
  font-size:10px;
  color: rgba(230,234,240,.86);
  margin-bottom:12px;
}
.dominantDot{
  width:10px;height:10px;border-radius:99px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(40,208,168,.12);
}
.capList{ display:grid; gap:10px; }
.capItem{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
}
.capIcon{
  width:26px;height:26px;
  border-radius:10px;
  display:grid;
  place-items:center;
  font-weight:900;
  color: rgba(230,234,240,.90);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  flex:0 0 auto;
}
.capIcon--dominant{
  border-color: rgba(40,208,168,.28);
  background: rgba(40,208,168,.10);
  color: rgba(230,234,240,.92);
}
.capName{
  font-weight:900;
  font-size:13px;
  margin-bottom:4px;
}
.capText{
  font-size:12px;
  color: rgba(230,234,240,.74);
  line-height:1.45;
}

.trustGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
  margin-top:26px;
}
.trustCard{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(13,19,26,.92), rgba(13,19,26,.92)),rgba(255,255,255,.03);
  padding:18px;
}
.trustCard__title{
  font-weight:900;
  letter-spacing:.14em;
  font-size:11px;
  color: rgba(230,234,240,.70);
  margin-bottom:12px;
  opacity:1;
}
.trustItem{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px 0;
  border-top:1px solid rgba(255,255,255,.06);
}
.trustItem:first-of-type{ border-top:0; padding-top:0; }
.trustDot{
  width:10px;height:10px;border-radius:99px;
  margin-top:6px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(40,208,168,.06);
  flex:0 0 auto;
}
.trustItem strong{ display:block; font-size:13px; }
.trustItem span{
  display:block;
  font-size:12px;
  color: rgba(230,234,240,.74);
  margin-top:3px;
  line-height:1.45;
}

.howSteps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  margin-top:18px;
}
.howStep{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.howStep::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:20px;
  background: radial-gradient(420px 220px at 30% 0%, rgba(40,208,168,.10), transparent 60%);
  pointer-events:none;
  opacity:.75;
}
.howStep__num{
  position:relative;
  font-size:22px;
  font-weight:900;
  color: rgba(230,234,240,.92);
}
.howStep__title{
  position:relative;
  margin-top:10px;
  font-weight:900;
  letter-spacing:.14em;
  font-size:11px;
  color: rgba(230,234,240,.72);
}
.howStep__text{
  position:relative;
  margin:10px 0 0;
  font-size:12px;
  color: rgba(230,234,240,.74);
  line-height:1.5;
}

.section--contact{
  padding-bottom:56px;
  position:relative;
  overflow:hidden;
}

.section--contact::before{
  content:"";
  position:absolute;
  inset:-1px;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 50% 18%, rgba(40,208,168,.16), transparent 62%),
    radial-gradient(700px 420px at 50% 52%, rgba(40,208,168,.10), transparent 66%);
  opacity:.9;
  z-index:0;
}

.section--contact::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(
    180deg,
    rgba(7,11,16,1) 0%,
    rgba(7,11,16,.92) 26%,
    rgba(7,11,16,.78) 54%,
    rgba(7,11,16,.92) 78%,
    rgba(7,11,16,1) 100%
  );
  z-index:0;
}

.section--contact .container{
  position:relative;
  z-index:1;
}

.contactHeader{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  margin-bottom:18px;
}
.contactTitle{
  margin:0 0 10px;
  font-size:30px;
  letter-spacing:-.02em;
}
.contactLead{
  margin:0;
  color: rgba(230,234,240,.78);
  line-height:1.55;
  font-size:15px;
}
.contactHeader__right{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.contactGrid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:14px;
  align-items:stretch;
}
.contactInfo,
.contactForm{ height:100%; }

.contactInfo{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:18px;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.contactInfo::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity:.16;
  mask-image: radial-gradient(700px 400px at 50% 20%, rgba(0,0,0,1), transparent 72%);
}

.contactInfo__kickerRow{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.contactInfo__kicker{
  font-weight:900;
  letter-spacing:.14em;
  font-size:11px;
  color: rgba(230,234,240,.70);
  margin:0;
}

.pillBtn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(40,208,168,.32);
  background: rgba(40,208,168,.10);
  color: rgba(230,234,240,.92);
  font-weight:900;
  letter-spacing:.10em;
  font-size:10px;
  text-decoration:none;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.pillBtn:active{ transform: translateY(1px); }
.pillBtn:hover{
  background: rgba(40,208,168,.14);
  border-color: rgba(40,208,168,.44);
}
.pillBtn__dot{
  width:8px;height:8px;border-radius:99px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(40,208,168,.12);
}

.contactInfo__list{
  position:relative;
  margin:0;
  padding-left:18px;
  display:grid;
  gap:8px;
  color: rgba(230,234,240,.84);
  font-size:13px;
  line-height:1.45;
}
.contactInfo__list b{ color: rgba(230,234,240,.96); }

.contactInfo__meta{
  position:relative;
  margin-top:auto;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
  display:grid;
  gap:10px;
}

.metaRow{
  display:grid;
  grid-template-columns: 180px 1fr;
  gap:12px;
  align-items:center;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.14);
}
.metaLabel{
  font-weight:900;
  letter-spacing:.14em;
  font-size:10px;
  color: rgba(230,234,240,.70);
  display:flex;
  align-items:center;
  gap:10px;
}
.metaIcon{
  width:22px;height:22px;
  border-radius:10px;
  display:grid;
  place-items:center;
  border:1px solid rgba(40,208,168,.22);
  background: rgba(40,208,168,.08);
}
.metaIcon svg{
  width:14px;height:14px;
  opacity:.95;
  fill: rgba(230,234,240,.88);
}
.metaValue{
  font-size:12px;
  color: rgba(230,234,240,.84);
}
.metaLink{
  color: rgba(230,234,240,.92);
  text-decoration:none;
  border-bottom:1px solid rgba(40,208,168,.28);
}
.metaLink:hover{ border-bottom-color: rgba(40,208,168,.56); }

.contactForm{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  padding:18px;
  box-shadow: var(--shadowSoft);
  display:flex;
  flex-direction:column;
}
.formTop{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  margin-bottom:12px;
}
.formTitle{
  font-weight:900;
  font-size:16px;
}
.formHint{
  font-size:12px;
  color: rgba(230,234,240,.68);
}
.formGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.field{ display:grid; gap:8px; }
.field--full{ grid-column: 1 / -1; }
.field__label{
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
  color: rgba(230,234,240,.74);
}
.field__input{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: var(--txt);
  padding:12px 12px;
  font-size:14px;
  outline:none;
}
.field__input:focus{
  border-color: rgba(40,208,168,.35);
  box-shadow: 0 0 0 6px rgba(40,208,168,.10);
}
.field__textarea{ resize:vertical; min-height:140px; }
.formActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
.formLegal{
  margin-top:auto;
  padding-top:10px;
  font-size:11px;
  color: rgba(230,234,240,.60);
  line-height:1.4;
}

.hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
  pointer-events:none !important;
}

.field__error{
  min-height:14px;
  font-size:11px;
  color: rgba(255,200,120,.92);
  letter-spacing:.02em;
}

.field__input.is-invalid{
  border-color: rgba(255,200,120,.42);
  box-shadow: 0 0 0 6px rgba(255,200,120,.10);
}

.formMsg{
  margin-top:12px;
}

.formMsg__inner{
  border-radius:18px;
  border:1px solid rgba(40,208,168,.22);
  background: rgba(40,208,168,.06);
  padding:14px;
  position:relative;
  overflow:hidden;
}

.formMsg__inner::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(520px 240px at 20% 0%, rgba(40,208,168,.12), transparent 60%);
  pointer-events:none;
  opacity:.9;
}

.formMsg__top{
  position:relative;
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.formMsg__title{
  font-weight:900;
  font-size:14px;
  letter-spacing:.02em;
}
.formMsg__hint{
  font-size:12px;
  color: rgba(230,234,240,.70);
}

.formMsg__actions{
  position:relative;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.formMsg__preview{
  position:relative;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:12px;
}
.formMsg__k{
  font-weight:900;
  letter-spacing:.12em;
  font-size:10px;
  color: rgba(230,234,240,.70);
  margin-bottom:8px;
}
.formMsg__pre{
  margin:0;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: rgba(230,234,240,.86);
  font-size:12px;
  line-height:1.5;
  white-space:pre-wrap;
}

.toast{
  position:absolute;
  right:14px;
  top:14px;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid rgba(40,208,168,.28);
  background: rgba(7,11,16,.84);
  color: rgba(230,234,240,.92);
  font-weight:900;
  font-size:11px;
  letter-spacing:.06em;
  opacity:0;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events:none;
}
.toast--show{
  opacity:1;
  transform: translateY(0);
}

.formMsg__inner--error{
  border-color: rgba(255,200,120,.26);
  background: rgba(255,200,120,.05);
}
.formMsg__inner--error::before{
  background: radial-gradient(520px 240px at 20% 0%, rgba(255,200,120,.10), transparent 60%);
}

.privacySection{
  padding:18px 0 14px;
  background: linear-gradient(
    180deg,
    rgba(7,11,16,0) 0%,
    rgba(7,11,16,.55) 42%,
    rgba(7,11,16,.88) 100%
  );
}
.privacyCard{
  width:100%;
  border-radius:22px;
  padding:18px;
  background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.18));
  box-shadow:
    0 0 0 1px rgba(40,208,168,.35) inset,
    var(--shadowSoft);
}
.privacyTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.privacyTitle{
  margin:0;
  font-weight:900;
  font-size:18px;
  letter-spacing:-.01em;
}
.privacyBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(40,208,168,.34);
  background: rgba(40,208,168,.10);
  color: rgba(230,234,240,.92);
  font-weight:900;
  letter-spacing:.10em;
  font-size:10px;
  white-space:nowrap;
}
.privacyText{
  margin:0;
  color: rgba(230,234,240,.78);
  font-size:13px;
  line-height:1.6;
}

.footer{
  padding:22px 0;
  border-top:1px solid rgba(255,255,255,.06);
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.16) 38%,
    rgba(0,0,0,.20) 100%
  );
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color: rgba(230,234,240,.72);
  font-size:12px;
}
.footer__links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.footer__links a{
  text-decoration:none;
  padding:6px 8px;
  border-radius:12px;
}
.footer__links a:hover{ background: rgba(255,255,255,.06); }

.footer__social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.social{
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  padding:8px 10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: rgba(230,234,240,.86);
}
.social:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: rgba(230,234,240,.94);
}

.social svg{
  width:18px;
  height:18px;
  opacity:.92;
  fill: currentColor;
}
.social svg path{
  fill: currentColor;
}

@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__metrics{ grid-template-columns: 1fr; }
  .proofRow{ grid-template-columns: 1fr; }
  .pillars{ grid-template-columns: 1fr; }
  .trustGrid{ grid-template-columns: 1fr; }
  .howSteps{ grid-template-columns: 1fr; }
  .contactHeader{ flex-direction:column; }
  .contactGrid{ grid-template-columns: 1fr; }

  .hero__h1{ font-size:44px; }
  .metaRow{ grid-template-columns: 1fr; gap:8px; }

  .privacyTop{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 720px){
  .menu{ display:none; }
  .navToggle{ display:inline-flex; }

  .nav__right .btn{ display:none; }

  .hero__h1{ font-size:38px; }
  .formGrid{ grid-template-columns: 1fr; }
  .brand__logo{ height:34px; }

  .logoStrip__top{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .logoStrip__badges{
    width:100%;
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:8px;
  }
  .badgeMini{
    width:100%;
    text-align:center;
    padding:10px 10px;
    border-radius:999px;
  }

  .logoStrip__row{
    width:100%;
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:10px;
  }
  .mark{
    width:100%;
    text-align:center;
    padding:12px 10px;
    border-radius:16px;
    background: rgba(255,255,255,.025);
    border-color: rgba(255,255,255,.09);
  }

  .proof{
    padding:12px;
    border-radius:18px;
  }
  .proof__v{
    margin-top:4px;
    line-height:1.35;
  }

  .nav__inner{
    align-items:center;
  }
  .brand{
    align-items:center;
  }
  .brand__logo{
    top:0;
  }

  .hero__actions{
    flex-direction:column;
    align-items:stretch;
  }
  .hero__actions .btn{
    width:100%;
    justify-content:center;
  }

  .hero__chips{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:10px;
  }
  .chip{
    width:100%;
    text-align:center;
  }

  .contactHeader__right{
    width:100%;
    justify-content:stretch;
  }
  .contactHeader__right .btn{
    width:100%;
  }

  .pillBtn{
    display:none;
  }
  .contactInfo__kickerRow{
    justify-content:flex-start;
  }

  .social span{
    display:none;
  }
  .social{
    padding:10px 10px;
    gap:0;
  }

  .footerPrivacy{
    display:none;
  }

  .navToggle{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:6px !important;
  }
  .navToggle::before,
  .navToggle::after{
    content:none !important;
    display:none !important;
  }
  .navToggle__bar{
    width:22px !important;
    height:3px !important;
    border-radius:999px !important;
    background: rgba(230,234,240,.92) !important;
    display:block !important;
  }
}
