
:root{
  --navy:#071f49;
  --navy2:#0b2d62;
  --blue:#0875df;
  --blue2:#005fc5;
  --green:#70bf11;
  --green2:#4f9806;
  --text:#10274a;
  --muted:#61718a;
  --soft:#f6faff;
  --soft2:#edf6ff;
  --line:#dce8f5;
  --white:#ffffff;
  --shadow:0 18px 46px rgba(8,35,72,.08);
  --shadow-soft:0 8px 24px rgba(8,35,72,.06);
  --radius:22px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.65;
}

a{
  color:inherit;
  text-decoration:none;
}

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

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

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.94);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
}

.navbar{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.brand img{
  width:184px;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:26px;
  font-weight:800;
  font-size:14px;
  color:#1a3158;
}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:42px;
  border-radius:9px;
  border:1px solid transparent;
  padding:12px 18px;
  font-weight:900;
  font-size:14px;
  line-height:1.1;
  transition:.18s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:var(--navy);
  color:#fff;
  box-shadow:0 12px 26px rgba(7,31,73,.18);
}

.btn-secondary{
  background:#fff;
  color:var(--navy);
  border-color:#b8c9dd;
}

.btn-blue{
  background:var(--blue);
  color:#fff;
}

.btn-green{
  background:var(--green);
  color:#fff;
}

.btn-link{
  color:var(--blue);
  font-weight:900;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.icon{
  width:17px;
  height:17px;
}

.hero{
  padding:74px 0 44px;
  background:
    radial-gradient(circle at 6% 10%,rgba(112,191,17,.11),transparent 24%),
    radial-gradient(circle at 88% 10%,rgba(8,117,223,.10),transparent 25%),
    linear-gradient(180deg,#fff,#fbfdff);
}

.hero-layout{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:72px;
  align-items:center;
}

.kicker{
  color:var(--blue);
  font-size:13px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin:0 0 15px;
}

h1,h2,h3,p{
  margin-top:0;
}

h1{
  font-size:clamp(42px,5.3vw,68px);
  line-height:1.05;
  letter-spacing:-.055em;
  color:#091f46;
  margin-bottom:22px;
}

.highlight{
  color:var(--blue);
}

.lead{
  max-width:710px;
  color:#54667d;
  font-size:18px;
  margin-bottom:18px;
}

.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:13px;
  margin:31px 0 24px;
}

.trust-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:28px;
  max-width:750px;
}

.trust-item{
  display:flex;
  align-items:center;
  gap:10px;
  color:#293f64;
  font-size:14px;
  font-weight:800;
}

.trust-item svg{
  width:17px;
  height:17px;
  color:var(--blue);
}

.quick-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
}

.quick-card h2{
  font-size:25px;
  letter-spacing:-.025em;
  margin-bottom:20px;
}

.login-list{
  display:grid;
  gap:14px;
}

.login-item{
  display:grid;
  grid-template-columns:48px 1fr auto;
  align-items:center;
  gap:15px;
  border:1px solid var(--line);
  border-radius:15px;
  padding:17px;
  background:#fff;
}

.login-icon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:#f3f8ff;
  color:var(--blue);
}

.login-icon svg{
  width:28px;
  height:28px;
}

.login-text strong{
  display:block;
  margin-bottom:2px;
  color:#142b54;
}

.login-text small{
  display:block;
  color:var(--muted);
  line-height:1.35;
}

.section{
  padding:68px 0;
}

