 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #0D1B3E;
    --navy-mid: #1A2D5A;
    --green-cta: #2D5C2E;
    --green-cta-hover: #3a7a3c;
    --alert-bg: #FCDCDC;
    --alert-text: #C0392B;
    --text-dark: #0D1B3E;
    --text-muted: #5A6A8A;
    --bg-page: #F0F2F7;
    --white: #ffffff;
    --border-light: #D8DFEE;
    --green-label: #2E6B3E;
    --orange-label: #B85C1A;
    --blue-label: #1A4D8F;
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-page);
    color: var(--text-dark);
    min-height: 100vh;
  }

  .alert-banner {
    background: var(--alert-bg);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--alert-text);
  }
  .alert-banner svg { flex-shrink: 0; }

  .navbar {
    background: var(--navy);
    padding: 0 40px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    letter-spacing: 0.02em;
  }
  .btn-immediate {
    background: var(--green-cta);
    color: var(--white);
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
  }
  .btn-immediate:hover { background: var(--green-cta-hover); }

  .hero {
    max-width: 1300px;
    margin: 0 auto;
    padding: 64px 40px 72px;
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 60px;
    align-items: center;
  }

  .hero-bottom { display: none; }

  .badge-attention {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-dark);
    margin-bottom: 28px;
    text-transform: uppercase;
  }
  .badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #E74C3C;
    display: inline-block;
    animation: pulse 1.5s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .hero-title {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 36px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 52px;
  }

  .btn-check {
    background: var(--green-cta);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
  }
  .btn-check:hover { background: var(--green-cta-hover); transform: translateY(-1px); }
  .btn-check:active { transform: translateY(0); }

  .apps-count { display: flex; flex-direction: column; }
  .apps-count .number { font-size: 22px; font-weight: 700; color: var(--navy); line-height: 1; }
  .apps-count .label { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

  /* TRUST METRICS desktop */
  .trust-metrics { display: flex; gap: 36px; flex-wrap: wrap; }
  .metric { display: flex; flex-direction: column; gap: 4px; }
  .metric-label { font-size: 12px; font-weight: 600; letter-spacing: 0.07em; }
  .metric-label.green { color: var(--green-label); }
  .metric-label.orange { color: var(--orange-label); }
  .metric-label.blue { color: var(--blue-label); }
  .metric-value { font-size: 16px; font-weight: 700; color: var(--navy); }

  .hero-right { position: relative; }

  .video-card {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: var(--navy-mid);
    aspect-ratio: 1/1;
    position: relative;
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(13,27,62,0.18);
  }
  .video-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
  }


  .deck-v, .mob-v {
    display: none; 
}

