﻿:root {
  --font-sans: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  --color-bg: #f7f8fa;
  --color-ink: #18212f;
  --color-ink-soft: #475569;
  --color-muted: #64748b;
  --color-surface: #ffffff;
  --color-petroleum: #2563a8;
  --color-petroleum-dark: #1d4f8f;
  --color-success: #2f7d32;
  --color-warning: #f5a623;
  --color-error: #e05d5d;
  --color-glass: rgba(255, 255, 255, 0.78);
  --color-glass-dark: rgba(58, 58, 60, 0.1);
  --focus-ring: rgba(74, 144, 226, 0.38);
  --focus-ring-soft: rgba(74, 144, 226, 0.2);
  --shadow-soft: 0 12px 40px rgba(15, 47, 89, 0.1);
  --shadow-card: 0 10px 28px rgba(16, 36, 68, 0.08);
  --radius: 18px;
  font-family: var(--font-sans);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(at 0% 0%, rgba(74, 144, 226, 0.14), transparent 44%), radial-gradient(at 100% 100%, rgba(106, 191, 105, 0.11), transparent 43%), linear-gradient(160deg, #f7f8fa 0%, #fff 60%, #f7f8fa 100%);
  color: var(--color-ink);
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

.page-shell {
  width: min(1160px, 94vw);
  margin: 24px auto 66px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3.2rem;
  background: #fff;
  color: var(--color-ink);
  border: 1px solid var(--color-ink-soft);
  border-radius: 12px;
  padding: 0.58rem 0.78rem;
  z-index: 30;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0.65rem;
  width: auto;
  height: auto;
  clip: auto;
  overflow: visible;
  white-space: normal;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--color-surface) 88%, transparent);
  border: 1px solid rgba(18, 38, 63, 0.08);
  border-radius: 999px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 30px rgba(27, 53, 94, 0.1);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.topbar.is-sticky {
  box-shadow: 0 22px 38px rgba(27, 53, 94, 0.16);
}

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

.brand img {
  width: 152px;
  height: auto;
  display: block;
  filter: saturate(1.01) contrast(1.01);
}

.brand-fallback {
  font-weight: 700;
}

.topnav {
  margin-left: auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 7px;
  align-items: center;
}

.topbar-menu-trigger {
  border: 1px solid rgba(18, 38, 63, 0.17);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--color-ink);
}

.topbar-menu-trigger span,
.topbar-menu-trigger span::before,
.topbar-menu-trigger span::after {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-ink);
  transition:
    background 0.2s ease,
    transform 0.24s ease;
}

.topbar-menu-trigger span {
  transform: translateY(-2px);
}

.topbar-menu-trigger span::before,
.topbar-menu-trigger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.topbar-menu-trigger span::before {
  transform: translateY(-7px);
}

.topbar-menu-trigger span::after {
  transform: translateY(7px);
}

.topbar--open .topbar-menu-trigger span {
  background: transparent;
}

.topbar--open .topbar-menu-trigger span::before {
  transform: translateY(0) rotate(45deg);
}

.topbar--open .topbar-menu-trigger span::after {
  transform: translateY(0) rotate(-45deg);
}

.topnav a,
.cta-top {
  text-decoration: none;
  font-size: 0.86rem;
}

.topnav a {
  color: var(--color-ink-soft);
  font-weight: 500;
  padding: 8px 3px;
  border-radius: 999px;
  white-space: nowrap;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: var(--color-petroleum);
}

.topnav a[aria-current="page"] {
  color: var(--color-ink);
  font-weight: 700;
}

.cta-top {
  margin-left: 6px;
  padding-inline: 16px;
  white-space: nowrap;
}

* {
  scroll-margin-top: 90px;
}

#conteudo-principal {
  margin-top: 24px;
  position: relative;
}

.section,
.hero,
.pain-point {
  background: linear-gradient(180deg, color-mix(in srgb, var(--color-surface) 88%, transparent), color-mix(in srgb, var(--color-surface) 97%, transparent));
  border: 1px solid rgba(18, 38, 63, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 30px;
  margin-bottom: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 36px;
  background: linear-gradient(140deg, rgba(74, 144, 226, 0.14), rgba(255, 255, 255, 0.95));
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 26px;
  align-items: center;
  min-height: 430px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-product {
  position: relative;
  z-index: 1;
  margin: 0;
}

.hero-product picture {
  display: block;
  aspect-ratio: 1440 / 920;
}

.hero-product img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 920;
  object-fit: cover;
  object-position: left top;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 168, 0.14);
  box-shadow: 0 22px 46px rgba(18, 38, 63, 0.14);
}

.hero-product figcaption {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.kicker {
  font-weight: 700;
  color: var(--color-petroleum);
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0.5rem 0;
  line-height: 1.18;
}

h1 {
  font-size: clamp(1.68rem, 4.2vw, 2.55rem);
}

h2 {
  font-size: clamp(1.3rem, 2.7vw, 1.95rem);
}

h3 {
  font-size: clamp(1.02rem, 2vw, 1.25rem);
}

.lead {
  max-width: 74ch;
  color: var(--color-muted);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.1rem;
}

.microcopy {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 0.96rem;
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
details summary:focus-visible {
  box-shadow: 0 0 0 3px var(--focus-ring-soft);
}

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

.metrics,
main > .section,
main > .pain-point {
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}

.metric-card {
  padding: 18px;
  background: var(--color-surface);
  border-radius: 16px;
  border: 1px solid rgba(18, 38, 63, 0.09);
  box-shadow: 0 8px 24px rgba(16, 36, 68, 0.06);
}

.savings-simulator {
  background:
    radial-gradient(circle at 90% 12%, rgba(31, 122, 58, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 246, 255, 0.9));
}

.simulator-intro {
  max-width: 860px;
}

.simulator-panel {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  margin-top: 22px;
}

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

.simulator-form label {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(37, 99, 168, 0.16);
  border-radius: 16px;
  color: var(--color-ink);
  display: grid;
  font-size: 0.88rem;
  font-weight: 700;
  gap: 8px;
  padding: 14px;
  position: relative;
}

.simulator-form input,
.simulator-form select {
  appearance: none;
  background: #fff;
  border: 1px solid rgba(18, 38, 63, 0.13);
  border-radius: 12px;
  color: var(--color-ink);
  font: inherit;
  font-variant-numeric: tabular-nums;
  min-height: 44px;
  padding: 0 12px;
  width: 100%;
}

.simulator-form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--color-petroleum) 50%), linear-gradient(135deg, var(--color-petroleum) 50%, transparent 50%);
  background-position: calc(100% - 18px) 19px, calc(100% - 12px) 19px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 34px;
}

.input-prefix,
.input-suffix {
  bottom: 25px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
  pointer-events: none;
  position: absolute;
}

.input-prefix {
  left: 24px;
}

.input-prefix + input {
  padding-left: 38px;
}

.input-suffix {
  right: 24px;
}

.input-suffix + input {
  padding-right: 72px;
}

