:root{
  --bg: #f7fbff;
  --bg2:#ffffff;
  --text:#0b1220;
  --muted:#4a5a74;
  --line: rgba(13, 25, 48, .12);

  --brand1:#1a73e8;
  --brand2:#7c3aed;
  --brand3:#00b894;

  --shadow: 0 18px 50px rgba(14, 27, 56, .12);
  --shadow2: 0 10px 28px rgba(14, 27, 56, .10);

  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;
}

*{ 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, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1000px 700px at 12% 8%, rgba(26,115,232,.18), transparent 60%),
    radial-gradient(900px 700px at 80% 14%, rgba(124,58,237,.16), transparent 55%),
    radial-gradient(800px 600px at 55% 85%, rgba(0,184,148,.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 60%, #ffffff 100%);
}

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

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

.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;
  background:#fff;
  padding:10px 12px;
  border-radius:12px;
  box-shadow: var(--shadow2);
  z-index:9999;
}

.sr-only{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Header */
.header{
  position:sticky; top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.72);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand__mark{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius:14px;
  background:
    radial-gradient(16px 16px at 30% 30%, rgba(255,255,255,.8), transparent 60%),
    linear-gradient(135deg, var(--brand1), var(--brand2));
  color:#fff;
  font-weight:900;
  letter-spacing:.5px;
  box-shadow: 0 10px 22px rgba(26,115,232,.22);
}
.brand__mark--small{ width:36px; height:36px; border-radius:12px; }
.brand__text{ display:flex; flex-direction:column; line-height:1.1; }
.brand__name{ font-weight:900; letter-spacing:.2px; }
.brand__tag{ font-size:.85rem; color:var(--muted); }

/* Nav */
.nav{ display:flex; align-items:center; }
.nav__toggle{
  display:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.7);
  border-radius:14px;
  padding:10px 12px;
  cursor:pointer;
}
.nav__toggleLines{
  width:18px;height:12px;display:block; position:relative;
}
.nav__toggleLines::before,
.nav__toggleLines::after{
  content:"";
  position:absolute; left:0; right:0;
  height:2px; border-radius:2px;
  background: var(--text);
}
.nav__toggleLines::before{ top:0; }
.nav__toggleLines::after{ bottom:0; }
.nav__menu{
  display:flex; align-items:center; gap:14px;
}
.nav__link{
  color: var(--muted);
  font-weight:650;
  padding:10px 10px;
  border-radius:12px;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.nav__link:hover{
  color: var(--text);
  background: rgba(26,115,232,.08);
  transform: translateY(-1px);
}
.nav__link.is-active{
  color: var(--text);
  background: rgba(124,58,237,.10);
}
.nav__cta{
  padding:10px 14px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  color:#fff;
  font-weight:800;
  box-shadow: 0 12px 30px rgba(124,58,237,.18);
  transition: transform .15s ease;
}
.nav__cta:hover{ transform: translateY(-1px); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  color: var(--text);
  font-weight:800;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow2); }
.btn--primary{
  border:none;
  color:#fff;
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
}
.btn--ghost{
  background: rgba(255,255,255,.65);
}
.btn--full{ width:100%; }

/* Hero */
.hero{
  padding: 34px 0 10px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items:stretch;
}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  color: var(--muted);
  font-weight:700;
}
.dot{
  width:10px;height:10px;border-radius:50%;
  background: linear-gradient(135deg, var(--brand3), var(--brand1));
  box-shadow: 0 0 0 4px rgba(0,184,148,.15);
}
.hero__title{
  margin: 14px 0 10px;
  font-size: clamp(2.1rem, 2.8vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.6px;
}
.gradientText{
  background: linear-gradient(135deg, var(--brand1), var(--brand2), var(--brand3));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.hero__subtitle{
  margin:0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}
.hero__actions{
  display:flex; gap:12px; flex-wrap:wrap;
  margin-top: 18px;
}
.hero__stats{
  margin-top: 20px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat{
  padding:14px 14px;
  border-radius: 18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.72);
}
.stat__num{ font-weight:900; letter-spacing:.2px; }
.stat__label{ color: var(--muted); font-size:.92rem; margin-top:6px; }

/* Right card */
.hero__card{
  position:relative;
}
.glassCard{
  height:100%;
  border-radius: var(--radius2);
  padding: 18px;
  border: 1px solid rgba(255,255,255,.45);
  background:
    radial-gradient(500px 260px at 30% 18%, rgba(26,115,232,.20), transparent 60%),
    radial-gradient(500px 280px at 85% 30%, rgba(124,58,237,.18), transparent 60%),
    rgba(255,255,255,.68);
  box-shadow: var(--shadow);
}
.glassCard__top{
  display:flex; align-items:center; gap:12px;
}
.miniLogo{
  width:46px;height:46px;border-radius:16px;
  display:grid;place-items:center;
  background: rgba(255,255,255,.72);
  border:1px solid var(--line);
  font-weight:900;
}
.glassCard__title{ font-weight:900; }
.glassCard__muted{ color: var(--muted); font-size:.92rem; margin-top:4px; }

.glassCard__list{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  color: var(--muted);
  font-weight:700;
  font-size:.88rem;
}
.divider{
  height:1px;
  background: var(--line);
  margin: 16px 0;
}
.glassCard__row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 14px;
}
.label{ color: var(--muted); font-weight:700; font-size:.88rem; }
.value{ font-weight:800; }
.status{
  display:inline-flex; align-items:center; gap:8px;
  color: var(--muted);
  font-weight:800;
  white-space:nowrap;
}
.status__dot{
  width:10px;height:10px;border-radius:50%;
  background: var(--brand3);
  box-shadow: 0 0 0 4px rgba(0,184,148,.12);
}
.micro{ margin: 10px 0 0; color: var(--muted); font-size:.9rem; line-height:1.5; }
.link{ text-decoration: underline; text-underline-offset: 3px; }

/* Sections */
.section{
  padding: 58px 0;
}
.section--soft{
  background:
    radial-gradient(900px 500px at 70% 0%, rgba(26,115,232,.12), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.25));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 18px;
}
.section__title{ margin:0; font-size: clamp(1.55rem, 2vw, 2rem); }
.section__subtitle{ margin:0; color: var(--muted); max-width: 650px; line-height:1.6; }

