.en-page .hero-title {
  max-width: 980px;
}

.en-page .hero-desc {
  max-width: 820px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,.68);
  font-size: 17px;
  line-height: 1.75;
}

.en-page .hero-actions {
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 34px;
}

.en-page .hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 28px;
  border-radius: 6px;
  background: var(--emerald);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(16,185,129,.2), 0 0 20px rgba(16,185,129,.18);
  transition: background .2s, box-shadow .2s, transform .2s;
}

.en-page .hero-btn-primary:hover {
  background: var(--emerald-h);
  box-shadow: 0 0 34px rgba(16,185,129,.35), 0 8px 24px rgba(16,185,129,.22);
  transform: translateY(-1px);
}

.en-page .hero-btn-secondary {
  min-height: 46px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 700;
}

.lang-switch,
.mobile-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.lang-switch {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
}

.lang-switch:hover {
  color: #fff;
  border-color: rgba(255,255,255,.36);
  background: rgba(255,255,255,.08);
}

.mobile-lang-switch {
  padding: 14px 20px;
  color: var(--navy);
}

.en-section {
  padding: 76px 0;
}

.en-section.alt {
  background: #f6f9fb;
}

.en-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.en-section-kicker {
  color: var(--emerald);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.en-section h2 {
  color: var(--navy);
  font-size: 36px;
  line-height: 1.18;
  margin: 0 0 14px;
}

.en-section-head p {
  color: var(--text-mid);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}

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

.en-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(18,34,64,.06);
}

.en-card h3 {
  color: var(--navy);
  font-size: 20px;
  margin: 0 0 10px;
}

.en-card p,
.en-card li {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.72;
}

.en-card p {
  margin: 0;
}

.en-card ul {
  margin: 0;
  padding-left: 18px;
}

.en-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.en-stat {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  padding: 18px;
}

.en-stat strong {
  display: block;
  color: #fff;
  font-size: 25px;
  margin-bottom: 5px;
}

.en-stat span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.en-cta-band {
  background: var(--navy);
  color: #fff;
  padding: 70px 0;
}

.en-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.en-cta-inner h2 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 34px;
}

.en-cta-inner p {
  color: rgba(255,255,255,.72);
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.thanks-page {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 150px 24px 90px;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 52%, var(--navy-light) 100%);
  background-size: 64px 64px, 64px 64px, 100% 100%;
}

.thanks-panel {
  width: min(100%, 620px);
  text-align: center;
  color: #fff;
}

.thanks-mark {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--emerald);
  box-shadow: 0 0 34px rgba(16,185,129,.34);
  font-size: 30px;
  font-weight: 900;
}

.thanks-panel h1 {
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: 0;
}

.thanks-panel p {
  margin: 0 auto 28px;
  max-width: 520px;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.75;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.thanks-actions a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 800;
}

.thanks-actions .primary {
  background: var(--emerald);
  color: #fff;
}

.thanks-actions .secondary {
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.04);
}

@media (max-width: 900px) {
  .en-grid,
  .en-stat-row,
  .en-cta-inner {
    grid-template-columns: 1fr;
  }

  .lang-switch {
    display: none;
  }

  .en-section h2 {
    font-size: 28px;
  }

  .thanks-panel h1 {
    font-size: 32px;
  }
}
