:root {
  --blue: #1e73be;
  --dark: #1b2a3a;
  --text: #1e73be;
  --bg1: #f4f7fb;
  --bg2: #ffffff;
  --warn: #b24a3a;
  --ok: #2e8b57;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Verdana", sans-serif;
  color: var(--text);
  background: var(--bg1);
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: "Verdana", sans-serif;
  color: var(--dark);
  margin: 0 0 0.6rem;
}

h1 {
  font-size: 38px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h3 {
  margin-top: 1.2rem;
}

.policy-page h3 {
  color: var(--blue);
  margin: 18px 0 8px;
}

.policy-page h4 {
  color: var(--blue);
  margin: 16px 0 6px;
}

.policy-page .policy-subtitle {
  margin: 16px 0 6px;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

main section {
  padding: 44px 0;
}

.section-tight {
  padding-bottom: 16px;
}

.about-layout {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.about-text {
  flex: 1 1 60%;
}

.about-image {
  flex: 0 0 35%;
  display: flex;
  justify-content: flex-end;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}

.center {
  text-align: center;
}

.topbar {
  background: var(--blue);
  color: #ffffff;
  font-size: 14px;
}

.topbar a {
  color: #ffffff;
}

.topbar a.topbar-link-hidden-temp,
.topbar a.topbar-link-hidden-temp:hover,
.topbar a.topbar-link-hidden-temp:focus {
  color: var(--blue);
  text-decoration: none;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.topbar-left .sep {
  margin: 0 10px;
  color: #a9bfd6;
}

.topbar-left {
  padding-left: 8px;
}

.topbar-right {
  padding-right: 8px;
}

.topbar-right a {
  margin-left: 12px;
}

.topbar-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-contact svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex: 0 0 auto;
}

.social-links {
  display: inline-flex;
  gap: 10px;
  margin-left: 10px;
  vertical-align: middle;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.social-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.hero {
  padding: 40px 0 24px;
}

.hero-inner {
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 0 1 320px;
  text-align: center;
}

.hero-title {
  margin-bottom: 8px;
  color: var(--blue);
}

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

.logo {
  width: 220px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.hero-image {
  flex: 0 1 320px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero-image img {
  width: 280px;
  height: auto;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
}

.lead {
  font-size: 1.05rem;
}

.divider {
  border-top: 1px solid #cfd8e3;
  margin: 20px auto 16px;
  width: 80%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 20px;
  justify-content: center;
}

.stat {
  background: #fff;
  border: 1px solid #e0e6ee;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(30, 115, 190, 0.08);
}

.stat .label {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef4fb;
  color: var(--blue);
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat .value {
  font-size: 28px;
  color: var(--blue);
  font-weight: bold;
  margin-top: 6px;
}

.section-title {
  text-align: center;
  color: var(--blue);
  margin-bottom: 16px;
}

.section-title-muted {
  font-weight: normal;
}

.intro-question .lead {
  font-size: 1.15rem;
}

.intro-question .lead-large {
  font-size: 1.25rem;
}

.intro-question {
  padding-bottom: 0;
}

.intro-question + section {
  padding-top: 12px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.cards-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid #e0e6ee;
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.cards-center .card {
  width: 100%;
  max-width: 320px;
}

.card h2 {
  color: var(--blue);
}

.card h3 {
  color: var(--blue);
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef4fb;
  color: var(--blue);
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--blue);
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  margin-top: 16px;
}

.quote {
  font-style: italic;
  color: var(--blue);
}

.warn {
  color: var(--warn);
  font-weight: bold;
}

.ok {
  color: var(--ok);
  font-weight: bold;
}

.tabs {
  margin-top: 12px;
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.tab {
  border: 1px solid #c9d8ea;
  background: #f4f8ff;
  color: var(--blue);
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.12rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tab.is-active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.tab-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.tab-panel .card {
  text-align: center;
}

.partner-section {
  color: #444444;
}

.partner-section .section-title,
.partner-section a {
  color: #444444;
}




.cookie-banner[hidden] {
  display: none;
}

.cookies-open {
  overflow: auto;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  background: rgba(27, 42, 58, 0.25);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  z-index: 1000;
}

.cookie-card {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  background: #eef1f5;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  color: var(--dark);
}

.cookie-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: transparent;
  color: #1f3b57;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.cookie-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.cookie-copy h3 {
  margin: 0 0 10px;
  color: var(--dark);
}

.cookie-copy p {
  margin: 0;
  color: #1f3b57;
  font-size: 14px;
}

.cookie-options {
  display: grid;
  gap: 16px;
}

.cookie-option {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #d5dde8;
}

.cookie-option h4 {
  margin: 0;
  color: var(--dark);
}

.cookie-option p {
  margin: 8px 0 0;
  font-size: 12.5px;
  color: #3a5068;
}

.cookie-option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-always {
  font-size: 12px;
  font-weight: 600;
  color: var(--ok);
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-flex;
  align-items: center;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle span {
  position: absolute;
  inset: 0;
  background: #cfd9e6;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.cookie-toggle span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + span {
  background: var(--blue);
}

.cookie-toggle input:checked + span::after {
  transform: translateX(20px);
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.button {
  background: transparent;
  cursor: pointer;
}

.cookie-actions .button {
  margin-top: 0;
  justify-content: center;
  min-width: 170px;
}

.cookie-primary {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

.cookie-secondary {
  background: #ffffff;
}

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

  .cookie-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cookie-actions .button {
    flex: 1 1 160px;
  }
}

.footer {
  background: #e6e6e6;
  color: #1e73be;
  padding: 40px 0 24px;
}

.footer a {
  color: #1e73be;
}

.footer .social-link {
  border-color: rgba(30, 115, 190, 0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
  text-align: center;
}

footer small {
  color: #1e73be;
}

.footer-col .social-links {
  justify-content: center;
}

.footer-divider {
  width: 70%;
  height: 1px;
  background: rgba(30, 115, 190, 0.35);
  margin: 12px auto;
}

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

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

@media (max-width: 700px) {
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar-left,
  .topbar-right {
    width: 100%;
    justify-content: center;
  }

  .about-layout {
    flex-direction: column;
  }

  .about-image {
    justify-content: center;
  }

  h1 {
    font-size: 32px;
  }

  .hero-image img {
    width: 220px;
  }

  .hero-image {
    justify-content: center;
    width: 100%;
    flex-basis: 100%;
  }

  .topbar-right a {
    margin-left: 0;
    margin-right: 12px;
  }
}

.calc-page {
  padding-top: 28px;
}

.calc-page .container {
  max-width: 1400px;
}

.calc-title {
  color: var(--blue);
  font-family: "Verdana", sans-serif;
  margin-bottom: 6px;
  text-align: center;
}

.calc-subtitle {
  color: var(--blue);
  font-family: "Verdana", sans-serif;
  margin: 0 0 20px;
  text-align: center;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.calc-card {
  background: #f8f9fb;
  border: 1px solid #e3e6ec;
  border-radius: 14px;
  padding: 12px;
}

.calc-card-title {
  font-size: 20px;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e7ee;
}

.calc-card-title-purple {
  color: #5954d8;
}

.calc-card-title-green {
  color: #087b5f;
}

.calc-card-title-blue {
  color: #2251d4;
}

.calc-card-title-red {
  color: #cb3933;
}

.calc-card-title-dark {
  color: #1f2937;
}

.calc-field {
  margin-bottom: 12px;
  width: 100%;
  min-width: 0;
}

.calc-field label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  font-weight: 600;
  font-size: 14px;
  color: #334155;
  margin-bottom: 6px;
}

.calc-field label::after {
  content: "?";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #b7c3d4;
  color: #7b8898;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.calc-field label.no-auto-help::after {
  display: none;
}

.calc-help {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #b7c3d4;
  color: #7b8898;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
}

.calc-help-popover {
  position: absolute;
  z-index: 5;
  margin-top: 28px;
  margin-left: -8px;
  background: #ffffff;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  padding: 8px 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-size: 12px;
  color: #334155;
  white-space: nowrap;
}

.calc-input-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  border: 1px solid #cfd6e1;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  min-height: 24px;
}

.calc-input-wrap input {
  width: auto;
  min-width: 0;
  flex: 1 1 auto;
  border: none;
  outline: none;
  padding: 10px 4px 10px 12px;
  font-size: 16px;
  color: #1f2937;
  background: transparent;
}

.calc-input-wrap span {
  flex: 0 0 auto;
  padding: 0 10px 0 6px;
  color: #4b5563;
  font-size: 16px;
}

.calc-stepper {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 2px 0 6px;
  margin-left: 2px;
}

.calc-step-btn {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #c8d1de;
  background: #f5f8fd;
  color: #23374d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.calc-step-btn:hover {
  background: #eaf1fb;
}

.calc-two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.calc-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.calc-stack > .calc-field {
  min-width: 0;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .calc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calc-card-title {
    font-size: 18px;
  }

  .calc-input-wrap input {
    font-size: 13px;
  }

  .calc-input-wrap span {
    font-size: 13px;
  }
}

.calc-table-wrap {
  margin-top: 24px;
}

.calc-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.calc-table-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-table-title {
  margin: 0;
  font-size: 20px;
  color: var(--dark);
}

.calc-years-toggle {
  border: 1px solid #c7d3e1;
  background: #ffffff;
  color: #1f3b57;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  cursor: pointer;
}

.calc-table-scroll {
  overflow-x: auto;
}

.calc-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid #d9e1eb;
  border-radius: 10px;
  overflow: hidden;
}

.calc-table th,
.calc-table td {
  border-bottom: 1px solid #e7edf5;
  padding: 8px 10px;
  text-align: left;
  font-size: 14px;
  color: #1f2937;
}

.calc-table th {
  background: #f4f7fb;
  color: #334155;
  font-weight: 700;
}

.calc-table th.calc-th-pa {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.calc-table tbody tr:last-child td {
  border-bottom: none;
}

.calc-table tr.calc-year-milestone td {
  font-weight: 400;
  background: #eaf8ee;
  color: #14532d;
}

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