:root {
  color-scheme: light;
  --navy-950: #061a38;
  --navy-900: #071d40;
  --navy-800: #0b326b;
  --blue-700: #14539a;
  --gold-500: #e9bd31;
  --gold-100: #fff7dc;
  --ink: #10294f;
  --muted: #66758a;
  --line: #dce6f4;
  --canvas: #f3f7fc;
  --white: #ffffff;
  --success: #0b7a55;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(233, 189, 49, 0.12), transparent 25rem),
    var(--canvas);
  color: var(--ink);
  font-family: Inter, Roboto, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: var(--blue-700);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  background: linear-gradient(90deg, var(--navy-900), var(--navy-800), var(--navy-900));
  border-bottom: 1px solid rgba(233, 189, 49, 0.22);
  box-shadow: 0 7px 24px rgba(7, 29, 64, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
}

.brand strong {
  display: block;
  font-size: 16px;
  line-height: 1.15;
}

.brand strong span {
  color: var(--gold-500);
}

.brand small {
  display: block;
  margin-top: 3px;
  color: #b7c7db;
  font-size: 10px;
  font-weight: 700;
}

.header-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.header-actions a,
.language-button {
  min-height: 36px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dbe5f2;
  border: 1px solid rgba(183, 199, 219, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.language-button[aria-pressed="true"] {
  color: var(--navy-950);
  border-color: var(--gold-500);
  background: var(--gold-500);
}

.page {
  width: min(1120px, calc(100% - 36px));
  margin: 30px auto 48px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 52px);
  color: var(--white);
  border: 1px solid rgba(112, 137, 175, 0.6);
  border-radius: 24px;
  background: linear-gradient(135deg, #071f46, #0c3976 56%, #071e43);
  box-shadow: 0 22px 54px rgba(7, 29, 64, 0.18);
}

.hero::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -130px;
  width: 290px;
  height: 290px;
  border: 34px solid rgba(233, 189, 49, 0.1);
  border-radius: 50%;
}

.eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #ffdc67;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 790px;
  margin: 0;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero p {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 15px 0 0;
  color: #d8e2f0;
  font-size: 15px;
}

.meta-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.meta-pill {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e9eff8;
  font-size: 10px;
  font-weight: 800;
}

.notice {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #ead58d;
  border-radius: 15px;
  background: var(--gold-100);
  color: #624b08;
  font-size: 12px;
  font-weight: 700;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

.content-card,
.side-card,
.plan-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(22, 55, 95, 0.06);
}

.content-card {
  padding: clamp(22px, 4vw, 38px);
}

.copy-section + .copy-section {
  margin-top: 30px;
}

.copy-section h2 {
  margin: 0 0 9px;
  color: #0b2d5e;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.copy-section h3 {
  margin: 20px 0 7px;
  color: #173f72;
  font-size: 15px;
}

.copy-section p {
  margin: 7px 0;
  color: #44556d;
  font-size: 13.5px;
}

.copy-section .lead {
  color: #2f496b;
  font-size: 15px;
  font-weight: 650;
}

.copy-section ul,
.copy-section ol {
  margin: 9px 0;
  padding-left: 20px;
  color: #44556d;
  font-size: 13.5px;
}

.copy-section li + li {
  margin-top: 6px;
}

.side-card {
  position: sticky;
  top: 91px;
  padding: 18px;
}

.side-card strong {
  display: block;
  margin-bottom: 10px;
  color: #0b2d5e;
}

.side-card a {
  display: block;
  padding: 8px 9px;
  color: #50627a;
  border-radius: 9px;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 750;
}

.side-card a:hover {
  color: var(--navy-800);
  background: #edf3fb;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 18px;
}

.plan-card {
  position: relative;
  padding: 22px;
}

.plan-card.featured {
  border-color: #e4bc3d;
  box-shadow: 0 14px 35px rgba(167, 126, 12, 0.13);
}

.plan-badge {
  display: inline-block;
  padding: 5px 8px;
  color: #174f92;
  border-radius: 999px;
  background: #eaf3fc;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.plan-card.featured .plan-badge {
  color: #664d07;
  background: var(--gold-100);
}

.plan-card h2 {
  margin: 13px 0 4px;
  color: #0b2d5e;
  font-size: 21px;
}

.plan-price {
  margin: 10px 0 13px;
  color: #071d40;
  font-size: 29px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.plan-price small {
  color: #718096;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0;
}

.plan-card ul {
  padding-left: 18px;
  color: #4f6076;
  font-size: 12px;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  padding: 13px 15px;
  text-align: left;
  border-bottom: 1px solid #e7edf5;
  font-size: 12px;
}

th {
  color: #23466f;
  background: #edf3fa;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.status {
  display: inline-flex;
  padding: 4px 8px;
  color: var(--success);
  border-radius: 999px;
  background: #e7f7f0;
  font-size: 9px;
  font-weight: 900;
}

.policy-date {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 10px;
  color: #dce7f7;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 800;
}

.callout {
  margin: 18px 0;
  padding: 16px 18px;
  color: #17406d;
  border: 1px solid #bed6f2;
  border-left: 4px solid #2269b4;
  border-radius: 13px;
  background: #eff6fe;
  font-size: 12.5px;
  font-weight: 650;
}

.callout.gold {
  color: #624b08;
  border-color: #ead58d;
  border-left-color: var(--gold-500);
  background: var(--gold-100);
}

.contact-card {
  display: grid;
  gap: 7px;
  margin-top: 18px;
  padding: 18px;
  color: #dce7f7;
  border: 1px solid #315682;
  border-radius: 15px;
  background: linear-gradient(135deg, #0b2d5e, #0d3b78);
  font-size: 12px;
}

.contact-card strong {
  color: #ffdc67;
  font-size: 13px;
}

.contact-card a {
  color: #ffffff;
  font-weight: 850;
}

.action-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 0 15px;
  color: #092852;
  border-radius: 11px;
  background: var(--gold-500);
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
}

.site-footer {
  padding: 28px 5vw;
  color: #b6c5d9;
  background: var(--navy-950);
  font-size: 11px;
}

.footer-inner {
  width: min(1120px, 100%);
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-links a {
  color: #dce6f3;
  text-decoration: none;
  font-weight: 750;
}

[data-copy] {
  display: none;
}

[data-copy].active {
  display: block;
}

.copy-inline[data-copy].active {
  display: inline;
}

.status.copy-inline[data-copy].active,
.policy-date[data-copy].active {
  display: inline-flex;
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
  }

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

@media (max-width: 660px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 13px 16px;
  }

  .header-actions {
    width: 100%;
  }

  .page {
    width: min(100% - 22px, 1120px);
    margin-top: 12px;
  }

  .hero {
    padding: 28px 21px;
    border-radius: 19px;
  }

  .content-card {
    padding: 21px 18px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
