:root {
  --ink: #122a28;
  --muted: #60726f;
  --green: #087f5b;
  --green-dark: #075f48;
  --mint: #dff5ec;
  --cream: #f6f8f5;
  --line: #dce5e1;
  --white: #fff;
  --shadow: 0 20px 55px rgba(15, 50, 42, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.65;
  background: #fff;
}
a {
  color: var(--green);
  text-underline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 9999;
  background: #fff;
  padding: 0.75rem 1rem;
}
.skip-link:focus {
  left: 8px;
}
.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 229, 225, 0.85);
  backdrop-filter: blur(12px);
}
.navbar {
  min-height: 76px;
}
.navbar-brand {
  color: var(--ink);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #fff;
  background: var(--green);
  font-weight: 800;
}
.nav-link {
  color: #38514d !important;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 0.7rem !important;
  border-radius: 8px;
}
.nav-link:hover,
.nav-link.active {
  color: var(--green) !important;
  background: #edf8f3;
}
.language-link {
  display: block;
  padding: 0.4rem 0.7rem;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
}
.hero-section {
  padding: 92px 0 145px;
  background: radial-gradient(circle at 88% 12%, #dff6ec 0, transparent 28%),
    linear-gradient(135deg, #fbfdfb 0, #f0f7f3 100%);
  overflow: hidden;
}
.eyebrow,
.section-kicker {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.eyebrow span {
  width: 22px;
  height: 2px;
  background: var(--green);
}
h1 {
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 760;
  max-width: 850px;
}
.hero-lead {
  font-size: 1.18rem;
  color: #516763;
  max-width: 680px;
  margin: 1.5rem 0 2rem;
}
.btn {
  font-weight: 700;
  border-radius: 10px;
  padding: 0.75rem 1.15rem;
}
.btn-lg {
  padding: 0.9rem 1.35rem;
  font-size: 0.95rem;
}
.btn-primary {
  background: var(--green);
  border-color: var(--green);
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline-secondary {
  border-color: #b8c8c3;
  color: #294440;
  background: #fff;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.8rem;
  color: #57706b;
  font-size: 0.8rem;
  font-weight: 650;
}
.trust-row span::first-letter {
  color: var(--green);
}
.hero-visual {
  background: #fff;
  border: 1px solid #e2ebe7;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 26px 70px rgba(22, 65, 52, 0.14);
  transform: rotate(1deg);
}
.visual-top,
.visual-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.72rem;
}
.positive-pill {
  background: #e4f7ef;
  color: #087253;
  padding: 0.35rem 0.55rem;
  border-radius: 20px;
  font-weight: 750;
}
.visual-value {
  margin: 1.6rem 0 0.4rem;
}
.visual-value small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}
.visual-value strong {
  font-size: 2rem;
  letter-spacing: -0.04em;
}
.hero-visual svg {
  width: 100%;
  display: block;
}
.visual-labels {
  border-top: 1px solid var(--line);
  padding-top: 0.65rem;
}
.calculator-overlap {
  margin-top: -80px;
  position: relative;
}
.calculator-shell {
  background: #fff;
  border: 1px solid #dde8e4;
  border-radius: 20px;
  padding: clamp(1.25rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow);
}
.calculator-shell h2 {
  font-size: 1.65rem;
  letter-spacing: -0.035em;
  font-weight: 760;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #56706b;
  background: #f3f8f6;
  border-radius: 40px;
  padding: 0.4rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
}
.live-badge span {
  width: 7px;
  height: 7px;
  background: #18a978;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #d8f3e9;
}
.input-section-title {
  float: none;
  width: auto;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 750;
}
.form-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: #526965;
  margin-bottom: 0.4rem;
}
.form-control,
.form-select {
  min-height: 46px;
  border-color: #d4dfdb;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--ink);
}
.form-control:focus,
.form-select:focus {
  border-color: #25a77d;
  box-shadow: 0 0 0 0.2rem rgba(8, 127, 91, 0.1);
}
.input-suffix {
  position: relative;
}
.input-suffix .form-control {
  padding-right: 3.4rem;
}
.input-suffix span {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: #71837f;
  pointer-events: none;
}
.form-check-input:checked {
  background-color: var(--green);
  border-color: var(--green);
}
.form-check-label {
  font-size: 0.8rem;
  font-weight: 650;
}
.info-dot {
  border: 1px solid #b7c8c3;
  color: #57706b;
  background: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  width: 18px;
  height: 18px;
  padding: 0;
}
.result-hero {
  background: linear-gradient(135deg, #093d36, #0b7157);
  color: #fff;
  border-radius: 15px;
  padding: 1.35rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.result-hero:after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 36px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  right: -60px;
  top: -70px;
}
.result-hero span,
.result-hero small {
  display: block;
  color: #bfe2d8;
  font-size: 0.72rem;
}
.result-hero strong {
  display: block;
  font-size: clamp(2rem, 5vw, 2.7rem);
  line-height: 1.25;
  letter-spacing: -0.045em;
  margin: 0.3rem 0;
}
.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.result-card {
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0.9rem 1rem;
  background: #fff;
}
.result-card span {
  font-size: 0.69rem;
  color: var(--muted);
  display: block;
}
.result-card strong {
  font-size: 1.05rem;
}
.chart-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem;
}
.chart-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}
.chart-heading h3 {
  font-size: 0.85rem;
  margin: 0;
  font-weight: 750;
}
.chart-heading p {
  font-size: 0.67rem;
  color: var(--muted);
  margin: 0;
}
.chart-legend {
  display: flex;
  gap: 0.8rem;
  font-size: 0.62rem;
  color: var(--muted);
  white-space: nowrap;
}
.chart-legend i {
  display: inline-block;
  width: 12px;
  height: 4px;
  margin-right: 0.3rem;
  vertical-align: middle;
}
.legend-area {
  background: #56bd9a;
}
.legend-line {
  border-top: 2px dashed #8da19c;
}
.projection-chart {
  height: 190px;
  margin-top: 0.6rem;
}
.projection-chart svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.cost-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f5f8f7;
  border-radius: 11px;
  margin-top: 0.75rem;
  padding: 0.9rem 1rem;
  gap: 1rem;
}
.cost-strip div + div {
  border-left: 1px solid #dbe4e1;
  padding-left: 1rem;
}
.cost-strip span {
  display: block;
  font-size: 0.66rem;
  color: var(--muted);
}
.cost-strip strong {
  font-size: 0.9rem;
}
.projection-details {
  margin-top: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 11px;
}
.projection-details summary {
  cursor: pointer;
  padding: 0.8rem 1rem;
  font-size: 0.75rem;
  font-weight: 750;
}
.projection-details .table-responsive {
  max-height: 300px;
}
.projection-table {
  font-size: 0.7rem;
  margin: 0;
}
.projection-table th,
.projection-table td {
  padding: 0.5rem 1rem;
}
.projection-table td:not(:first-child),
.projection-table th:not(:first-child) {
  text-align: right;
}
.section-block {
  padding: 100px 0;
}
.section-tint {
  background: #f3f7f5;
}
.section-heading {
  max-width: 700px;
  margin-bottom: 2.5rem;
}
.section-heading h2,
.section-block h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.045em;
  margin: 0.7rem 0 1rem;
}
.section-heading p,
.lead-copy {
  color: var(--muted);
  font-size: 1.05rem;
}
.feature-grid article {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(17, 57, 47, 0.08);
}
.feature-grid h3 {
  font-size: 1.05rem;
  margin: 1.2rem 0 0.6rem;
}
.feature-grid p {
  font-size: 0.87rem;
  color: var(--muted);
}
.feature-grid a {
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}
.feature-icon {
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--green);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-weight: 800;
}
.scenario-list {
  margin-top: 2rem;
}
.scenario-list > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.scenario-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px #e8eeeb;
}
.scenario-dot.conservative {
  background: #8da19c;
}
.scenario-dot.balanced {
  background: #0d9168;
}
.scenario-dot.ambitious {
  background: #e0a12f;
}
.scenario-list strong,
.scenario-list small {
  display: block;
}
.scenario-list small {
  color: var(--muted);
  font-size: 0.78rem;
}
.insight-card {
  background: #0a4f43;
  color: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 24px 60px rgba(9, 73, 61, 0.18);
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.5;
  color: #55c49e;
}
.insight-card p {
  font-size: 1.3rem;
  line-height: 1.55;
  margin: 1rem 0 1.5rem;
}
.insight-card a {
  color: #c7f2e2;
  font-weight: 700;
  text-decoration: none;
}
.faq-preview a {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.2rem 1.25rem;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
}
.faq-preview a:hover {
  border-color: #81b9a6;
}
.faq-preview span {
  color: #8ba09a;
  font-size: 0.7rem;
}
.faq-preview strong {
  font-size: 0.9rem;
  flex: 1;
}
.faq-preview b {
  color: var(--green);
}
.disclaimer-band {
  padding: 2rem 0;
  background: #e8f3ef;
}
.disclaimer-band .container {
  display: flex;
  gap: 1.5rem;
  align-items: start;
}
.disclaimer-band strong {
  white-space: nowrap;
  font-size: 0.78rem;
}
.disclaimer-band p {
  margin: 0;
  color: #506762;
  font-size: 0.78rem;
}
.page-hero {
  padding: 70px 0 65px;
  background: linear-gradient(145deg, #f7faf8, #eaf4ef);
}
.page-hero.compact {
  padding: 55px 0;
}
.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.6rem);
  margin: 0.7rem 0 1rem;
}
.page-hero p {
  max-width: 750px;
  color: #526965;
  font-size: 1.1rem;
}
.page-hero.en-hero {
  padding-bottom: 120px;
}
.breadcrumb-nav {
  display: flex;
  gap: 0.65rem;
  color: #849590;
  font-size: 0.72rem;
  margin-bottom: 1.5rem;
}
.breadcrumb-nav a {
  color: #5a716c;
  text-decoration: none;
}
.page-calculator {
  margin-top: -55px;
  position: relative;
  margin-bottom: 75px;
}
.article-section {
  padding: 75px 0;
}
.prose {
  max-width: 850px;
}
.prose.wide {
  max-width: 1050px;
}
.prose h2 {
  font-size: 1.7rem;
  letter-spacing: -0.035em;
  margin: 2.5rem 0 0.8rem;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose p,
.prose li {
  color: #4f6460;
}
.prose a {
  font-weight: 650;
}
.note-box {
  border-left: 4px solid var(--green);
  background: #f0f7f4;
  padding: 1.2rem 1.4rem;
  border-radius: 0 10px 10px 0;
  margin: 2rem 0;
}
.note-box strong {
  display: block;
  margin-bottom: 0.3rem;
}
.note-box p {
  margin: 0;
  font-size: 0.9rem;
}
.comparison-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.comparison-cards div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
}
.comparison-cards .featured {
  border-color: #5eb396;
  background: #eff8f4;
}
.comparison-cards strong,
.comparison-cards span {
  display: block;
}
.comparison-cards strong {
  font-size: 1.5rem;
}
.comparison-cards span {
  color: var(--muted);
  font-size: 0.72rem;
}
.formula-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  background: #f4f8f6;
  border-radius: 14px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.formula-box span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.55rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
}
.formula-box b {
  color: var(--green);
}
.content-table,
.comparison-table {
  margin: 1.5rem 0;
  border-color: var(--line);
  font-size: 0.85rem;
}
.content-table th,
.comparison-table th {
  color: var(--ink);
}
.content-table td,
.content-table th,
.comparison-table td,
.comparison-table th {
  padding: 1rem;
}
.comparison-table thead th {
  background: #0b5547;
  color: #fff;
  border: 0;
}
.check {
  color: var(--green);
  font-weight: 900;
}
.status-banner {
  display: flex;
  gap: 1rem;
  background: #fff8e7;
  border: 1px solid #efdfb9;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 2rem;
}
.status-banner strong {
  white-space: nowrap;
  color: #795b16;
}
.status-banner span {
  font-size: 0.85rem;
  color: #6b6047;
}
.subsidy-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.subsidy-steps > div {
  background: #f3f8f6;
  padding: 1.2rem;
  border-radius: 12px;
  display: flex;
  gap: 0.8rem;
}
.subsidy-steps > div > span {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}
.subsidy-steps p,
.subsidy-steps strong {
  display: block;
  margin: 0;
}
.subsidy-steps p {
  font-size: 0.78rem;
}
.method-list {
  list-style: none;
  padding: 0;
}
.method-list li {
  display: flex;
  gap: 1.3rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
.method-list li > span {
  color: #95a9a3;
  font-size: 0.8rem;
  font-weight: 800;
}
.method-list strong {
  color: var(--ink);
}
.method-list p {
  margin: 0.3rem 0 0;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 95px;
}
.faq-list summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 750;
  padding: 1.3rem 0;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--green);
  font-size: 1.4rem;
  transition: transform 0.2s;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  padding: 0 2.5rem 1.4rem 0;
  margin: 0;
}
.contact-card {
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: 15px;
}
.contact-card span,
.contact-card strong {
  display: block;
}
.contact-card span {
  font-size: 0.75rem;
  color: var(--muted);
}
.contact-card strong {
  font-size: 1.3rem;
  margin: 0.2rem 0 1rem;
}
.not-found {
  padding: 130px 0;
}
.not-found span {
  font-size: 5rem;
  font-weight: 800;
  color: #cfe4dc;
}
.not-found h1 {
  margin: 0 auto 1rem;
}
.comparison-toggle {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  margin-top: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px dashed #9abbb0;
  border-radius: 9px;
  background: #f7fbf9;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 750;
  text-align: left;
}
.comparison-toggle:hover {
  background: #edf7f3;
  border-color: var(--green);
}
.comparison-toggle span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dcefe8;
  font-size: 0.95rem;
}
.comparison-settings {
  margin-top: 0.75rem;
  padding: 1rem;
  border: 1px solid #efd7bb;
  border-radius: 11px;
  background: #fffbf6;
}
.comparison-subsidy {
  padding-top: 0.75rem;
  border-top: 1px solid #eadbc9;
}
.scenario-marker {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.4rem;
  vertical-align: middle;
}
.scenario-one {
  background: #07805b;
}
.scenario-two {
  background: #d5842f;
}
.result-hero span b {
  font-weight: inherit;
}
.comparison-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.75rem;
  padding: 1rem 1.2rem;
  border: 1px solid #efd7bb;
  border-radius: 11px;
  background: #fffbf6;
}
.comparison-result > div + div {
  border-left: 1px solid #eadbc9;
  padding-left: 1rem;
}
.comparison-result span {
  display: block;
  color: #766b5f;
  font-size: 0.68rem;
}
.comparison-result strong {
  display: block;
  font-size: 1.05rem;
}
.comparison-positive {
  color: var(--green);
}
.comparison-negative {
  color: #a84c3d;
}
.legend-comparison {
  background: #d5842f;
}
.advanced-settings {
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #f8faf9;
}
.advanced-settings summary {
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 0.9rem 2.6rem 0.9rem 1rem;
}
.advanced-settings summary::-webkit-details-marker {
  display: none;
}
.advanced-settings summary:after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e1f1eb;
  color: var(--green);
  font-size: 1rem;
  font-weight: 700;
}
.advanced-settings[open] summary:after {
  content: "−";
}
.advanced-settings summary span {
  font-size: 0.8rem;
  font-weight: 750;
  color: var(--ink);
}
.advanced-settings summary small {
  font-size: 0.65rem;
  color: var(--muted);
}
.advanced-settings-body {
  padding: 1rem;
  border-top: 1px solid var(--line);
  background: #fff;
  border-radius: 0 0 11px 11px;
}
.site-footer {
  background: #0c2f2a;
  color: #d5e6e1;
  padding: 65px 0 20px;
}
.site-footer a {
  display: block;
  color: #aec5bf;
  text-decoration: none;
  font-size: 0.8rem;
  margin: 0.5rem 0;
}
.site-footer a:hover {
  color: #fff;
}
.footer-copy {
  max-width: 420px;
  color: #9fbbb4;
  font-size: 0.85rem;
}
.footer-title {
  font-size: 0.75rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  color: #79978f;
  font-size: 0.7rem;
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0;
  }
  .hero-section {
    padding-top: 65px;
  }
  .hero-visual {
    max-width: 600px;
    margin: auto;
  }
  .calculator-overlap {
    margin-top: -65px;
  }
  .page-calculator {
    margin-top: -40px;
  }
  .section-block {
    padding: 75px 0;
  }
}
@media (max-width: 767.98px) {
  h1 {
    font-size: 2.45rem;
  }
  .hero-section {
    padding-bottom: 110px;
  }
  .trust-row {
    display: grid;
    gap: 0.5rem;
  }
  .calculator-shell {
    border-radius: 14px;
  }
  .result-grid {
    grid-template-columns: 1fr 1fr;
  }
  .chart-heading {
    display: block;
  }
  .chart-legend {
    margin-top: 0.6rem;
  }
  .comparison-cards,
  .subsidy-steps {
    grid-template-columns: 1fr;
  }
  .disclaimer-band .container,
  .status-banner {
    display: block;
  }
  .disclaimer-band strong,
  .status-banner strong {
    display: block;
    margin-bottom: 0.5rem;
  }
  .section-block {
    padding: 60px 0;
  }
  .article-section {
    padding: 55px 0;
  }
  .page-hero {
    padding: 50px 0;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin: 0.35rem 0;
  }
}
@media (max-width: 420px) {
  .result-grid,
  .cost-strip,
  .comparison-result {
    grid-template-columns: 1fr;
  }
  .cost-strip div + div,
  .comparison-result > div + div {
    border-left: 0;
    border-top: 1px solid #dbe4e1;
    padding-left: 0;
    padding-top: 0.7rem;
  }
  .chart-legend {
    white-space: normal;
  }
  .result-hero strong {
    font-size: 2rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}

span#emailname::after {
  content: "@altersvorsorgedepot-rendite.de";
}
span#emailname::before {
  content: "kontakt";
}
span#mymail {
  display: none;
}
span#phone::after {
  content: " 605 908 67";
}
span#phone::before {
  content: "+49 40";
}
span#myphone {
  display: none;
}
