
  .splash-page {
    color: #0b1b33;
  }

  .hero-section {
    padding: 80px 0 70px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  }

  .hero-wrap {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #edf8f3;
    color: #20c997;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 22px;
  }

  .hero-title {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #0b1b33;
    margin-bottom: 22px;
  }

  .hero-subtitle {
    max-width: 860px;
    margin: 0 auto 34px;
    font-size: 24px;
    line-height: 1.5;
    color: #8c939b;
    font-weight: 500;
  }

  .hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-hero-primary {
    min-width: 220px;
    height: 62px;
    padding: 0 28px;
    border-radius: 16px;
    border: 0;
    background: linear-gradient(90deg, #0b1b33, #132949);
    color: #fff !important;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 14px 32px rgba(11, 27, 51, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .btn-hero-primary:hover {
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-1px);
  }

  .btn-hero-secondary {
    min-width: 220px;
    height: 62px;
    padding: 0 28px;
    border-radius: 16px;
    border: 1px solid #dbe3ea;
    background: #ffffff;
    color: #0b1b33 !important;
    font-weight: 800;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .btn-hero-secondary:hover {
    color: #0b1b33 !important;
    text-decoration: none;
    background: #f8fafc;
  }

  .benefits-section {
    padding: 35px 0 70px;
    background: #ffffff;
  }

  .section-heading {
    text-align: center;
    margin-bottom: 40px;
  }

  .section-heading .title {
    margin-bottom: 10px;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 900;
    color: #0b1b33;
  }

  .section-heading .subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: #8c939b;
    font-size: 20px;
    line-height: 1.5;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .benefit-card {
    background: #ffffff;
    border: 1px solid #dde7ee;
    border-radius: 24px;
    padding: 34px 26px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(11, 27, 51, 0.05);
    transition: transform .2s ease, box-shadow .2s ease;
  }

  .benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(11, 27, 51, 0.08);
  }

  .benefit-card i {
    font-size: 56px;
    color: #0b1b33;
    margin-bottom: 18px;
    display: block;
  }

  .benefit-card h3 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
    color: #0b1b33;
  }

  .benefit-card p {
    margin: 0;
    color: #7f8892;
    font-size: 18px;
    line-height: 1.5;
  }

  .cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #0b1b33 0%, #132949 100%);
  }

  .cta-box {
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 38px 34px;
  }

  .cta-box .title {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 16px;
  }

  .cta-box p {
    color: rgba(255,255,255,0.72);
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .btn-white-modern {
    min-width: 220px;
    height: 62px;
    padding: 0 28px;
    border-radius: 16px;
    background: #ffffff;
    color: #0b1b33 !important;
    font-weight: 800;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(0,0,0,0.15);
  }

  .btn-white-modern:hover {
    color: #0b1b33 !important;
    text-decoration: none;
    transform: translateY(-1px);
  }

  @media (max-width: 991px) {
    .hero-title {
      font-size: 48px;
    }

    .hero-subtitle {
      font-size: 21px;
    }

    .benefits-grid {
      grid-template-columns: 1fr;
    }

    .cta-box .title {
      font-size: 36px;
    }
  }

  @media (max-width: 575px) {
    .hero-section {
      padding: 54px 0 48px;
    }

    .hero-title {
      font-size: 36px;
    }

    .hero-subtitle {
      font-size: 18px;
      margin-bottom: 26px;
    }

    .section-heading .title {
      font-size: 34px;
    }

    .section-heading .subtitle {
      font-size: 17px;
    }

    .benefit-card {
      padding: 28px 20px;
    }

    .benefit-card h3 {
      font-size: 24px;
    }

    .benefit-card p {
      font-size: 16px;
    }

    .cta-box {
      padding: 28px 22px;
      text-align: center;
    }

    .cta-box .title {
      font-size: 30px;
    }

    .cta-box p {
      font-size: 17px;
      margin-bottom: 24px;
    }

    .hero-actions {
      flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-white-modern {
      width: 100%;
    }
  }