.simulator-result {
  align-self: stretch;
  background: linear-gradient(160deg, #102a43 0%, #153f63 52%, #1d6b47 100%);
  border-radius: 20px;
  box-shadow: 0 22px 44px rgba(16, 36, 68, 0.18);
  color: #fff;
  display: grid;
  gap: 14px;
  padding: clamp(22px, 2.5vw, 30px);
}

.result-eyebrow {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-main {
  display: block;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.06em;
  line-height: 1;
}

.simulator-result p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

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

.result-grid div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 12px;
}

.result-grid span {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 0.78rem;
  margin-bottom: 5px;
}

.result-grid strong {
  color: #fff;
  display: block;
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}

.simulator-note {
  font-size: 0.82rem;
}

.simulator-result .btn {
  background: #fff;
  border-color: #fff;
  box-shadow: none;
  color: #17642f;
  width: fit-content;
}

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

.intangible-list article {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(37, 99, 168, 0.14);
  border-radius: 16px;
  padding: 16px;
}

.intangible-list h3 {
  margin-top: 0;
}

.intangible-list p {
  color: var(--color-ink-soft);
  margin-bottom: 0;
}

.metric-card h3,
.card h3,
.card h2 {
  margin-top: 0;
}

.pain-point ul {
  margin-top: 0.7rem;
  padding-left: 1.15rem;
}

.pain-point li {
  margin-bottom: 0.4rem;
}

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

.section > .btn,
.pain-point > .btn {
  margin-top: 14px;
}

.full-width-grid {
  margin-top: 14px;
}

.card {
  background: var(--color-surface);
  border: 1px solid rgba(18, 38, 63, 0.09);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(16, 36, 68, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(74, 144, 226, 0.3);
  box-shadow: 0 14px 28px rgba(18, 38, 63, 0.12);
}

.split {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 18px;
  align-items: start;
}

.quote {
  background: color-mix(in srgb, rgba(74, 144, 226, 0.14) 60%, white);
  border-radius: 16px;
  border: 1px solid rgba(74, 144, 226, 0.15);
  padding: 16px;
  color: #214062;
}

.quote p:last-child {
  margin-bottom: 0;
}

.comparison .table {
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(18, 38, 63, 0.1);
}

.comparison .row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.1fr 1.15fr;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
}

.comparison .row + .row {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.comparison .row:nth-child(even) {
  background: #f8fbff;
}

.comparison .row.head {
  background: #edf5ff;
  font-weight: 700;
}

.roi p {
  color: var(--color-muted);
}

.plans {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.big-price {
  font-size: 1.42rem;
  color: var(--color-petroleum);
  font-weight: 700;
}

.btn {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  height: 44px;
  min-width: 44px;
  padding: 0 18px;
  font-weight: 600;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-petroleum);
  color: #fff;
  border-color: var(--color-petroleum);
  box-shadow: 0 12px 24px rgba(74, 144, 226, 0.25);
}

.btn-primary:hover {
  background: var(--color-petroleum-dark);
}

.btn-whatsapp {
  background: #1f7a3a;
  color: #fff;
  border-color: #1f7a3a;
  box-shadow: 0 12px 24px rgba(31, 122, 58, 0.22);
}

.btn-whatsapp:hover {
  background: #17642f;
}

.btn-ghost {
  background: #fff;
  color: var(--color-ink);
  border-color: rgba(18, 38, 63, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--color-petroleum);
  border-color: rgba(74, 144, 226, 0.45);
}

.footer-copy {
  display: block;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

footer {
  margin-top: 20px;
  padding: 16px 0 2px;
  color: var(--color-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: space-between;
  align-items: center;
}

footer p {
  margin: 0;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--color-petroleum);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 16px 28px rgba(26, 87, 168, 0.3);
}

.floating-cta--whatsapp {
  background: #1f7a3a;
  box-shadow: 0 16px 28px rgba(31, 122, 58, 0.28);
}

.subpage {
  display: grid;
  gap: 14px;
}

.subpage-hero {
  margin-bottom: 6px;
}

.subpage article.card p,
.subpage section p {
  color: #2f465f;
}

.steps {
  display: grid;
  gap: 10px;
}

.step {
  padding: 14px;
  border: 1px dashed rgba(74, 144, 226, 0.4);
  border-radius: 12px;
  background: #fcfdff;
}

.form-wrap {
  display: grid;
  gap: 12px;
}

.form-wrap label {
  display: grid;
  gap: 6px;
  font-weight: 500;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  border-radius: 10px;
  border: 1px solid rgba(18, 38, 63, 0.16);
  background: #fff;
  min-height: 42px;
  padding: 0 12px;
  font: inherit;
  color: var(--color-ink);
  width: 100%;
}

.form-wrap input::placeholder,
.form-wrap textarea::placeholder {
  color: #8b9bb1;
}

.form-wrap textarea {
  height: 90px;
  resize: vertical;
  padding-top: 10px;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid rgba(18, 38, 63, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.form-status {
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--color-success);
}

@media (max-width: 1100px) {
  .page-shell {
    width: min(1040px, 94vw);
  }
}

@media (max-width: 980px) {
  .topbar {
    position: relative;
    top: 0;
    width: 100%;
    border-radius: 18px;
  }

  .topbar::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    box-shadow: 0 16px 34px rgba(27, 53, 94, 0.12);
  }

  .topbar--open {
    border-radius: 18px 18px 14px 14px;
  }

  .topbar-menu-trigger {
    display: inline-flex;
    z-index: 30;
  }

  .topbar {
    flex-wrap: wrap;
    align-items: center;
  }

  .brand img {
    width: 150px;
  }

  .topbar--enhanced .topnav {
    width: 100%;
    order: 3;
    margin: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 220ms ease,
      opacity 180ms ease,
      margin 180ms ease;
  }

  .topnav {
    width: 100%;
    order: 3;
    margin: 8px 0 0;
    display: grid;
    flex-wrap: initial;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .topbar--open .topnav {
    margin-top: 8px;
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .topnav a {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid rgba(18, 38, 63, 0.1);
    border-radius: 10px;
  }

  .topbar--open .topnav a {
    animation: navIn 260ms ease both;
  }

  .topbar--open .topnav a:nth-child(1) {
    animation-delay: 25ms;
  }

  .topbar--open .topnav a:nth-child(2) {
    animation-delay: 45ms;
  }

  .topbar--open .topnav a:nth-child(3) {
    animation-delay: 65ms;
  }

  .topbar--open .topnav a:nth-child(4) {
    animation-delay: 85ms;
  }

  .topbar--open .topnav a:nth-child(5) {
    animation-delay: 105ms;
  }

  .topbar--open .topnav a:nth-child(6) {
    animation-delay: 125ms;
  }

  .topnav a:only-child,
  .topbar--open .topnav a:only-child {
    animation: none;
  }

  .topbar-menu-trigger,
  .cta-top {
    margin-left: auto;
  }

  .cta-top {
    margin: 0;
    justify-content: flex-start;
  }

  .metrics,
  .grid,
  .plans,
  .split,
  .simulator-panel,
  .hero-layout,
  .comparison .row {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: 0;
  }

  .hero-product img {
    max-height: 360px;
  }

  .topbar,
  .hero-actions {
    justify-content: center;
  }

  .topnav {
    gap: 8px;
    row-gap: 10px;
  }
}

@keyframes navIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .page-shell {
    margin-top: 12px;
    width: 92vw;
    padding-bottom: 62px;
  }

  .hero,
  .section,
  .pain-point {
    padding: 18px;
  }

  .hero-product img {
    max-height: 270px;
    border-radius: 14px;
  }

  .topbar {
    padding: 10px;
  }

  .topbar .cta-top {
    display: none;
  }

  .floating-cta {
    right: 10px;
    left: 10px;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    text-align: center;
    height: 46px;
    padding: 0 12px;
    white-space: nowrap;
  }

  .nav-open .floating-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (forced-colors: active) {
  .topbar,
  .section,
  .hero,
  .card,
  .metric-card,
  .step,
  .comparison .row {
    border: 1px solid;
    background: Canvas;
    color: CanvasText;
  }

  .btn {
    border: 1px solid ButtonText;
    background: ButtonFace;
    color: ButtonText;
  }
}


.footer-legal {
  color: color-mix(in srgb, var(--ink-soft) 82%, var(--primary));
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 0.7rem;
  text-decoration: none;
}

.footer-legal:hover,
.footer-legal:focus-visible {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.consent-check {
  align-items: flex-start;
  color: var(--ink-soft);
  display: flex;
  font-size: 0.88rem;
  gap: 0.7rem;
  line-height: 1.45;
}

.consent-check input {
  accent-color: var(--primary);
  flex: 0 0 auto;
  height: 1.05rem;
  margin-top: 0.18rem;
  width: 1.05rem;
}

.consent-check a {
  color: var(--primary);
  font-weight: 800;
}

.legal-content {
  max-width: 920px;
}

.legal-content h2 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  margin: 2rem 0 0.75rem;
}

.legal-content p {
  color: var(--ink-soft);
  line-height: 1.75;
}

/* Publication polish: structured footer and legal page corrections */
.page-shell {
  padding-bottom: 92px;
}

.site-footer,
footer {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 247, 252, 0.86));
  border: 1px solid rgba(18, 38, 63, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(16, 36, 68, 0.08);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 28px;
  padding: 22px;
}

.footer-main {
  align-items: flex-start;
  display: grid;
  gap: 10px;
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
}

.footer-logo img {
  display: block;
  height: auto;
  width: 156px;
}

.footer-tagline {
  color: var(--color-muted);
  font-size: 0.98rem;
  margin: 0;
  max-width: 58ch;
}

.footer-actions {
  align-items: flex-end;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-copy {
  align-self: end;
  color: var(--color-muted);
  font-size: 0.88rem;
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 8px;
  position: relative;
}

.footer-copy::before {
  background: rgba(18, 38, 63, 0.08);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.footer-legal {
  color: var(--color-petroleum);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
  text-decoration: none;
}

.footer-legal:hover,
.footer-legal:focus-visible {
  color: var(--color-petroleum-dark);
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.consent-check {
  align-items: flex-start;
  color: var(--color-ink-soft);
  display: flex;
  font-size: 0.88rem;
  font-weight: 500;
  gap: 0.7rem;
  line-height: 1.45;
}

.consent-check input {
  accent-color: var(--color-petroleum);
  flex: 0 0 auto;
  height: 1.05rem;
  margin-top: 0.18rem;
  width: 1.05rem;
}

.consent-check a {
  color: var(--color-petroleum);
  font-weight: 800;
}

.legal-content {
  max-width: 920px;
}

.legal-content h2 {
  color: var(--color-ink);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  margin: 2rem 0 0.75rem;
}

.legal-content p {
  color: var(--color-ink-soft);
  line-height: 1.75;
}

@media (max-width: 760px) {
  .page-shell {
    padding-bottom: 88px;
  }

  .site-footer,
  footer {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .footer-actions {
    align-items: stretch;
    justify-items: stretch;
  }

  .footer-actions .btn {
    width: 100%;
  }
}

/* Final polish: remove floating CTA visual noise; WhatsApp CTAs remain in header, hero, sections and footer. */
.floating-cta {
  display: none !important;
}

/* UI/UX audit polish 2026-06-05: spacing rhythm, card hierarchy, footer separation */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li,
.lead,
.microcopy,
.card,
.metric-card,
.step {
  text-wrap: pretty;
}

.section,
.hero,
.pain-point {
  margin-bottom: clamp(22px, 2.2vw, 34px);
}

.metrics {
  align-items: stretch;
  gap: clamp(16px, 1.8vw, 24px);
  margin: clamp(24px, 2.5vw, 36px) 0 clamp(38px, 3.4vw, 56px);
  position: relative;
  z-index: 1;
}

.metric-card,
.section .card,
.step {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(37, 99, 168, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 16px 34px rgba(16, 36, 68, 0.09);
  position: relative;
}

.metric-card {
  padding: clamp(18px, 1.9vw, 24px);
}

.metric-card::before,
.section .card::before,
.step::before {
  background: linear-gradient(90deg, rgba(37, 99, 168, 0.56), rgba(31, 122, 58, 0.42));
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 18px;
  opacity: 0.75;
  position: absolute;
  right: 18px;
  top: -1px;
}

.section .grid,
.full-width-grid,
.plans,
.steps {
  gap: clamp(16px, 1.8vw, 24px);
}

.section .card {
  min-height: 100%;
  padding: clamp(20px, 2vw, 26px);
}

.section .card h2,
.section .card h3,
.metric-card h3 {
  color: var(--color-ink);
  letter-spacing: -0.025em;
}

.section .card p,
.metric-card p,
.step {
  color: #223954;
}

.quote {
  background: linear-gradient(180deg, #eef7ff 0%, #e8f3ff 100%);
  border-color: rgba(37, 99, 168, 0.2);
  box-shadow: 0 14px 30px rgba(16, 36, 68, 0.08);
}

.comparison .table {
  border-color: rgba(37, 99, 168, 0.18);
  box-shadow: 0 16px 32px rgba(16, 36, 68, 0.08);
}

.site-footer,
footer {
  background: transparent;
  border: 0;
  border-radius: 0;
  border-top: 1px solid rgba(37, 99, 168, 0.16);
  box-shadow: none;
  margin-top: clamp(56px, 5vw, 86px);
  padding: clamp(28px, 3vw, 40px) 0 10px;
}

.footer-main {
  gap: 14px;
}

.footer-tagline {
  color: #4b6380;
}

.footer-actions {
  align-content: start;
}

.footer-copy {
  padding-top: 14px;
}

.footer-copy::before {
  background: rgba(37, 99, 168, 0.14);
}

@media (max-width: 980px) {
  .metrics {
    margin-bottom: clamp(34px, 6vw, 48px);
  }
}

@media (max-width: 760px) {
  .section,
  .hero,
  .pain-point {
    margin-bottom: 22px;
  }

  .metrics {
    gap: 14px;
    margin: 22px 0 34px;
  }

  .simulator-form,
  .result-grid,
  .intangible-list {
    grid-template-columns: 1fr;
  }

  .simulator-result .btn {
    width: 100%;
  }

  .metric-card,
  .section .card,
  .step {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.92) inset,
      0 10px 22px rgba(16, 36, 68, 0.08);
  }

  .site-footer,
  footer {
    margin-top: 44px;
    padding-top: 26px;
  }
}

/* Footer audit 2026-06-05: make the footer read as the page ending, not another card. */
html,
body {
  min-height: 100%;
}

body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  body {
    overflow-x: hidden;
  }
}

.page-shell {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  margin-bottom: 0;
  min-height: 0;
  padding-bottom: 0 !important;
}

main {
  flex: 1 0 auto;
}

.site-footer,
footer {
  background:
    linear-gradient(180deg, rgba(231, 241, 249, 0.78) 0%, rgba(247, 250, 253, 0.98) 100%),
    radial-gradient(circle at 84% 20%, rgba(31, 122, 58, 0.1), transparent 36%);
  border: 0 !important;
  border-radius: 0 !important;
  border-top: 1px solid rgba(37, 99, 168, 0.18) !important;
  box-shadow: none !important;
  box-sizing: border-box;
  display: block !important;
  flex-shrink: 0;
  gap: 0 !important;
  grid-template-columns: none !important;
  margin: clamp(72px, 6vw, 112px) 0 0 !important;
  padding: clamp(36px, 4vw, 54px) 0 clamp(18px, 2.2vw, 30px) !important;
  position: relative;
  width: 100%;
}

.site-footer::before,
footer::before {
  background: linear-gradient(90deg, transparent, rgba(37, 99, 168, 0.2), rgba(31, 122, 58, 0.18), transparent);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: -1px;
}

.footer-main,
.footer-actions,
.footer-copy {
  max-width: 100%;
}

.footer-inner {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto;
  width: min(1160px, 94vw);
}

.site-footer .btn {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(37, 99, 168, 0.26);
  box-shadow: none;
  color: var(--color-petroleum);
}

.site-footer .btn:hover,
.site-footer .btn:focus-visible {
  background: #fff;
  color: var(--color-petroleum-dark);
  transform: translateY(-1px);
}

.footer-copy::before {
  background: rgba(37, 99, 168, 0.16);
}

.related-links {
  background: linear-gradient(135deg, rgba(231, 241, 249, 0.7), rgba(255, 255, 255, 0.94));
}

.related-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.related-links-list a {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(37, 99, 168, 0.22);
  border-radius: 999px;
  color: var(--color-petroleum);
  display: inline-flex;
  font-weight: 700;
  min-height: 44px;
  padding: 10px 16px;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.related-links-list a:hover,
.related-links-list a:focus-visible {
  background: rgba(37, 99, 168, 0.08);
  border-color: rgba(37, 99, 168, 0.42);
  color: var(--color-petroleum-dark);
  transform: translateY(-1px);
}

/* Grid content audit 2026-06-05: avoid accidental holes in card sections. */
.split > .full-width-grid {
  grid-column: 1 / -1;
  width: 100%;
}

.grid .card {
  align-content: start;
}

@media (max-width: 760px) {
  .page-shell {
    min-height: 0;
    padding-bottom: 0 !important;
  }

  .site-footer,
  footer {
    margin-top: 54px !important;
    padding: 30px 0 20px !important;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    width: min(92vw, 1160px);
  }

  .related-links-list {
    display: grid;
  }
}

/* Savings simulator redesign 2026-06-05: premium conversion block, simplified calculation. */
.savings-experience {
  background:
    radial-gradient(circle at 88% 0%, rgba(98, 183, 118, 0.18), transparent 30%),
    linear-gradient(180deg, #102a43 0%, #173a59 36%, #eef7ff 36.2%, #ffffff 100%);
  border: 1px solid rgba(37, 99, 168, 0.16);
  border-radius: 28px;
  box-shadow:
    0 24px 60px rgba(16, 36, 68, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.78) inset;
  color: #fff;
  margin-bottom: clamp(22px, 2.2vw, 34px);
  overflow: hidden;
  padding: clamp(22px, 3.4vw, 42px);
  position: relative;
  scroll-margin-top: 180px;
}

.savings-experience::before {
  background: linear-gradient(90deg, rgba(137, 197, 240, 0.9), rgba(102, 187, 106, 0.72), rgba(255, 255, 255, 0.2));
  content: "";
  height: 4px;
  left: clamp(22px, 3.4vw, 42px);
  position: absolute;
  right: clamp(22px, 3.4vw, 42px);
  top: 0;
}

.savings-orbit {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  height: 360px;
  pointer-events: none;
  position: absolute;
  opacity: 0.55;
  right: -160px;
  top: -220px;
  width: 360px;
}

.savings-head {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.savings-head .kicker {
  color: #a7dbff;
}

.savings-head h2 {
  color: #fff;
  font-size: clamp(1.65rem, 3.3vw, 2.45rem);
  letter-spacing: -0.055em;
  max-width: 780px;
}

.savings-head p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  max-width: 70ch;
}

.savings-workbench {
  align-items: stretch;
  display: grid;
  gap: clamp(16px, 2vw, 22px);
  grid-template-columns: minmax(220px, 0.72fr) minmax(430px, 1.18fr) minmax(320px, 0.95fr);
  margin-top: clamp(22px, 3vw, 34px);
  position: relative;
  z-index: 1;
}

.savings-copy-card,
.savings-controls,
.savings-scorecard {
  border-radius: 22px;
}

.savings-copy-card {
  background: rgba(19, 48, 74, 0.92);
  border: 1px solid rgba(180, 221, 255, 0.22);
  box-shadow: 0 18px 40px rgba(5, 18, 32, 0.2);
  color: #fff;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2vw, 24px);
}

.savings-badge {
  background: rgba(167, 219, 255, 0.14);
  border: 1px solid rgba(167, 219, 255, 0.28);
  border-radius: 999px;
  color: #d9f2ff;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 7px 10px;
  text-transform: uppercase;
  width: fit-content;
}

.savings-copy-card h3 {
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: -0.035em;
  margin: 0;
}

.savings-copy-card p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
}

.savings-checklist {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.savings-checklist li {
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  display: flex;
  gap: 8px;
}

.savings-checklist li::before {
  background: #69c27a;
  border-radius: 999px;
  content: "";
  flex: 0 0 auto;
  height: 8px;
  width: 8px;
}

.savings-controls {
  align-content: start;
  align-self: start;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(37, 99, 168, 0.12);
  box-shadow:
    0 20px 48px rgba(16, 36, 68, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(148px, auto);
  padding: clamp(16px, 2vw, 22px);
}

.savings-field {
  background: #f6faff;
  border: 1px solid rgba(37, 99, 168, 0.13);
  border-radius: 16px;
  color: var(--color-ink);
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: space-between;
  min-height: 148px;
  padding: 16px;
}

.savings-field > span:first-child {
  color: #334e68;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
  min-height: 2.2em;
}

.savings-field--wide {
  grid-column: auto;
}

.savings-input-wrap {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(18, 38, 63, 0.12);
  border-radius: 14px;
  display: grid;
  gap: 10px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 56px;
  overflow: hidden;
}

.savings-input-wrap span {
  color: var(--color-muted);
  flex: 0 0 auto;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 0;
}

.savings-input-wrap--prefix span {
  border-right: 1px solid rgba(18, 38, 63, 0.08);
  grid-column: 1;
  padding: 0 4px 0 12px;
}

.savings-input-wrap--suffix span {
  border-left: 1px solid rgba(18, 38, 63, 0.08);
  grid-column: 3;
  padding: 0 12px 0 4px;
}

.savings-input-wrap input {
  appearance: textfield;
  background: transparent;
  border: 0;
  color: var(--color-ink);
  font: inherit;
  font-size: 1.28rem;
  font-variant-numeric: tabular-nums;
  font-weight: 850;
  min-width: 0;
  outline: 0;
  padding: 0 12px;
  width: 100%;
}

.savings-input-wrap--prefix input {
  grid-column: 2 / 4;
}

.savings-input-wrap--suffix input {
  grid-column: 1 / 3;
}

.savings-input-wrap input::-webkit-inner-spin-button,
.savings-input-wrap input::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.savings-input-wrap:focus-within {
  border-color: rgba(37, 99, 168, 0.56);
  box-shadow: 0 0 0 4px rgba(37, 99, 168, 0.12);
}

.savings-scorecard {
  background: #fff;
  border: 1px solid rgba(18, 38, 63, 0.08);
  box-shadow:
    0 24px 56px rgba(16, 36, 68, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  color: var(--color-ink);
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2.2vw, 26px);
}

.savings-score-hero {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.savings-score-hero > div {
  background:
    radial-gradient(circle at 90% 10%, rgba(98, 183, 118, 0.12), transparent 34%),
    linear-gradient(180deg, #f7fbff, #ffffff);
  border: 1px solid rgba(37, 99, 168, 0.15);
  border-radius: 18px;
  padding: 16px;
}

.savings-scorecard .result-eyebrow {
  color: var(--color-petroleum);
}

.savings-scorecard .result-main {
  color: #14324f;
  font-size: clamp(2.15rem, 4vw, 3.15rem);
  letter-spacing: -0.07em;
}

.savings-scorecard .result-main--money {
  color: #17642f;
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  letter-spacing: -0.055em;
}

.savings-scorecard p {
  color: #48627e;
  margin: 0;
}

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

.savings-stats div {
  background: linear-gradient(180deg, #f7fbff, #eef7ff);
  border: 1px solid rgba(37, 99, 168, 0.13);
  border-radius: 14px;
  padding: 13px;
}

.savings-stats div:last-child {
  grid-column: 1 / -1;
}

.savings-stats span {
  color: var(--color-muted);
  display: block;
  font-size: 0.76rem;
  font-weight: 750;
  margin-bottom: 5px;
}

.savings-stats strong {
  color: var(--color-ink);
  display: block;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

.savings-scorecard .btn {
  margin-top: 4px;
  width: fit-content;
}

.savings-not-included {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 99, 168, 0.14);
  border-radius: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  position: relative;
  z-index: 1;
}

.savings-not-included > span {
  color: #25425f;
  font-size: 0.86rem;
  font-weight: 850;
}

.savings-not-included ul {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.savings-not-included li {
  background: #fff;
  border: 1px solid rgba(37, 99, 168, 0.14);
  border-radius: 999px;
  color: #38536f;
  font-size: 0.78rem;
  font-weight: 750;
  padding: 7px 10px;
}

@media (max-width: 1100px) {
  .savings-workbench {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  }

  .savings-copy-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .savings-experience {
    background:
      radial-gradient(circle at 90% 0%, rgba(98, 183, 118, 0.22), transparent 32%),
      linear-gradient(180deg, #102a43 0%, #183b5b 28%, #f8fbff 28.2%, #ffffff 100%);
    border-radius: 22px;
    padding: 22px 16px;
  }

  .savings-workbench,
  .savings-controls,
  .savings-score-hero,
  .savings-stats {
    grid-template-columns: 1fr;
  }

  .savings-field {
    min-height: 132px;
  }

  .savings-head h2 {
    font-size: clamp(1.54rem, 8vw, 2.08rem);
  }

  .savings-copy-card,
  .savings-controls,
  .savings-scorecard {
    border-radius: 18px;
  }

  .savings-scorecard .btn {
    width: 100%;
  }

  .savings-not-included {
    align-items: stretch;
    display: grid;
  }

  .savings-not-included ul {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Savings simulator: editorial rebuild 2026-06-05 */
.savings-experience {
  position: relative;
  margin: clamp(28px, 5vw, 56px) auto;
  padding: clamp(18px, 3vw, 28px);
  max-width: min(1180px, calc(100vw - 32px));
  overflow: hidden;
  color: #08213a;
  background:
    radial-gradient(circle at 94% 10%, rgba(132, 198, 179, 0.28), transparent 30%),
    linear-gradient(135deg, #fbfdff 0%, #edf6f9 100%);
  border: 1px solid rgba(17, 76, 106, 0.16);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(15, 47, 70, 0.13);
  scroll-margin-top: 180px;
}

.savings-experience::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(34vw, 360px);
  background: linear-gradient(180deg, #0d314d 0%, #123d58 100%);
  opacity: 0.98;
  pointer-events: none;
}

.savings-orbit {
  position: absolute;
  top: -190px;
  right: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  pointer-events: none;
}

.savings-panel {
  position: relative;
  display: grid;
  gap: 22px;
  z-index: 1;
}

.savings-head {
  max-width: 680px;
  padding: clamp(12px, 2vw, 20px) 0 0;
  color: #ffffff;
}

.savings-head .kicker {
  margin-bottom: 10px;
  color: #a9d8ff;
  letter-spacing: 0.14em;
}

.savings-head h2 {
  max-width: 640px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.05rem, 4.4vw, 3.45rem);
  line-height: 0.98;
  text-wrap: balance;
}

.savings-head p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.savings-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  grid-template-areas:
    "controls score"
    "copy score";
  gap: 18px;
  align-items: stretch;
}

.savings-controls {
  grid-area: controls;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(156, 190, 218, 0.55);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15, 47, 70, 0.10);
  backdrop-filter: blur(12px);
}

.savings-field,
.savings-field--wide {
  display: flex;
  min-height: 126px;
  padding: 14px;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(180deg, #f8fbff 0%, #f1f7fb 100%);
  border: 1px solid rgba(156, 190, 218, 0.70);
  border-radius: 16px;
}

.savings-field > span:first-child {
  min-height: 34px;
  color: #0b3154;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  text-wrap: balance;
}

.savings-input-wrap {
  display: grid;
  min-height: 54px;
  align-items: center;
  gap: 8px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(171, 196, 216, 0.92);
  border-radius: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.savings-input-wrap span {
  min-width: max-content;
  color: #456785;
  font-size: 0.78rem;
  font-weight: 800;
}

.savings-input-wrap--prefix span {
  grid-column: 1;
  padding-left: 12px;
}

.savings-input-wrap--prefix input {
  grid-column: 2 / 4;
}

.savings-input-wrap--suffix input {
  grid-column: 1 / 3;
}

.savings-input-wrap--suffix span {
  grid-column: 3;
  padding-right: 12px;
}

.savings-input-wrap input {
  width: 100%;
  min-width: 0;
  padding: 0 10px;
  color: #071d34;
  background: transparent;
  border: 0;
  outline: none;
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.savings-scorecard {
  grid-area: score;
  display: flex;
  min-height: 100%;
  padding: 20px;
  flex-direction: column;
  gap: 16px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 6%, rgba(122, 205, 178, 0.30), transparent 28%),
    linear-gradient(180deg, #0b2d49 0%, #09243b 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(7, 29, 52, 0.22);
}

.savings-scorecard .savings-badge {
  align-self: flex-start;
  padding: 9px 12px;
  color: #c4e9ff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.savings-score-hero {
  display: grid;
  gap: 12px;
}

.savings-score-hero > div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(175, 220, 205, 0.55);
  border-radius: 18px;
}

.result-eyebrow {
  display: block;
  margin-bottom: 6px;
  color: #1b5b87;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-main {
  display: block;
  color: #071d34;
  font-size: clamp(2.2rem, 4vw, 3.15rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.result-main--money {
  color: #087334;
  font-size: clamp(1.9rem, 3.2vw, 2.55rem);
}

.savings-scorecard p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.58;
  text-wrap: pretty;
}

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

.savings-stats div,
.savings-stats div:last-child {
  grid-column: auto;
  padding: 12px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
}

.savings-stats span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.25;
}

.savings-stats strong {
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.25;
  font-variant-numeric: tabular-nums;
}

.savings-scorecard .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  min-height: 48px;
}

.savings-copy-card {
  grid-area: copy;
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(300px, 1.2fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
  color: #0b2742;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(156, 190, 218, 0.50);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(15, 47, 70, 0.08);
}

.savings-copy-card h3 {
  margin: 0;
  color: #09243b;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.15;
  text-wrap: balance;
}

.savings-copy-card p {
  margin: 0;
  color: #34526b;
  font-size: 0.98rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.savings-checklist {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.savings-checklist li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: #0d314d;
  background: #eef7f5;
  border: 1px solid rgba(84, 177, 145, 0.28);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
}

.savings-checklist li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: #168a44;
  border-radius: 50%;
}

.savings-not-included {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  color: #0c2a45;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(156, 190, 218, 0.54);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 47, 70, 0.07);
}

.savings-not-included span {
  color: #143a5c;
  font-size: 0.86rem;
  font-weight: 900;
}

.savings-not-included ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.savings-not-included li {
  padding: 8px 11px;
  color: #19456b;
  background: #ffffff;
  border: 1px solid rgba(156, 190, 218, 0.76);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 1040px) {
  .savings-experience::before {
    width: 100%;
    height: 360px;
  }

  .savings-workbench {
    grid-template-columns: 1fr;
    grid-template-areas:
      "controls"
      "score"
      "copy";
  }

  .savings-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .savings-experience {
    max-width: calc(100vw - 18px);
    padding: 14px;
    border-radius: 24px;
  }

  .savings-experience::before {
    height: 420px;
  }

  .savings-head h2 {
    font-size: clamp(1.9rem, 10vw, 2.55rem);
  }

  .savings-controls,
  .savings-copy-card,
  .savings-stats {
    grid-template-columns: 1fr;
  }

  .savings-scorecard,
  .savings-controls,
  .savings-copy-card,
  .savings-not-included {
    border-radius: 18px;
  }

  .result-main,
  .result-main--money {
    font-size: clamp(2rem, 11vw, 2.75rem);
  }
}

/* Savings simulator: breakpoint and hierarchy correction 2026-06-05 */
.savings-experience::before {
  display: none;
}

.savings-orbit {
  border-color: rgba(17, 76, 106, 0.10);
}

.savings-head,
.savings-head h2 {
  color: #071d34;
}

.savings-head .kicker {
  color: #1a67a4;
}

.savings-head p {
  max-width: 760px;
  color: #27455f;
}

.savings-workbench {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  grid-template-areas:
    "controls score"
    "copy score";
  align-items: stretch;
}

.savings-controls {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.savings-field,
.savings-field--wide {
  min-height: 118px;
}

.savings-scorecard {
  min-height: auto;
}

.savings-scorecard p {
  font-size: 0.94rem;
}

.savings-stats {
  grid-template-columns: 1fr;
}

.savings-copy-card {
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1.25fr);
}

.savings-checklist {
  gap: 7px;
}

.savings-not-included {
  display: block;
  padding: 14px 16px;
  line-height: 1.55;
}

.savings-not-included span {
  display: inline;
  margin-right: 6px;
}

.savings-not-included ul {
  display: inline;
}

.savings-not-included li {
  display: inline;
  padding: 0;
  color: #31536f;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: inherit;
}

.savings-not-included li:not(:last-child)::after {
  content: ", ";
}

@media (max-width: 820px) {
  .savings-workbench {
    grid-template-columns: 1fr;
    grid-template-areas:
      "controls"
      "score"
      "copy";
  }
}

@media (max-width: 620px) {
  .savings-controls,
  .savings-copy-card {
    grid-template-columns: 1fr;
  }
}

/* Savings simulator: remove inherited stretching 2026-06-05 */
.savings-workbench {
  align-items: start;
}

.savings-controls {
  grid-auto-rows: minmax(112px, auto);
}

.savings-field,
.savings-field--wide {
  min-height: 112px;
}

.savings-scorecard,
.savings-copy-card {
  align-self: start;
}

.savings-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.savings-stats div:last-child {
  grid-column: 1 / -1;
}

.savings-copy-card {
  padding: 16px;
}

/* Savings simulator: compact final layout 2026-06-05 */
.savings-workbench {
  grid-template-areas:
    "controls score"
    "copy copy";
}

.savings-scorecard {
  gap: 12px;
  padding: 18px;
}

.savings-score-hero {
  gap: 10px;
}

.savings-score-hero > div {
  padding: 13px 14px;
  border-radius: 16px;
}

.result-main {
  font-size: clamp(2rem, 3.4vw, 2.65rem);
}

.result-main--money {
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
}

.savings-stats,
.savings-stats div:last-child {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: auto;
}

.savings-stats div,
.savings-stats div:last-child {
  padding: 9px;
}

.savings-stats span {
  font-size: 0.62rem;
}

.savings-stats strong {
  font-size: 0.8rem;
}

.savings-copy-card {
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  min-height: auto;
}

@media (max-width: 820px) {
  .savings-workbench {
    grid-template-areas:
      "controls"
      "score"
      "copy";
  }
}

/* Savings simulator: real left stack 2026-06-05 */
.savings-workbench {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  grid-template-areas: none;
  gap: 18px;
}

.savings-left-stack {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.savings-controls,
.savings-scorecard,
.savings-copy-card {
  grid-area: auto;
}

.savings-copy-card {
  width: 100%;
}

@media (max-width: 820px) {
  .savings-workbench {
    grid-template-columns: 1fr;
  }
}

/* Savings simulator: compact editorial note 2026-06-05 */
.savings-copy-card {
  display: block;
}

.savings-copy-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.savings-copy-card p {
  font-size: 0.92rem;
  line-height: 1.45;
}

.savings-checklist {
  margin-top: 12px;
  gap: 6px;
}

.savings-checklist li {
  padding: 7px 9px;
  font-size: 0.78rem;
}

/* Savings simulator: mobile overflow guard 2026-06-05 */
@media (max-width: 620px) {
  .savings-head h2 {
    font-size: clamp(1.85rem, 8.4vw, 2.35rem);
  }

  .savings-stats,
  .savings-stats div:last-child {
    grid-template-columns: 1fr;
    grid-column: auto;
  }
}

/* UI polish round: simulator, mockups and compact footer 2026-06-06 */
.savings-experience {
  padding: clamp(22px, 4vw, 42px);
  background:
    radial-gradient(circle at 92% 0%, rgba(96, 178, 157, 0.24), transparent 32%),
    linear-gradient(135deg, #fbfdff 0%, #eef7fa 100%);
}

.savings-panel {
  gap: clamp(18px, 2.6vw, 28px);
}

.savings-head--split {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(18px, 3vw, 42px);
  max-width: none;
  padding: 0;
}

.savings-head--split h2 {
  max-width: 620px;
  color: #061c34;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.02;
}

.savings-intro-copy {
  align-self: end;
  display: grid;
  gap: 12px;
  color: #29465e;
}

.savings-intro-copy p {
  margin: 0;
  max-width: none;
  color: #29465e;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
}

.savings-open-trigger {
  justify-self: start;
  min-height: 54px;
  padding-inline: clamp(20px, 3vw, 30px);
  font-size: clamp(0.96rem, 1.5vw, 1.08rem);
  box-shadow: 0 18px 34px rgba(31, 122, 58, 0.24);
}

.savings-open-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.savings-experience.is-open .savings-open-trigger::after {
  transform: rotate(225deg) translateY(-2px);
}

.savings-workbench {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: start;
  margin-top: 0;
}

.savings-workbench[hidden] {
  display: none !important;
}

.savings-controls {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(116px, auto);
  gap: 14px;
  padding: clamp(16px, 2vw, 22px);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
}

.savings-field,
.savings-field--wide {
  min-height: 116px;
  padding: 15px;
}

.savings-scorecard {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2.2vw, 24px);
  background:
    radial-gradient(circle at 96% 0%, rgba(96, 178, 157, 0.28), transparent 28%),
    linear-gradient(180deg, #092c47 0%, #061f35 100%);
  border-radius: 26px;
}

.savings-score-hero {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.savings-score-hero > div {
  min-height: 126px;
  padding: 17px;
}

.savings-result-explainer {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
}

.savings-result-explainer h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
}

.savings-result-explainer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
}

.savings-result-explainer .savings-checklist {
  margin-top: 2px;
}

.savings-result-explainer .savings-checklist li {
  color: #dff7ec;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.savings-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.savings-stats div,
.savings-stats div:last-child {
  grid-column: auto;
}

.savings-not-included {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 14px;
  color: #d8ecff;
  background: rgba(7, 21, 34, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: none;
  line-height: 1.45;
}

.savings-not-included span {
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.savings-not-included p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(16px, 3vw, 34px);
  align-items: end;
  margin-bottom: 18px;
}

.section-heading-row > p {
  margin: 0;
  color: var(--color-ink-soft);
}

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

.module-mockup-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(37, 99, 168, 0.13);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(16, 36, 68, 0.08);
}

.module-mockup-card h3,
.module-mockup-card p {
  margin: 0;
}

.module-mockup-card p {
  color: var(--color-ink-soft);
}

.subpage-hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.76fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: center;
}

.subpage-hero-copy {
  min-width: 0;
}

.subpage-mockup {
  margin: 0;
}

.system-mockup {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 14px;
  color: #061c34;
  background: linear-gradient(145deg, #092c47 0%, #174f63 100%);
  border: 1px solid rgba(37, 99, 168, 0.18);
  border-radius: 22px;
  box-shadow: 0 24px 48px rgba(7, 29, 52, 0.18);
}

.system-mockup::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  top: -72px;
  right: -54px;
  background: radial-gradient(circle, rgba(155, 214, 194, 0.34), transparent 68%);
  border-radius: 50%;
}

.mockup-top {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.mockup-top span {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

.mockup-screen {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  min-height: 198px;
  padding: 16px;
  background: linear-gradient(180deg, #fbfdff 0%, #eff7fb 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
}

.mockup-screen strong {
  color: #09243b;
  font-size: 0.95rem;
}

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 168, 0.11);
  border-radius: 12px;
  font-size: 0.82rem;
}

.mock-row span {
  color: #456785;
  font-weight: 800;
}

.mock-row b {
  color: #08213a;
}

.mock-row.active {
  border-color: rgba(31, 122, 58, 0.28);
  background: #eef8f1;
}

.mock-row.warn {
  border-color: rgba(245, 166, 35, 0.34);
  background: #fff8ea;
}

.mock-row.muted {
  opacity: 0.68;
}

.mock-pill {
  width: fit-content;
  padding: 7px 10px;
  color: #16456b;
  background: #eef7ff;
  border: 1px solid rgba(37, 99, 168, 0.14);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.mock-pill.dark {
  color: #0c3b2a;
  background: #eaf8ef;
  border-color: rgba(31, 122, 58, 0.2);
}

.mock-line {
  height: 10px;
  background: linear-gradient(90deg, rgba(37, 99, 168, 0.18), rgba(37, 99, 168, 0.04));
  border-radius: 999px;
}

.mock-line.short {
  width: 68%;
}

.mock-card-small {
  padding: 11px;
  color: #14324f;
  background: #ffffff;
  border: 1px dashed rgba(37, 99, 168, 0.22);
  border-radius: 13px;
  font-size: 0.84rem;
  font-weight: 850;
}

.mock-wave {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 58px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 168, 0.12);
  border-radius: 14px;
}

.mock-wave i {
  display: block;
  width: 10px;
  height: 26px;
  background: #1f7a3a;
  border-radius: 999px;
}

.mock-wave i:nth-child(2) { height: 42px; background: #2563a8; }
.mock-wave i:nth-child(3) { height: 32px; }
.mock-wave i:nth-child(4) { height: 48px; background: #2563a8; }
.mock-wave i:nth-child(5) { height: 22px; }

.site-footer,
footer.site-footer {
  display: block;
  margin: clamp(34px, 5vw, 58px) 0 0;
  padding: 18px 0;
  color: #38536f;
  background: linear-gradient(180deg, rgba(246, 250, 253, 0.92), rgba(238, 247, 244, 0.96));
  border-top: 1px solid rgba(37, 99, 168, 0.14);
}

.site-footer .footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(150px, auto);
  gap: 22px;
  align-items: center;
  width: min(1160px, 94vw);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.footer-logo img {
  display: block;
  width: 132px;
  height: auto;
}

.footer-brand p,
.site-footer p {
  margin: 0;
}

.footer-brand p {
  max-width: 420px;
  color: #48627e;
  font-size: 0.9rem;
  line-height: 1.42;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
}

.footer-nav a,
.footer-contact a {
  color: #19456b;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-nav a:focus-visible,
.footer-contact a:focus-visible {
  color: var(--color-petroleum);
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.footer-contact {
  display: grid;
  gap: 4px;
  justify-items: end;
  color: #64748b;
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .savings-head--split,
  .savings-workbench,
  .subpage-hero-visual,
  .section-heading-row,
  .module-mockup-grid,
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
  }

  .savings-open-trigger {
    justify-self: stretch;
  }

  .footer-brand,
  .footer-nav,
  .footer-contact {
    justify-content: center;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .savings-score-hero,
  .savings-controls,
  .savings-stats {
    grid-template-columns: 1fr;
  }

  .savings-head--split h2 {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
  }

  .module-mockup-card,
  .savings-controls,
  .savings-scorecard {
    border-radius: 18px;
  }

  .footer-brand {
    display: grid;
  }
}

/* Real screenshots and contextual module visuals 2026-06-06 */
.real-module-showcase .section-heading-row p {
  max-width: 68ch;
}

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

.real-module-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 99, 168, 0.14);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(16, 36, 68, 0.08);
}

.real-module-card h3,
.real-module-card p {
  margin: 0;
}

.real-module-card p {
  color: var(--color-ink-soft);
}

.real-screen-figure,
.subpage-real-screen {
  margin: 0;
  overflow: hidden;
  background: #f8fbff;
  border: 1px solid rgba(37, 99, 168, 0.14);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(16, 36, 68, 0.12);
}

.real-screen-figure img,
.subpage-real-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.real-screen-figure--mini {
  aspect-ratio: 16 / 10;
}

.real-screen-figure--mini img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.real-module-card--text {
  align-content: start;
  background:
    radial-gradient(circle at 100% 0%, rgba(96, 178, 157, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f3f8fb 100%);
}

.real-module-icon {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  color: #0d314d;
  background: #eaf5f1;
  border: 1px solid rgba(31, 122, 58, 0.2);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.subpage-real-screen {
  align-self: center;
  border-radius: 24px;
}

.subpage-real-screen img {
  max-height: 460px;
  object-fit: cover;
  object-position: center top;
}

.feature-proof-card {
  display: grid;
  gap: 12px;
  align-self: center;
  padding: clamp(20px, 2.8vw, 30px);
  background:
    radial-gradient(circle at 100% 0%, rgba(96, 178, 157, 0.22), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f3f8fb 100%);
  border: 1px solid rgba(37, 99, 168, 0.14);
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(16, 36, 68, 0.1);
}

.feature-proof-kicker {
  color: var(--color-petroleum);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-proof-card h2,
.feature-proof-card p,
.feature-proof-card ul {
  margin: 0;
}

.feature-proof-card p {
  color: var(--color-ink-soft);
}

.feature-proof-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.feature-proof-card li {
  padding: 10px 12px;
  color: #0d314d;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 168, 0.12);
  border-radius: 12px;
  font-weight: 800;
}

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

@media (max-width: 620px) {
  .real-module-grid {
    grid-template-columns: 1fr;
  }

  .subpage-real-screen img {
    max-height: 320px;
  }
}

/* Simulator sequence and contextual screenshots only 2026-06-06 */
.savings-workbench {
  grid-template-columns: 1fr;
  max-width: 960px;
  margin-inline: auto;
}

.savings-controls {
  order: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.savings-scorecard {
  order: 2;
}

.savings-scorecard {
  grid-template-columns: 1fr;
}

.savings-score-hero {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.savings-result-explainer,
.savings-not-included {
  max-width: none;
}

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

@media (max-width: 620px) {
  .savings-workbench {
    max-width: none;
  }

  .savings-controls,
  .savings-score-hero {
    grid-template-columns: 1fr;
  }
}
/* Checkout / assinatura */
.checkout-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: stretch;
  background:
    radial-gradient(circle at 92% 8%, rgba(106, 191, 105, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(37, 99, 168, 0.16), rgba(255, 255, 255, 0.96));
}

.checkout-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.checkout-trust-row span,
.checkout-note {
  border: 1px solid rgba(37, 99, 168, 0.18);
  background: rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  color: var(--color-ink-soft);
  font-size: 0.9rem;
  padding: 8px 12px;
}

.checkout-hero-panel {
  border: 1px solid rgba(37, 99, 168, 0.18);
  border-radius: 20px;
  padding: clamp(18px, 2vw, 24px);
  background: linear-gradient(180deg, #ffffff, #f1f7fd);
  box-shadow: 0 18px 40px rgba(16, 36, 68, 0.1);
  display: grid;
  gap: 10px;
  align-content: center;
}

.checkout-hero-panel strong {
  color: var(--color-ink);
  font-size: 1.16rem;
}

.checkout-hero-panel small {
  color: var(--color-muted);
}

.checkout-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.checkout-form,
.checkout-summary {
  min-width: 0;
}

.checkout-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.checkout-payment-grid {
  margin-top: 18px;
}

.checkout-payment-grid .checkout-note {
  grid-column: 1 / -1;
}

.checkout-plan-card {
  cursor: pointer;
  display: grid;
  gap: 9px;
  min-height: 220px;
  padding: 20px;
  border: 1px solid rgba(37, 99, 168, 0.2);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 12px 26px rgba(16, 36, 68, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.checkout-plan-card:hover,
.checkout-plan-card:focus-within {
  border-color: rgba(37, 99, 168, 0.46);
  box-shadow: 0 18px 36px rgba(16, 36, 68, 0.12);
  transform: translateY(-1px);
}

.checkout-plan-card input {
  accent-color: var(--color-petroleum);
  width: 20px;
  height: 20px;
}

.checkout-plan-card:has(input:checked) {
  border-color: rgba(31, 122, 58, 0.56);
  box-shadow: 0 20px 42px rgba(31, 122, 58, 0.13);
}

.checkout-plan-card--featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 247, 239, 0.92)),
    linear-gradient(135deg, rgba(37, 99, 168, 0.1), rgba(106, 191, 105, 0.12));
}

.checkout-plan-eyebrow,
.feature-proof-kicker {
  color: var(--color-petroleum);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-plan-price {
  color: var(--color-ink);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.checkout-plan-card small {
  color: var(--color-muted);
  font-size: 0.96rem;
}

.checkout-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.checkout-fields-grid label,
.checkout-consent {
  display: grid;
  gap: 7px;
  color: var(--color-ink-soft);
  font-weight: 700;
}

.checkout-fields-grid input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(37, 99, 168, 0.2);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--color-ink);
  font: inherit;
  background: #ffffff;
}

.checkout-fields-grid input:disabled {
  background: #eef4fa;
  color: var(--color-muted);
  cursor: not-allowed;
  opacity: 1;
}

.checkout-consent {
  margin: 18px 0;
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 500;
}

.checkout-consent input {
  margin-top: 4px;
  accent-color: var(--color-petroleum);
}

.checkout-submit {
  width: min(100%, 320px);
}

.checkout-summary {
  position: sticky;
  top: 108px;
  border: 1px solid rgba(37, 99, 168, 0.2);
  border-radius: 22px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f1f7fd);
  box-shadow: 0 20px 42px rgba(16, 36, 68, 0.1);
}

.checkout-summary dl {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.checkout-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(37, 99, 168, 0.13);
  padding-bottom: 10px;
}

.checkout-summary dt {
  color: var(--color-muted);
}

.checkout-summary dd {
  margin: 0;
  color: var(--color-ink);
  font-weight: 800;
  text-align: right;
}

.checkout-summary-total dd {
  color: #1f7a3a;
  font-size: 1.35rem;
}

.checkout-note {
  border-radius: 14px;
  display: block;
}

.checkout-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
  gap: 18px;
}

@media (max-width: 980px) {
  .checkout-hero,
  .checkout-workspace,
  .checkout-support-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }
}

@media (max-width: 680px) {
  .checkout-plan-grid,
  .checkout-fields-grid {
    grid-template-columns: 1fr;
  }

  .checkout-trust-row span {
    width: 100%;
    border-radius: 14px;
  }

  .checkout-submit {
    width: 100%;
  }
}