.section-soft{
  background:linear-gradient(180deg,#fbfdff,#f5f9ff);
}

.section-head{
  max-width:790px;
  margin:0 auto 44px;
  text-align:center;
}

.section-head h2{
  font-size:clamp(31px,4vw,45px);
  line-height:1.13;
  letter-spacing:-.04em;
  color:#0b244f;
  margin-bottom:13px;
}

.section-head p{
  color:var(--muted);
  font-size:17px;
  margin:0;
}

.feature-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.feature{
  text-align:center;
  padding:26px 28px;
  border-right:1px solid var(--line);
}

.feature:last-child{
  border-right:0;
}

.small-icon{
  width:42px;
  height:42px;
  margin:0 auto 16px;
  color:var(--blue);
}

.feature h3{
  font-size:17px;
  margin-bottom:8px;
  color:#132b54;
}

.feature p{
  font-size:14px;
  color:var(--muted);
  margin:0;
}

.promo-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.promo-card{
  min-height:350px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:19px;
  padding:32px;
  box-shadow:var(--shadow-soft);
  position:relative;
  overflow:hidden;
}

.promo-card.blue{
  background:linear-gradient(135deg,#fff,#f4f9ff);
}

.promo-card.green{
  background:linear-gradient(135deg,#fff,#f7fff0);
  border-color:#cdebb1;
}

.promo-label{
  color:var(--blue);
  font-size:18px;
  font-weight:950;
  margin-bottom:10px;
}

.promo-card.green .promo-label{
  color:var(--green2);
}

.promo-card h2{
  font-size:30px;
  line-height:1.13;
  letter-spacing:-.035em;
  color:#0b244f;
  margin-bottom:15px;
}

.promo-card p{
  color:var(--muted);
  margin-bottom:19px;
}

.checks{
  display:grid;
  gap:10px;
  margin:0 0 24px;
  padding:0;
  list-style:none;
}

.checks li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#263f64;
  font-size:15px;
  font-weight:700;
}

.check-dot{
  width:18px;
  height:18px;
  flex:0 0 18px;
  margin-top:3px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#e8f8d9;
  color:var(--green2);
  font-size:12px;
  font-weight:950;
}

.card-link-icon{
  position:absolute;
  right:32px;
  bottom:32px;
  width:72px;
  height:72px;
  border:1px solid var(--line);
  border-radius:14px;
  display:grid;
  place-items:center;
  color:var(--blue);
  background:#fff;
  opacity:.9;
}

.promo-card.green .card-link-icon{
  color:var(--green2);
  border-color:#cdebb1;
}

.audience-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  max-width:1000px;
  margin:0 auto;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.audience{
  text-align:center;
  padding:28px 34px;
  border-right:1px solid var(--line);
}

.audience:last-child{
  border-right:0;
}

.audience .small-icon{
  margin-bottom:12px;
}

.audience h3{
  font-size:17px;
  margin-bottom:7px;
}

.audience p{
  color:var(--muted);
  font-size:14px;
  margin:0;
}

.seo-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.seo-card{
  display:grid;
  grid-template-columns:56px 1fr;
  gap:16px;
  align-items:center;
  border:1px solid var(--line);
  border-radius:15px;
  padding:18px;
  background:#fff;
  box-shadow:0 8px 20px rgba(8,35,72,.045);
}

.seo-card h3{
  margin:0 0 4px;
  font-size:17px;
}

.seo-card p{
  margin:0 0 7px;
  font-size:14px;
  color:var(--muted);
  line-height:1.45;
}

.direct-login{
  display:grid;
  grid-template-columns:.75fr 1fr 1fr;
  gap:22px;
  align-items:center;
  border:1px solid var(--line);
  border-radius:18px;
  background:#f8fbff;
  padding:25px;
}

.direct-login h2{
  font-size:30px;
  margin-bottom:4px;
  color:#0b244f;
}

.direct-login p{
  color:var(--muted);
  margin:0;
}

.big-login{
  min-height:82px;
  border-radius:11px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  text-align:center;
  border:1px solid #b8c9dd;
  background:#fff;
  color:var(--navy);
  font-weight:950;
}

.big-login.primary{
  background:var(--navy);
  color:#fff;
  border-color:var(--navy);
}

.big-login small{
  font-weight:600;
  opacity:.82;
}

.support-box{
  display:grid;
  grid-template-columns:1.1fr repeat(3,1fr);
  gap:0;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
}

.support-intro{
  padding:26px;
  border-right:1px solid var(--line);
}

.support-intro h2{
  font-size:26px;
  margin-bottom:8px;
}

.support-intro p{
  color:var(--muted);
  margin:0;
}

.support-item{
  padding:26px;
  border-right:1px solid var(--line);
  display:flex;
  gap:14px;
  align-items:center;
}

.support-item:last-child{
  border-right:0;
}

.support-item svg{
  width:30px;
  height:30px;
  color:var(--blue);
  flex:0 0 30px;
}

.support-item small{
  display:block;
  color:var(--muted);
  font-weight:800;
  margin-bottom:2px;
}

.support-item strong{
  display:block;
  color:#17345f;
  line-height:1.3;
}

.faq-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 18px;
}

details{
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  padding:16px 18px;
}

summary{
  cursor:pointer;
  font-weight:900;
  color:#142b54;
}

details p{
  color:var(--muted);
  margin:12px 0 0;
}

.site-footer{
  background:linear-gradient(135deg,#061a3d,#062d68);
  color:#fff;
  padding:52px 0 28px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr .8fr .8fr 1fr;
  gap:52px;
  padding-bottom:34px;
  border-bottom:1px solid rgba(255,255,255,.16);
}

.footer-logo img{
  width:160px;
  filter:brightness(0) invert(1);
  margin-bottom:18px;
}

.site-footer p,
.site-footer a,
.site-footer li{
  color:rgba(255,255,255,.76);
}

.site-footer p{
  margin:0;
}

.site-footer h3{
  font-size:14px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin:0 0 14px;
}

.site-footer ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:8px;
}

.footer-bottom{
  padding-top:22px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:rgba(255,255,255,.68);
  font-size:14px;
}

@media(max-width:1100px){
  .main-nav{
    display:none;
  }

  .hero-layout,
  .promo-grid,
  .direct-login,
  .support-box,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .support-intro,
  .support-item{
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .support-item:last-child{
    border-bottom:0;
  }

  .feature-row,
  .audience-row,
  .seo-cards{
    grid-template-columns:repeat(2,1fr);
  }

  .feature:nth-child(2),
  .audience:nth-child(2){
    border-right:0;
  }
}

@media(max-width:720px){
  .container{
    width:min(100% - 28px,1180px);
  }

  .navbar{
    align-items:flex-start;
    flex-direction:column;
    padding:18px 0;
  }

  .header-actions{
    width:100%;
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .hero{
    padding:52px 0 34px;
  }

  h1{
    font-size:39px;
  }

  .trust-strip,
  .feature-row,
  .audience-row,
  .seo-cards,
  .faq-grid{
    grid-template-columns:1fr;
  }

  .feature,
  .audience{
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .feature:last-child,
  .audience:last-child{
    border-bottom:0;
  }

  .login-item{
    grid-template-columns:42px 1fr;
  }

  .login-item .btn{
    grid-column:1 / -1;
  }

  .promo-card{
    padding:25px;
  }

  .card-link-icon{
    display:none;
  }

  .footer-bottom{
    flex-direction:column;
  }
}
