
.eg121de,
.eg121de * {
  box-sizing: border-box;
}

.eg121de {
  --navy: #092f62;
  --blue: #1765a9;
  --teal: #078991;
  --orange: #df6b20;
  --text: #26374a;
  --muted: #607084;
  --line: #dce5ee;
  --light: #f4f8fc;
  max-width: 1180px;
  margin: 0 auto;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.eg121de h2,
.eg121de h3,
.eg121de h4 {
  color: var(--navy);
  line-height: 1.3;
}

.eg121de h2 {
  margin: 0 0 18px;
  font-size: clamp(29px, 4vw, 42px);
}

.eg121de h3 {
  margin: 0 0 16px;
  font-size: 25px;
}

.eg121de h4 {
  margin: 0 0 10px;
  font-size: 19px;
}

.eg121de p {
  margin: 0 0 15px;
}

.eg121de a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.eg121de-section {
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}

.eg121de-hero {
  padding: 50px 42px;
  color: #fff;
  background: linear-gradient(125deg, #082a59, #087b8e);
  border-radius: 18px;
}

.eg121de-hero h2,
.eg121de-hero a {
  color: #fff;
}

.eg121de-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 13px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
}

.eg121de-lead {
  max-width: 970px;
  color: #edf7ff;
  font-size: 18px;
}

.eg121de-primary {
  margin-top: 23px;
  padding: 16px 19px;
  color: var(--navy);
  background: #fff;
  border-left: 5px solid #f09a38;
  border-radius: 7px;
}

.eg121de-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.eg121de-badge {
  padding: 7px 13px;
  color: var(--navy);
  background: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.eg121de-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.eg121de-fact {
  padding: 20px;
  background: #fff;
  border-right: 1px solid var(--line);
}

.eg121de-fact:nth-child(4n) {
  border-right: 0;
}

.eg121de-fact dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.eg121de-fact dd {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.eg121de-note {
  margin-top: 22px;
  padding: 17px 20px;
  color: var(--navy);
  background: #eaf5ff;
  border-left: 4px solid var(--blue);
  border-radius: 5px;
}

.eg121de-warning {
  margin-top: 22px;
  padding: 19px 21px;
  color: #70400e;
  background: #fff5e5;
  border: 1px solid #edcf9f;
  border-left: 5px solid var(--orange);
  border-radius: 8px;
}

.eg121de-boundary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
}

.eg121de-boundary > div {
  padding: 25px;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.eg121de-boundary ul,
.eg121de-card ul {
  margin: 10px 0 0;
  padding-left: 21px;
}

.eg121de-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.eg121de-table {
  width: 100%;
  min-width: 740px;
  border-collapse: collapse;
}

.eg121de-table th,
.eg121de-table td {
  padding: 13px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.eg121de-table th {
  width: 34%;
  color: var(--navy);
  background: #edf4fa;
}

.eg121de-table tr:last-child th,
.eg121de-table tr:last-child td {
  border-bottom: 0;
}

.eg121de-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
  margin-top: 23px;
}

.eg121de-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 11px;
  box-shadow: 0 8px 24px rgba(9,47,98,.06);
}

.eg121de-card p:last-child {
  margin-bottom: 0;
}

.eg121de-card strong {
  color: var(--navy);
}

.eg121de-label {
  display: block;
  margin-bottom: 5px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.eg121de-stack {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.eg121de-layer {
  position: relative;
  padding: 21px 14px;
  text-align: center;
  background: var(--light);
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 9px;
}

.eg121de-layer:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -12px;
  z-index: 2;
  color: var(--blue);
  font-size: 19px;
  font-weight: 700;
}

.eg121de-layer strong {
  display: block;
  color: var(--navy);
}

.eg121de-layer small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.eg121de-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.eg121de-link {
  display: block;
  padding: 22px;
  color: var(--text) !important;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  text-decoration: none !important;
}

.eg121de-link:hover {
  border-color: var(--teal);
}

.eg121de-link strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 18px;
}

.eg121de-link span {
  color: var(--muted);
  font-weight: 400;
}

.eg121de-faq details {
  margin-bottom: 11px;
  padding: 17px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.eg121de-faq summary {
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
}

.eg121de-faq details p {
  margin: 10px 0 0;
}

.eg121de-cta {
  padding: 42px 32px;
  color: #fff;
  text-align: center;
  background: var(--navy);
  border-radius: 16px;
}

.eg121de-cta h3 {
  color: #fff;
  font-size: 29px;
}

.eg121de-cta p {
  max-width: 850px;
  margin: 0 auto 22px;
  color: #e6effa;
}

.eg121de-button {
  display: inline-block;
  padding: 13px 23px;
  color: var(--navy) !important;
  background: #fff;
  border-radius: 6px;
  text-decoration: none !important;
}

@media (max-width: 900px) {
  .eg121de-facts,
  .eg121de-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .eg121de-stack {
    grid-template-columns: 1fr;
  }

  .eg121de-layer:not(:last-child)::after {
    content: "↓";
    top: auto;
    right: 50%;
    bottom: -18px;
  }
}

@media (max-width: 640px) {
  .eg121de-hero {
    padding: 35px 22px;
  }

  .eg121de-facts,
  .eg121de-grid,
  .eg121de-boundary,
  .eg121de-links {
    grid-template-columns: 1fr;
  }

  .eg121de-fact {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .eg121de-section {
    padding: 38px 0;
  }
}