.grid{ display:grid; gap: 14px; }
.grid--2{ grid-template-columns: repeat(2, 1fr); }
.grid--3{ grid-template-columns: repeat(3, 1fr); }

.card{
  padding: 18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  box-shadow: 0 10px 22px rgba(14, 27, 56, .06);
}
.card h3, .card h2{ margin: 0 0 8px; }
.card p{ margin: 0 0 12px; color: var(--muted); line-height:1.65; }
.card--accent{
  background:
    radial-gradient(600px 220px at 20% 10%, rgba(0,184,148,.14), transparent 60%),
    rgba(255,255,255,.78);
}

.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.mt{ margin-top: 18px; }

.chips{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 10px; }
.chip{
  font-size:.88rem;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.72);
  color: var(--muted);
  font-weight:800;
}

/* Timeline */
.timeline{
  display:grid;
  gap: 12px;
  margin-top: 16px;
}
.step{
  display:flex; gap:12px;
  padding: 14px;
  border-radius: 18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.72);
}
.step__num{
  width:42px;height:42px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(124,58,237,.10);
  font-weight:900;
}
.step__body h3{ margin:0 0 6px; }
.step__body p{ margin:0; color: var(--muted); line-height:1.6; }

/* CTA banner */
.ctaBanner{
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(600px 240px at 15% 30%, rgba(26,115,232,.16), transparent 60%),
    rgba(255,255,255,.78);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.ctaBanner h3{ margin:0 0 6px; }
.ctaBanner p{ margin:0; color: var(--muted); line-height:1.6; }

/* Page hero + Contact */
.pageHero{
  padding: 34px 0 10px;
}
.pageHero__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}
.pageHero__title{
  margin: 12px 0 10px;
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  line-height:1.08;
  letter-spacing:-.5px;
}
.pageHero__subtitle{
  margin:0;
  color: var(--muted);
  line-height:1.7;
}
.pageHero__panel .miniCard{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.contactCards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.miniCard .label{ margin-bottom: 6px; }
.miniCard .value{ font-weight:900; }

.form__title{ margin:0 0 6px; }
.form__hint{ margin:0 0 14px; color: var(--muted); }
.form label{ display:block; font-weight:800; }
.form input, .form select, .form textarea{
  width:100%;
  margin-top:6px;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.85);
  outline:none;
  font: inherit;
  color: var(--text);
}
.form input:focus, .form select:focus, .form textarea:focus{
  box-shadow: 0 0 0 4px rgba(26,115,232,.14);
  border-color: rgba(26,115,232,.35);
}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form__actions{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-top: 12px;
}
.form__notice{
  margin-top: 10px;
  color: var(--muted);
  font-weight:800;
}
.callout{
  margin-top: 10px;
  padding: 14px;
  border-radius: 18px;
  border:1px dashed rgba(13,25,48,.25);
  background: rgba(255,255,255,.65);
}
.callout__title{ font-weight:900; margin-bottom:6px; }
.callout__text{ color: var(--muted); margin-bottom:10px; }

/* Legal pages */
.legalHero{
  padding: 32px 0 10px;
}
.legalHero__title{
  margin: 12px 0 8px;
  font-size: clamp(2rem, 2.6vw, 2.7rem);
}
.legalHero__subtitle{
  margin:0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 860px;
}
.legal h2{ margin-top: 18px; }
.legal p{ color: var(--muted); line-height:1.75; }

/* Footer */
.footer{
  margin-top: 20px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.6);
}
.footer__grid{
  padding: 34px 0;
  display:grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 14px;
}
.footer__brand{ display:flex; align-items:center; gap:12px; }
.footer__name{ font-weight:900; }
.footer__muted, .footer__text{ color: var(--muted); line-height:1.7; }
.footer__colTitle{ font-weight:900; margin-bottom: 10px; }
.footer__link{
  display:block;
  color: var(--muted);
  padding: 6px 0;
}
.footer__link:hover{ color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.footer__social{ display:flex; gap:10px; margin-top: 10px; }
.social{
  width:38px;height:38px;border-radius:14px;
  display:grid; place-items:center;
  border:1px solid var(--line);
  background: rgba(255,255,255,.7);
  font-weight:900;
}
.footer__bottom{
  padding: 14px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  color: var(--muted);
  font-weight:700;
}
.footer__bottomLinks a{ color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__stats{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .pageHero__grid{ grid-template-columns: 1fr; }
  .contactCards{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px){
  .nav__toggle{ display:inline-flex; }
  .nav__menu{
    position:absolute;
    right: 20px;
    top: 70px;
    width: min(360px, calc(100vw - 40px));
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap: 6px;
    padding: 12px;
    border-radius: 20px;
    border:1px solid var(--line);
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow2);
  }
  .nav__menu.is-open{ display:flex; }
  .nav__cta{ text-align:center; }
  .ctaBanner{ flex-direction:column; align-items:flex-start; }
  .form__row{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
}