* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f7fb;
  color: #0f172a;
}

.eit-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.eit-section {
  padding: clamp(64px, 8vw, 110px) 0;
}

.eit-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.eit-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #e8f2ff;
  color: #0b66d8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.eit-heading h2,
.eit-split h2,
.eit-final-box h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 16px;
  color: #082a5e;
}

.eit-heading p,
.eit-split p,
.eit-final-box p {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
  color: #475569;
}

.eit-proof-strip {
  background: #071427;
  color: #fff;
  padding: 20px 0;
}

.eit-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.eit-proof-grid div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  text-align: center;
}

.eit-proof-grid strong {
  display: block;
  font-size: clamp(22px, 3vw, 34px);
  color: #38bdf8;
  margin-bottom: 6px;
}

.eit-proof-grid span {
  font-size: 14px;
  color: #dbeafe;
}

.eit-card-grid {
  display: grid;
  gap: 24px;
}

.eit-3 {
  grid-template-columns: repeat(3, 1fr);
}

.eit-4 {
  grid-template-columns: repeat(4, 1fr);
}

.eit-card,
.eit-mini-card,
.eit-price-card,
.eit-feature-box,
.eit-step {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
  border: 1px solid rgba(15, 23, 42, .06);
}

.eit-card {
  padding: 34px;
  min-height: 245px;
}

.eit-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #eef6ff;
  font-size: 28px;
  margin-bottom: 20px;
}

.eit-card h3,
.eit-mini-card h3,
.eit-step h3,
.eit-price-card h3,
.eit-feature-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #073b84;
}

.eit-card p,
.eit-mini-card p,
.eit-step p,
.eit-price-card p,
.eit-feature-box p {
  color: #64748b;
  line-height: 1.7;
  font-size: 16px;
}

.eit-process {
  background: #eef4fb;
}

.eit-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.eit-step {
  padding: 28px;
  position: relative;
}

.eit-step span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0b66d8;
  color: #fff;
  font-weight: 900;
  margin-bottom: 22px;
}

.eit-mini-card {
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.eit-mini-card:hover,
.eit-card:hover,
.eit-price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, .12);
}

.eit-why {
  background: linear-gradient(135deg, #071427, #0b3a78);
  color: #fff;
}

.eit-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
}

.eit-split h2,
.eit-final-box h2 {
  color: #fff;
}

.eit-split p {
  color: #dbeafe;
}

.eit-checklist {
  margin-top: 24px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.eit-checklist li {
  color: #eef6ff;
  line-height: 1.6;
}

.eit-checklist li::before {
  content: "✓";
  color: #38bdf8;
  font-weight: 900;
  margin-right: 10px;
}

.eit-feature-box {
  padding: 36px;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
}

.eit-feature-box p {
  color: #e0f2fe;
  margin-bottom: 24px;
}

.eit-price-card {
  padding: 34px;
}

.eit-price-card strong {
  display: block;
  font-size: 32px;
  color: #0b66d8;
  margin: 12px 0 16px;
}

.eit-price-card a,
.eit-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #0b66d8;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  max-width: 100%;
}

.eit-price-card.featured {
  border: 2px solid #0b66d8;
  transform: scale(1.02);
}

.eit-final-cta {
  padding: clamp(70px, 9vw, 120px) 0;
  background: #f4f7fb;
}

.eit-final-box {
  text-align: center;
  border-radius: 30px;
  padding: clamp(40px, 7vw, 80px) 24px;
  background: linear-gradient(135deg, #0b66d8, #071427);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .18);
}

.eit-final-box p {
  color: #dbeafe;
  max-width: 700px;
  margin: 0 auto;
}

.eit-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.eit-btn-light {
  background: #fff;
  color: #0b66d8;
}

@media (max-width: 980px) {
  .eit-3,
  .eit-4,
  .eit-steps,
  .eit-proof-grid,
  .eit-split {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .eit-wrap {
    width: min(100% - 24px, 1180px);
  }

  .eit-3,
  .eit-4,
  .eit-steps,
  .eit-proof-grid,
  .eit-split {
    grid-template-columns: 1fr;
  }

  .eit-card,
  .eit-mini-card,
  .eit-price-card,
  .eit-feature-box,
  .eit-step {
    padding: 24px;
    border-radius: 20px;
  }

  .eit-price-card.featured {
    transform: none;
  }

  .eit-cta-actions,
  .eit-btn,
  .eit-price-card a {
    width: 100%;
  }
}