/* На десктопе показываем только десктопное */
@media (min-width: 769px) {
    .deck-v {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; /* Это растянет видео на весь блок */
    }
}


 
  /* ── MOBILE ── */
  @media (max-width: 768px) {
    .navbar { padding: 0 20px; }

 
    .hero {
      grid-template-columns: 1fr;
      padding: 5px 20px 48px;
      gap: 16px;
    }

    .hero-left  { order: 1; }
    .hero-right { order: 2; }
    .hero-bottom { display: block; order: 3; }

    .hero-left .trust-metrics { display: none; }
    .hero-title { font-size: 28px; }

    .btn-check { width: 100%; text-align: center; }

    .hero-actions {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      margin-bottom: 0;
    }

    .apps-count {
  border: none;
  border-radius: 0;
  padding: 4px 0;
  background: none;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.apps-count .number {
  font-size: 28px;
  white-space: nowrap;
          font-weight: bolder;
}

.apps-count .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}

   .mob-v {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* обёртка */
    .trust-metrics {
      background: none;
      border: none;
      padding: 0;
      flex-direction: column;
      flex-wrap: nowrap;
      gap: 8px;
    }

    .trust-metrics::before {
      content: 'NATIONAL IMPACT REPORT';
      display: block;
      width: 100%;
      text-align: center;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    /* ряд двух карточек — grid чтобы колонки были равные */
    .metrics-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .metrics-row .metric {
      padding: 16px 14px;
      background: var(--white);
      border: 1.5px solid var(--border-light);
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .metrics-row .metric .metric-label {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      white-space: normal;
    }

    .metrics-row .metric .metric-value {
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
    }

    /* тёмный блок */
    .metric-dark {
      background: var(--navy);
      border-radius: 10px;
      padding: 20px 20px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      position: relative;
    }

    .metric-dark .metric-value {
      color: var(--white);
      font-size: 24px;
      font-weight: 700;
    }

    .metric-dark .metric-label {
      color: rgba(255,255,255,0.55);
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .badge-attention {
      font-size: 9px;
    }
  }



  /* SECTION 2 */
.section2 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: start;
}

.s2-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.s2-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.fraud-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fraud-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.fraud-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #EEF2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fraud-icon svg { width: 18px; height: 18px; }

.fraud-card span {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

/* FORM CARD */
.form-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(13,27,62,0.10);
  padding: 36px 32px 28px;
  position: relative;
}

.form-trust-icons {
  position: absolute;
  top: 20px;
  right: 24px;
  display: flex;
  gap: 8px;
  opacity: 0.3;
}
.form-trust-icons svg { width: 18px; height: 18px; }

.form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 28px;
}

.field-group { margin-bottom: 18px; }

.field-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.field-input {
  width: 100%;
  height: 52px;
  border: 1.5px solid #C8D2E8;
  border-radius: 10px;
  padding: 0 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}
.field-input::placeholder { color: #B0BCCC; }
.field-input:focus { border-color: var(--navy-mid); }
.field-input.isValid { border-color: #E74C3C; }

.iti { width: 100%; }
.iti input {
  width: 100%;
  height: 52px;
  border: 1.5px solid #C8D2E8;
  border-radius: 10px;
  padding-left: 90px !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.iti input:focus { border-color: var(--navy-mid); }
.iti input.isValid { border-color: #E74C3C; }

.phone-eror-mess {
  font-size: 12px;
  color: #E74C3C;
  margin-top: 5px;
  min-height: 16px;
}

.btn-submit {
  width: 100%;
  height: 56px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 4px;
}
.btn-submit:hover { background: var(--navy-mid); transform: translateY(-1px); }

.confirm-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.confirm-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
  flex-shrink: 0;
}
.confirm-row label {
  font-size: 13px;
  color: var(--text-muted);
}

.partners {
  margin-top: 24px;
  border-top: 1.5px solid var(--border-light);
  padding-top: 20px;
}
.partners-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 14px;
}
.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.partner-logo .logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-page);
  border: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo .logo-circle svg { width: 20px; height: 20px; opacity: 0.6; }
.partner-logo span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* EMAIL POPUP */
#emailPopup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,27,62,0.5);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  width: 100%;
  max-width: 420px;
}
.popup-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.popup-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .section2 {
    grid-template-columns: 1fr;
    padding: 40px 20px 60px;
    gap: 32px;
  }
  .form-card { padding: 28px 20px 24px; }
  .fraud-card { padding: 16px 14px; }
}






/* SECTION 3 — QUOTE */
.section3 {
  background: #E8EBF2;
  padding: 72px 40px 80px;
  text-align: center;
}

.quote-avatar {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
}

.quote-avatar img {
  width: 140px; 
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.quote-avatar .verified {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  background: #1D9BF0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #E8EBF2;
}

.quote-avatar .verified svg {
  width: 11px;
  height: 11px;
}

.quote-text {
  max-width: 980px;
  margin: 0 auto 32px;
  font-size: clamp(17px, 2vw, 22px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.65;
  color: var(--navy);
}

.quote-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.quote-author .name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.quote-author .role {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .section3 { padding: 52px 20px 60px; }
  .quote-text { font-size: 16px; }
}














/* SECTION 4 — STEPS */
.section4 {
  background: var(--bg-page);
  padding: 72px 40px 80px;
  text-align: center;
}

.s4-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.s4-divider {
  width: 40px;
  height: 3px;
  background: var(--green-cta);
  border-radius: 2px;
  margin: 0 auto 52px;
}

.steps-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* линия между шагами */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  width: 76%;
  height: 1px;
  background: var(--border-light);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.step-num.dark { background: var(--navy); color: var(--white); }
.step-num.light { background: #DDE3EF; color: var(--navy); }
.step-num.green { background: var(--green-cta); color: var(--white); }

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 180px;
}

@media (max-width: 768px) {
  .section4 { padding: 52px 20px 60px; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-grid::before { display: none; }

  .step { padding: 0; }
}





/* SECTION 5 — CTA */
.section5 {
  padding: 40px 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-block {
  background: var(--navy);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
}

.cta-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.btn-cta {
  background: var(--green-cta);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-cta:hover { background: var(--green-cta-hover); transform: translateY(-1px); }

@media (max-width: 768px) {
  .section5 { padding: 24px 20px 48px; }
  .cta-block { padding: 44px 24px; }
  .btn-cta { width: 100%; }
}









/* FOOTER */
.footer {
  background: var(--navy);
  padding: 52px 40px 0;
}

.footer-top {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .footer-logo {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2ECC71;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 40px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .footer { padding: 44px 20px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { padding: 20px; }
}
