:root {
  --bg: #020916;
  --bg-soft: #071324;
  --bg-card: #0a172a;
  --surface: #e9f3fa;
  --surface-soft: #dcebf5;
  --text: #071425;
  --text-soft: #526276;
  --text-inverse: #f7fbff;
  --text-inverse-soft: #a9b9cd;
  --blue: #119cff;
  --blue-bright: #39b5ff;
  --blue-dark: #0870ca;
  --cyan: #38d8ff;
  --green: #31d796;
  --border: #c8dce9;
  --border-dark: rgba(155, 191, 224, 0.16);
  --shadow-sm: 0 12px 35px rgba(18, 53, 89, 0.09);
  --shadow-lg: 0 30px 90px rgba(0, 35, 75, 0.18);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.1;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5.2vw, 4.85rem);
  font-weight: 820;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  font-weight: 800;
}

h3 {
  font-size: 1.25rem;
}

::selection {
  color: #fff;
  background: var(--blue-dark);
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--blue-dark);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--text-inverse);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(2, 9, 22, 0.9);
  border-bottom-color: var(--border-dark);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text-inverse);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(57, 181, 255, 0.3);
  border-radius: 11px;
  box-shadow: 0 0 28px rgba(17, 156, 255, 0.19);
}

.brand > span > span {
  color: var(--blue-bright);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav > a:not(.button) {
  color: #c4d1e1;
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 160ms ease;
}

.main-nav > a:not(.button):hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 99px;
  background: #fff;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.96rem;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  color: #fff;
  background: var(--blue-dark);
  border-color: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  box-shadow: 0 9px 26px rgba(0, 108, 202, 0.28);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 16px 38px rgba(5, 126, 223, 0.28);
}

.button-primary:hover {
  box-shadow: 0 20px 44px rgba(5, 126, 223, 0.36);
}

.button-ghost {
  color: var(--text-inverse);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(170, 205, 236, 0.2);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(170, 205, 236, 0.38);
}

.hero {
  position: relative;
  min-height: 810px;
  padding: calc(var(--header-height) + 100px) 0 104px;
  overflow: hidden;
  color: var(--text-inverse);
  background:
    radial-gradient(circle at 77% 8%, rgba(0, 111, 217, 0.17), transparent 34%),
    radial-gradient(circle at 7% 58%, rgba(0, 81, 183, 0.2), transparent 40%),
    linear-gradient(135deg, #041329 0%, #020916 48%, #010611 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(151, 200, 240, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 200, 240, 0.08) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  top: 140px;
  right: -260px;
  width: 580px;
  height: 580px;
  background: rgba(6, 123, 230, 0.14);
  box-shadow: 0 0 180px rgba(6, 123, 230, 0.22);
}

.hero-glow-two {
  bottom: -260px;
  left: -180px;
  width: 460px;
  height: 460px;
  background: rgba(5, 102, 214, 0.12);
  box-shadow: 0 0 160px rgba(5, 102, 214, 0.18);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(460px, 0.96fr);
  gap: clamp(52px, 7vw, 94px);
}

.hero-copy {
  max-width: 690px;
}

.hero-copy h1 {
  max-width: 680px;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: #b8c7da;
  font-size: clamp(1.05rem, 1.5vw, 1.26rem);
}

.hero-lead strong {
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-dark .eyebrow,
.final-cta .eyebrow {
  color: #70c8ff;
}

.eyebrow > span {
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 26px;
  padding: 0;
  margin: 0;
  color: #a8bbd0;
  font-size: 0.86rem;
  font-weight: 600;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof li span {
  display: inline-flex;
  width: 19px;
  height: 19px;
  align-items: center;
  justify-content: center;
  color: #061524;
  background: var(--green);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
}

.panel-visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  animation: appear 700ms 120ms both ease-out;
}

@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(129, 188, 237, 0.2);
  border-radius: 26px;
  background: rgba(8, 24, 44, 0.83);
  box-shadow:
    0 44px 100px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
}

.panel-window::after {
  position: absolute;
  z-index: -1;
  top: -120px;
  right: -80px;
  width: 280px;
  height: 280px;
  content: "";
  background: rgba(16, 149, 255, 0.08);
  border-radius: 50%;
  filter: blur(16px);
}

.panel-top,
.panel-brand,
.panel-content-head,
.client-row {
  display: flex;
  align-items: center;
}

.panel-top {
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-dark);
}

.panel-brand {
  gap: 11px;
}

.panel-brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.panel-brand div {
  display: flex;
  flex-direction: column;
}

.panel-brand strong,
.panel-content-head strong {
  font-size: 0.85rem;
}

.panel-brand span,
.panel-content-head span,
.client-name small {
  color: #7e93aa;
  font-size: 0.67rem;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  color: #73e9b7;
  background: rgba(49, 215, 150, 0.08);
  border: 1px solid rgba(49, 215, 150, 0.15);
  border-radius: 99px;
  font-size: 0.65rem;
  font-weight: 740;
}

.status-dot::before {
  width: 6px;
  height: 6px;
  content: "";
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green);
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.panel-stat {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border: 1px solid rgba(150, 189, 223, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.panel-stat-blue {
  background: linear-gradient(145deg, rgba(16, 148, 248, 0.17), rgba(16, 148, 248, 0.05));
  border-color: rgba(46, 170, 255, 0.24);
}

.panel-stat span {
  color: #8196ad;
  font-size: 0.65rem;
}

.panel-stat strong {
  margin: 2px 0 -2px;
  font-size: 1.65rem;
  letter-spacing: -0.05em;
}

.panel-stat small {
  color: #647b92;
  font-size: 0.61rem;
}

.panel-content {
  padding: 17px;
  border: 1px solid rgba(150, 189, 223, 0.12);
  border-radius: 16px;
  background: rgba(3, 11, 22, 0.36);
}

.panel-content-head {
  justify-content: space-between;
  margin-bottom: 12px;
}

.panel-content-head div {
  display: flex;
  flex-direction: column;
}

.panel-content-head .fake-action {
  padding: 7px 9px;
  color: #e8f7ff;
  background: rgba(17, 156, 255, 0.16);
  border: 1px solid rgba(17, 156, 255, 0.22);
  border-radius: 7px;
  font-size: 0.61rem;
  font-weight: 700;
}

.client-row {
  gap: 10px;
  min-height: 53px;
  border-top: 1px solid rgba(150, 189, 223, 0.08);
}

.client-avatar {
  display: inline-flex;
  width: 29px;
  height: 29px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #bde7ff;
  background: rgba(17, 156, 255, 0.15);
  border-radius: 8px;
  font-size: 0.57rem;
  font-weight: 800;
}

.avatar-purple {
  color: #d9c8ff;
  background: rgba(151, 103, 255, 0.16);
}

.avatar-cyan {
  color: #c2f7ff;
  background: rgba(56, 216, 255, 0.14);
}

.client-name {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.client-name strong {
  overflow: hidden;
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.client-status {
  padding: 4px 7px;
  color: #78eab9;
  background: rgba(49, 215, 150, 0.08);
  border-radius: 99px;
  font-size: 0.55rem;
  font-weight: 750;
}

.status-test {
  color: #bdeaff;
  background: rgba(17, 156, 255, 0.12);
}

.floating-cards {
  display: grid;
  width: min(100%, 430px);
  margin: 14px auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.floating-card {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  color: #eff9ff;
  border: 1px solid rgba(119, 190, 242, 0.2);
  border-radius: 13px;
  background: rgba(8, 25, 45, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.floating-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), var(--blue-dark));
  border-radius: 9px;
  font-size: 0.8rem;
  font-weight: 850;
}

.floating-card div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.floating-card strong {
  font-size: 0.72rem;
}

.floating-card small {
  color: #839bb4;
  font-size: 0.6rem;
}

.visual-note {
  margin: 9px 0 0;
  color: #58718b;
  font-size: 0.65rem;
  text-align: center;
}

.trust-strip {
  position: relative;
  z-index: 4;
  color: var(--text-inverse);
  background: #061326;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: flex;
  min-height: 104px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 30px;
  border-right: 1px solid var(--border-dark);
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--border-dark);
}

.trust-grid strong {
  color: #fff;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.trust-grid span {
  color: #768da6;
  font-size: 0.76rem;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading > p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.section-heading-left {
  max-width: 720px;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading-left > p {
  margin-left: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 290px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 6px 30px rgba(20, 54, 88, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  border-color: #b8d8ef;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.feature-card-highlight {
  color: #fff;
  background: linear-gradient(145deg, #0a82dd, #075da9);
  border-color: transparent;
  box-shadow: 0 22px 50px rgba(6, 103, 182, 0.24);
}

.feature-card-highlight::before {
  position: absolute;
  right: -80px;
  bottom: -105px;
  width: 260px;
  height: 260px;
  content: "";
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.feature-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--blue-dark);
  background: #eaf6ff;
  border-radius: 11px;
  font-size: 0.72rem;
  font-weight: 850;
}

.feature-card-highlight .feature-number {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.feature-card h3 {
  margin-bottom: 13px;
}

.feature-card p {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.feature-card-highlight p {
  color: #cceaff;
}

.feature-tag {
  position: absolute;
  bottom: 26px;
  left: 30px;
  color: var(--blue-dark);
  font-size: 0.68rem;
  font-weight: 790;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.feature-card-highlight .feature-tag {
  color: #c7ecff;
}

.section-dark {
  overflow: hidden;
  color: var(--text-inverse);
  background:
    radial-gradient(circle at 95% 20%, rgba(16, 142, 239, 0.11), transparent 28%),
    #030b18;
}

.section-dark::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  pointer-events: none;
  background-image: linear-gradient(rgba(158, 198, 232, 0.08) 1px, transparent 1px);
  background-size: 100% 74px;
}

.section-dark .container {
  position: relative;
  z-index: 2;
}

.section-dark .section-heading p {
  color: var(--text-inverse-soft);
}

.steps-grid {
  display: grid;
  padding: 0;
  margin: 0 0 50px;
  counter-reset: steps;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
}

.step-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.step-index {
  display: block;
  margin-bottom: 50px;
  color: #45b8ff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card p {
  margin-bottom: 0;
  color: #91a6bc;
  font-size: 0.85rem;
}

.credit-explainer {
  display: grid;
  align-items: center;
  padding: 44px;
  border: 1px solid rgba(94, 171, 227, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(15, 128, 213, 0.12), rgba(255, 255, 255, 0.025));
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
}

.mini-label {
  display: block;
  margin-bottom: 13px;
  color: var(--blue-bright);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.credit-copy h3 {
  margin-bottom: 15px;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.credit-copy p {
  margin-bottom: 0;
  color: #97acc3;
  font-size: 0.9rem;
}

.credit-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.flow-item {
  display: flex;
  min-width: 136px;
  min-height: 142px;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border: 1px solid var(--border-dark);
  border-radius: 15px;
  background: rgba(2, 10, 22, 0.35);
}

.flow-item > span {
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #7ccaff;
  background: rgba(17, 156, 255, 0.12);
  border-radius: 7px;
  font-size: 0.62rem;
  font-weight: 800;
}

.flow-item strong {
  font-size: 0.78rem;
}

.flow-item small {
  color: #6f859c;
  font-size: 0.63rem;
}

.flow-item-active {
  background: linear-gradient(145deg, rgba(17, 156, 255, 0.18), rgba(17, 156, 255, 0.06));
  border-color: rgba(53, 174, 255, 0.3);
}

.flow-arrow {
  color: #42617c;
}

.calculator-shell {
  display: grid;
  align-items: center;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 80px;
}

.calculator-copy > p {
  max-width: 510px;
  color: var(--text-soft);
  font-size: 1.03rem;
}

.calculator-note {
  display: flex;
  max-width: 500px;
  flex-direction: column;
  padding: 15px 18px;
  margin-top: 28px;
  border-left: 3px solid var(--blue);
  background: #f2f8fd;
  border-radius: 0 10px 10px 0;
}

.calculator-note strong {
  font-size: 0.76rem;
}

.calculator-note span {
  color: var(--text-soft);
  font-size: 0.72rem;
}

.calculator-card {
  padding: 36px;
  border: 1px solid #d6e5f0;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.calculator-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.calculator-fields label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calculator-fields label > span:first-child {
  color: #5e6f82;
  font-size: 0.7rem;
  font-weight: 720;
}

.calculator-fields input {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 13px;
  color: var(--text);
  border: 1px solid #cfdce7;
  border-radius: 9px;
  background: #f9fbfd;
  font-weight: 720;
}

.calculator-fields input:focus {
  background: #fff;
  border-color: var(--blue);
  outline: 3px solid rgba(17, 156, 255, 0.12);
}

.input-money {
  position: relative;
  display: flex;
  align-items: center;
}

.input-money b {
  position: absolute;
  left: 13px;
  color: #7890a4;
  font-size: 0.72rem;
}

.input-money input {
  padding-left: 37px;
}

.calculator-results {
  display: grid;
  padding-top: 26px;
  margin-top: 26px;
  border-top: 1px solid var(--border);
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.calculator-results > div {
  display: flex;
  min-height: 94px;
  flex-direction: column;
  justify-content: center;
  padding: 17px;
  background: var(--surface-soft);
  border-radius: 12px;
}

.calculator-results span {
  color: #66788b;
  font-size: 0.7rem;
}

.calculator-results strong {
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.calculator-results .result-primary {
  color: #fff;
  background: linear-gradient(135deg, #0a83dd, #075ba6);
  grid-column: 1 / -1;
}

.calculator-results .result-primary span {
  color: #bfe7ff;
}

.calculator-results .result-primary strong {
  font-size: 1.65rem;
}

.calculator-results strong.is-negative {
  color: #ffd1d1;
}

.section-pricing {
  background:
    radial-gradient(circle at 50% 0, rgba(17, 156, 255, 0.08), transparent 30%),
    #f3f8fc;
}

.pricing-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 640px;
  flex-direction: column;
  padding: 36px 32px 30px;
  border: 1px solid #d9e5ee;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 45px rgba(20, 57, 90, 0.06);
}

.price-card-featured {
  color: #fff;
  background: linear-gradient(160deg, #061a31, #03101f 62%);
  border-color: rgba(32, 157, 246, 0.38);
  box-shadow: 0 28px 70px rgba(5, 46, 82, 0.24);
  transform: translateY(-10px);
}

.popular-label,
.best-value-label {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 9px;
  color: var(--blue-dark);
  background: #e5f5ff;
  border-radius: 99px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.popular-label {
  color: #fff;
  background: var(--blue-dark);
}

.price-card-top {
  min-height: 142px;
  padding-top: 14px;
}

.plan-name {
  display: block;
  margin-bottom: 11px;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-card-featured .plan-name {
  color: #66c5ff;
}

.price-card h3 {
  margin-bottom: 11px;
  font-size: 1.45rem;
}

.price-card-top p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.83rem;
}

.price-card-featured .price-card-top p {
  color: #91a9bf;
}

.price {
  display: inline-flex;
  align-items: flex-start;
  width: 100%;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  padding: 24px 0;
  margin: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.price-card-featured .price {
  border-color: var(--border-dark);
}

.price .price-currency {
  flex: 0 0 auto;
  padding-top: 9px;
  margin-right: 7px;
  color: #698094;
  font-size: 0.75rem;
  font-weight: 780;
}

.price .price-integer {
  flex: 0 0 auto;
  font-size: 3.25rem;
  letter-spacing: -0.055em;
  line-height: 1;
}

.price .price-cents {
  flex: 0 0 auto;
  padding-top: 8px;
  margin-left: 4px;
  font-size: 1rem;
  font-weight: 780;
  line-height: 1;
}

.unit-price {
  margin: -5px 0 22px;
  color: #718497;
  font-size: 0.72rem;
  text-align: center;
}

.unit-price strong {
  color: var(--blue-dark);
}

.price-card-featured .unit-price {
  color: #879db2;
}

.price-card-featured .unit-price strong {
  color: #62c4ff;
}

.plan-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.plan-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #53677a;
  font-size: 0.82rem;
}

.price-card-featured .plan-list li {
  color: #a7b8c9;
}

.plan-list li span {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #0874c8;
  background: #e8f6ff;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 900;
}

.price-card-featured .plan-list li span {
  color: #bde8ff;
  background: rgba(17, 156, 255, 0.14);
}

.button-plan {
  width: 100%;
  margin-top: auto;
  color: var(--blue-dark);
  background: #edf8ff;
  border-color: #cae8fb;
}

.button-plan:hover {
  color: #fff;
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.price-card-featured .button-plan {
  color: #fff;
}

.checkout-note {
  margin-top: 12px;
  color: #8a9bac;
  font-size: 0.62rem;
  text-align: center;
}

.pricing-disclaimer {
  max-width: 840px;
  margin: 30px auto 0;
  color: #6f8192;
  font-size: 0.72rem;
  text-align: center;
}

/* Cohesive brand surfaces */
#vantagens {
  color: var(--text-inverse);
  background:
    radial-gradient(circle at 12% 18%, rgba(17, 156, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #0a1a2b 0%, #0d2236 100%);
}

#vantagens .section-heading > p {
  color: #9db1c6;
}

#vantagens .eyebrow {
  color: #65c5ff;
}

#vantagens .feature-card {
  color: #eef8ff;
  background:
    linear-gradient(150deg, rgba(19, 52, 78, 0.96), rgba(10, 31, 51, 0.98));
  border-color: rgba(114, 181, 228, 0.16);
  box-shadow: 0 18px 45px rgba(0, 5, 14, 0.16);
}

#vantagens .feature-card:hover {
  border-color: rgba(80, 186, 255, 0.42);
  box-shadow: 0 25px 60px rgba(0, 8, 20, 0.28);
}

#vantagens .feature-card-highlight {
  background: linear-gradient(145deg, #0b8ce9, #075a9f);
  border-color: rgba(122, 211, 255, 0.38);
}

#vantagens .feature-card p {
  color: #9fb5ca;
}

#vantagens .feature-card-highlight p {
  color: #d7efff;
}

#vantagens .feature-number {
  color: #8ed5ff;
  background: rgba(17, 156, 255, 0.12);
}

#vantagens .feature-card-highlight .feature-number {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

#vantagens .feature-tag {
  color: #68c8ff;
}

#vantagens .feature-card-highlight .feature-tag {
  color: #e2f5ff;
}

#simulador {
  background:
    radial-gradient(circle at 87% 20%, rgba(27, 147, 222, 0.13), transparent 31%),
    linear-gradient(145deg, #d8eaf5, #edf7fb);
}

.calculator-card {
  color: #f3f9ff;
  background:
    radial-gradient(circle at 100% 0, rgba(17, 156, 255, 0.12), transparent 38%),
    linear-gradient(155deg, #0b2136, #061322);
  border-color: rgba(84, 164, 218, 0.3);
  box-shadow: 0 30px 80px rgba(10, 45, 75, 0.25);
}

.calculator-fields label > span:first-child {
  color: #a5b9cc;
}

.calculator-fields input {
  color: #f5faff;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(133, 185, 224, 0.23);
}

.calculator-fields input:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: #42b8ff;
}

.input-money b {
  color: #83a4bd;
}

.calculator-results {
  border-top-color: rgba(134, 183, 222, 0.18);
}

.calculator-results > div {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(133, 185, 224, 0.12);
}

.calculator-results span {
  color: #91a9bd;
}

.calculator-results .result-primary {
  background: linear-gradient(135deg, #0a8ce7, #0561ad);
  border-color: rgba(116, 211, 255, 0.35);
}

.calculator-helper {
  margin: 18px 2px 0;
  color: #8099ae;
  font-size: 0.68rem;
  text-align: center;
}

.section-pricing {
  overflow: hidden;
  color: var(--text-inverse);
  background:
    radial-gradient(circle at 84% 13%, rgba(108, 92, 255, 0.14), transparent 29%),
    radial-gradient(circle at 15% 4%, rgba(17, 156, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #07172a, #030b17);
}

.section-pricing::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(155, 200, 234, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 200, 234, 0.08) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.section-pricing .container {
  position: relative;
  z-index: 2;
}

.section-pricing .eyebrow {
  color: #67c9ff;
}

.section-pricing .section-heading > p {
  color: #99aec2;
}

.plan-clarifier {
  display: flex;
  max-width: 760px;
  align-items: center;
  gap: 16px;
  padding: 17px 20px;
  margin: -26px auto 46px;
  color: #cfe8f8;
  background: rgba(17, 156, 255, 0.075);
  border: 1px solid rgba(83, 187, 255, 0.22);
  border-radius: 15px;
}

.plan-clarifier-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(145deg, #139eff, #0874c8);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 850;
  box-shadow: 0 10px 25px rgba(17, 156, 255, 0.25);
}

.plan-clarifier strong {
  display: block;
  font-size: 0.78rem;
}

.plan-clarifier p {
  margin: 2px 0 0;
  color: #8fa9bf;
  font-size: 0.72rem;
}

.price-card {
  color: #eef8ff;
  background:
    radial-gradient(circle at 100% 0, rgba(17, 156, 255, 0.1), transparent 35%),
    linear-gradient(155deg, #102a42, #091b2c);
  border-color: rgba(106, 177, 226, 0.2);
  box-shadow: 0 24px 65px rgba(0, 5, 14, 0.24);
}

.price-card-featured {
  background:
    radial-gradient(circle at 100% 0, rgba(55, 191, 255, 0.18), transparent 38%),
    linear-gradient(155deg, #0a3a62, #07233c 70%);
  border-color: rgba(63, 190, 255, 0.4);
  box-shadow: 0 30px 80px rgba(3, 92, 153, 0.24);
}

.price-card-premium {
  z-index: 2;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(130, 105, 255, 0.28), transparent 34%),
    radial-gradient(circle at 8% 95%, rgba(25, 174, 255, 0.18), transparent 36%),
    linear-gradient(150deg, #19234d, #0b1930 56%, #071523);
  border-color: rgba(136, 122, 255, 0.58);
  box-shadow:
    0 0 0 1px rgba(75, 190, 255, 0.13),
    0 34px 90px rgba(27, 26, 102, 0.34);
  transform: translateY(-12px);
}

.price-card-premium::before {
  position: absolute;
  top: -115px;
  right: -105px;
  width: 270px;
  height: 270px;
  content: "";
  border: 1px solid rgba(164, 149, 255, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 44px rgba(125, 104, 255, 0.035),
    0 0 0 88px rgba(41, 181, 255, 0.025);
  pointer-events: none;
}

.price-card-top p,
.price-card-featured .price-card-top p,
.price-card-premium .price-card-top p {
  color: #9fb3c6;
}

.price-card .plan-name {
  color: #62c5ff;
}

.price-card-premium .plan-name {
  color: #b2a7ff;
}

.price-card .price {
  border-color: rgba(135, 184, 221, 0.16);
}

.price-card .price-currency {
  color: #87a1b7;
}

.price-card .unit-price {
  color: #8299ad;
}

.price-card .unit-price strong {
  color: #6dcbff;
}

.price-card-premium .unit-price strong {
  color: #b8afff;
}

.price-card .plan-list li,
.price-card-featured .plan-list li,
.price-card-premium .plan-list li {
  color: #adbece;
}

.price-card .plan-list li span {
  color: #9bdeff;
  background: rgba(17, 156, 255, 0.12);
}

.price-card-premium .plan-list li span {
  color: #d9d3ff;
  background: rgba(136, 116, 255, 0.16);
}

.price-card .button-plan {
  color: #f2faff;
  background: rgba(17, 156, 255, 0.13);
  border-color: rgba(78, 190, 255, 0.28);
}

.price-card .button-plan:hover {
  color: #fff;
  background: #0876ca;
  border-color: #159fff;
}

.price-card-featured .button-plan {
  color: #fff;
  background: linear-gradient(135deg, #139fff, #0874c7);
}

.price-card-premium .button-plan {
  color: #fff;
  background: linear-gradient(135deg, #1eafff, #7763ee);
  border-color: rgba(190, 181, 255, 0.4);
  box-shadow: 0 16px 35px rgba(93, 81, 219, 0.28);
}

.price-card-premium .best-value-label {
  color: #fff;
  background: linear-gradient(135deg, #169fff, #7563e9);
  box-shadow: 0 10px 24px rgba(85, 76, 208, 0.26);
}

.price-card .checkout-note {
  color: #718ba2;
}

.section-pricing .pricing-disclaimer {
  color: #8098ac;
}

.section-pricing .pricing-disclaimer strong {
  color: #c5e8fb;
}

.comparison-section {
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 0 50%, rgba(17, 156, 255, 0.11), transparent 34%),
    linear-gradient(145deg, #d7eaf5, #edf7fb);
}

.comparison-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.comparison-copy p {
  color: #536b7f;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #69c7ff;
  font-size: 0.86rem;
  font-weight: 760;
}

.text-link:hover {
  color: #fff;
}

.comparison-table-wrap {
  overflow: hidden;
  border: 1px solid rgba(64, 139, 192, 0.25);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(17, 156, 255, 0.1), transparent 35%),
    #0a1d30;
  box-shadow: 0 24px 65px rgba(17, 66, 102, 0.16);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 17px 24px;
  border-bottom: 1px solid var(--border-dark);
  font-size: 0.78rem;
  text-align: left;
}

.comparison-table thead th {
  color: #7690a8;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table thead th:last-child,
.comparison-table td {
  width: 150px;
  text-align: center;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table tbody th {
  color: #b9c8d8;
  font-weight: 570;
}

.yes {
  display: inline-flex;
  padding: 5px 10px;
  color: #68e6b0;
  background: rgba(49, 215, 150, 0.08);
  border-radius: 99px;
  font-size: 0.63rem;
  font-weight: 800;
}

.content-section {
  background:
    radial-gradient(circle at 92% 18%, rgba(17, 156, 255, 0.08), transparent 29%),
    #e7f2f8;
}

.content-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 90px;
}

.article-content {
  max-width: 760px;
}

.article-content h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.article-content h3 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.article-content p {
  color: #495c70;
  font-size: 1rem;
}

.article-content a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #9fd4f5;
  text-underline-offset: 3px;
}

.content-aside {
  position: sticky;
  top: 108px;
  padding: 32px;
  color: #fff;
  background: linear-gradient(150deg, #087dcc, #054b8b);
  border-radius: 22px;
  box-shadow: 0 25px 55px rgba(5, 93, 163, 0.2);
}

.content-aside .mini-label {
  color: #bde9ff;
}

.content-aside h3 {
  font-size: 1.55rem;
}

.content-aside ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 0;
  margin: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.content-aside li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #d7efff;
  font-size: 0.8rem;
}

.content-aside li span {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  font-size: 0.58rem;
  font-weight: 800;
}

.content-aside .button {
  width: 100%;
  color: #075ca2;
  background: #fff;
  box-shadow: none;
}

.faq-section {
  color: var(--text-inverse);
  background:
    radial-gradient(circle at 10% 12%, rgba(17, 156, 255, 0.1), transparent 30%),
    linear-gradient(160deg, #0a1d30, #061321);
}

.faq-intro > p {
  color: #9bb0c4;
}

.faq-intro .eyebrow {
  color: #65c6ff;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro > p {
  color: var(--text-soft);
}

.faq-intro .button-ghost {
  margin-top: 16px;
  color: #eaf8ff;
  background: rgba(17, 156, 255, 0.1);
  border-color: rgba(82, 189, 255, 0.25);
}

.faq-list {
  overflow: hidden;
  border: 1px solid rgba(110, 178, 225, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 25px 70px rgba(0, 5, 14, 0.22);
}

.faq-list details {
  border-bottom: 1px solid rgba(120, 178, 220, 0.14);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #90d7ff;
  background: rgba(17, 156, 255, 0.12);
  border-radius: 8px;
  font-size: 1rem;
}

.faq-list details[open] summary {
  color: #66c8ff;
}

.faq-list details > div {
  padding: 0 70px 23px 25px;
}

.faq-list details p {
  margin-bottom: 0;
  color: #95aabe;
  font-size: 0.86rem;
}

.final-cta {
  position: relative;
  padding: 84px 0;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #0984df, #04579e);
}

.final-cta::before {
  position: absolute;
  top: -240px;
  right: 5%;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta-inner > div {
  max-width: 720px;
}

.final-cta h2 {
  margin-bottom: 14px;
}

.final-cta p {
  margin-bottom: 0;
  color: #d5efff;
}

.final-cta .mini-label {
  color: #bfeaff;
}

.button-light {
  flex: 0 0 auto;
  color: #075a9e;
  background: #fff;
  box-shadow: 0 18px 40px rgba(1, 40, 75, 0.22);
}

.site-footer {
  padding: 72px 0 24px;
  color: #fff;
  background: #020812;
}

.footer-grid {
  display: grid;
  padding-bottom: 58px;
  grid-template-columns: 1.65fr repeat(3, 0.72fr);
  gap: 50px;
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 0;
  color: #71879f;
  font-size: 0.8rem;
}

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

.footer-column h2 {
  margin-bottom: 12px;
  color: #dfeeff;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  color: #73889e;
  font-size: 0.77rem;
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  color: #8fa8c2;
  border-top: 1px solid rgba(140, 180, 216, 0.1);
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  z-index: 940;
  right: 20px;
  bottom: 20px;
  display: flex;
  min-width: 170px;
  align-items: center;
  gap: 8px;
  padding: 7px 11px 7px 7px;
  color: #eafff5;
  background:
    linear-gradient(145deg, rgba(12, 39, 48, 0.97), rgba(5, 24, 34, 0.98));
  border: 1px solid rgba(48, 214, 133, 0.42);
  border-radius: 13px;
  box-shadow:
    0 18px 46px rgba(0, 10, 18, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset;
  backdrop-filter: blur(15px);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover {
  color: #fff;
  border-color: rgba(57, 225, 144, 0.72);
  box-shadow:
    0 22px 55px rgba(0, 12, 20, 0.42),
    0 0 28px rgba(41, 206, 126, 0.13);
  transform: translateY(-3px);
}

.whatsapp-badge {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: #25d366;
  border-radius: 9px;
  box-shadow: 0 9px 22px rgba(34, 189, 111, 0.25);
}

.whatsapp-badge img {
  display: block;
  width: 17px;
  height: 17px;
  filter: brightness(0) invert(1);
}

.whatsapp-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.whatsapp-copy strong {
  font-size: 0.68rem;
}

.whatsapp-copy small {
  color: #8eb8a6;
  font-size: 0.58rem;
}

.mobile-cta {
  display: none;
}

/* Internal content pages */
.inner-page {
  background:
    radial-gradient(circle at 90% 20%, rgba(17, 156, 255, 0.07), transparent 28%),
    #e7f2f8;
}

.inner-hero {
  position: relative;
  padding: calc(var(--header-height) + 82px) 0 88px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 30%, rgba(16, 151, 250, 0.18), transparent 32%),
    linear-gradient(145deg, #06182f, #020916);
}

.inner-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.22;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(146, 196, 235, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(146, 196, 235, 0.08) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.inner-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  color: #7891aa;
  font-size: 0.72rem;
}

.breadcrumbs a {
  color: #93cfff;
}

.inner-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
}

.inner-hero p {
  max-width: 750px;
  margin-bottom: 0;
  color: #a8bbcf;
  font-size: 1.08rem;
}

.article-layout {
  display: grid;
  align-items: start;
  padding-top: 90px;
  padding-bottom: 110px;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 82px;
}

.longform {
  width: 100%;
  min-width: 0;
  max-width: 790px;
  padding: clamp(26px, 4vw, 48px);
  background: rgba(246, 251, 255, 0.78);
  border: 1px solid rgba(118, 169, 205, 0.18);
  border-radius: 24px;
  box-shadow: 0 24px 65px rgba(25, 76, 112, 0.08);
}

.longform .article-intro {
  padding-bottom: 28px;
  margin-bottom: 40px;
  color: #32495e;
  border-bottom: 1px solid var(--border);
  font-size: 1.18rem;
  line-height: 1.75;
}

.longform h2 {
  margin-top: 58px;
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
}

.longform h3 {
  margin-top: 38px;
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.longform p,
.longform li {
  color: #455a6e;
}

.longform ul,
.longform ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 22px;
  margin: 20px 0 28px;
}

.longform strong {
  color: #193248;
}

.longform a:not(.button) {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #abdafa;
  text-underline-offset: 3px;
}

.article-callout {
  padding: 26px 28px;
  margin: 36px 0;
  color: #dcefff;
  background: linear-gradient(145deg, #0878c8, #055292);
  border-radius: 17px;
}

.article-callout strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
}

.article-callout p {
  margin: 0;
  color: #dcefff;
  font-size: 0.9rem;
}

.article-sidebar {
  position: sticky;
  top: 104px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.toc,
.sidebar-cta {
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: rgba(245, 251, 255, 0.88);
  box-shadow: 0 10px 35px rgba(20, 56, 90, 0.05);
}

.toc h2,
.sidebar-cta h2 {
  margin-bottom: 16px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.toc nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.toc a {
  color: #617589;
  font-size: 0.75rem;
}

.toc a:hover {
  color: var(--blue-dark);
}

.sidebar-cta {
  color: #fff;
  background: #051327;
  border-color: transparent;
}

.sidebar-cta h2 {
  color: #72c9ff;
}

.sidebar-cta p {
  color: #8fa7be;
  font-size: 0.78rem;
}

.sidebar-cta .button {
  width: 100%;
}

.legal-page .longform h2 {
  margin-top: 42px;
  font-size: 1.6rem;
}

.legal-updated {
  display: inline-flex;
  padding: 6px 10px;
  margin-bottom: 26px;
  color: #456175;
  background: #eef6fb;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
}

.error-page {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: #fff;
  background: #020916;
  text-align: center;
}

.error-page > div {
  max-width: 620px;
}

.error-code {
  display: block;
  color: var(--blue);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

/* Blog and editorial system */
.main-nav a[aria-current="page"] {
  color: var(--cyan);
}

.blog-hero {
  padding-bottom: 76px;
}

.blog-hero h1 {
  max-width: 980px;
}

.blog-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.blog-hero-stats span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  color: #98acc2;
  background: rgba(12, 39, 68, 0.72);
  border: 1px solid rgba(113, 190, 244, 0.15);
  border-radius: 999px;
  font-size: 0.75rem;
}

.blog-hero-stats strong {
  color: #fff;
  font-size: 0.88rem;
}

.blog-library {
  padding: 96px 0 110px;
  background:
    radial-gradient(circle at 12% 18%, rgba(17, 156, 255, 0.1), transparent 25%),
    linear-gradient(180deg, #e9f4fa, #dfeef7);
}

.blog-section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  gap: 70px;
}

.blog-section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: #07182b;
}

.blog-section-heading > p {
  margin-bottom: 4px;
  color: #526b80;
}

.section-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  grid-column: span 2;
  padding: 30px;
  overflow: hidden;
  color: #eaf7ff;
  background:
    radial-gradient(circle at 90% 10%, rgba(41, 173, 255, 0.17), transparent 30%),
    linear-gradient(145deg, #0a1d34, #04101f);
  border: 1px solid rgba(67, 167, 236, 0.18);
  border-radius: 22px;
  box-shadow: 0 20px 55px rgba(19, 69, 106, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.blog-card-media {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  aspect-ratio: 2 / 1;
  margin: -30px -30px 24px;
  overflow: hidden;
  background: #031126;
  border-bottom: 1px solid rgba(83, 190, 255, 0.2);
}

.blog-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 60%, rgba(3, 12, 27, 0.24));
  pointer-events: none;
}

.blog-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.025);
}

.blog-card::after {
  position: absolute;
  right: -38px;
  bottom: -56px;
  width: 160px;
  height: 160px;
  content: "";
  background: rgba(17, 156, 255, 0.07);
  border: 1px solid rgba(56, 216, 255, 0.08);
  border-radius: 38px;
  transform: rotate(18deg);
}

.blog-card:hover {
  border-color: rgba(70, 190, 255, 0.36);
  box-shadow: 0 26px 65px rgba(10, 75, 125, 0.17);
  transform: translateY(-4px);
}

.blog-card-pillar {
  min-height: 500px;
  grid-column: span 3;
  background:
    radial-gradient(circle at 90% 10%, rgba(48, 203, 255, 0.24), transparent 35%),
    linear-gradient(135deg, #075a9b, #06172c 68%);
}

.blog-card-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 14px;
  row-gap: 8px;
  margin-bottom: 24px;
  color: #83a3bd;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.blog-card-meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  background: rgba(37, 116, 171, 0.12);
  border: 1px solid rgba(91, 183, 244, 0.14);
  border-radius: 999px;
  white-space: nowrap;
}

.blog-card-meta span + span {
  margin-left: auto;
}

.blog-card-pillar .blog-card-meta {
  color: #b3dfff;
}

.blog-card h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.blog-card h2 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.blog-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  color: #9bb0c5;
  font-size: 0.86rem;
}

.blog-card-pillar p {
  max-width: 580px;
  color: #c2d9eb;
}

.blog-card-link {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #59c8ff;
  font-size: 0.78rem;
  font-weight: 800;
}

.blog-principles {
  padding: 100px 0;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(17, 156, 255, 0.15), transparent 30%),
    #040d1c;
}

.blog-principles-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 100px;
}

.blog-principles h2 {
  max-width: 580px;
}

.blog-principle-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(132, 190, 233, 0.15);
}

.blog-principle-list p {
  padding: 22px 0;
  margin: 0;
  color: #98adc2;
  border-bottom: 1px solid rgba(132, 190, 233, 0.15);
}

.blog-principle-list strong {
  color: #fff;
}

.blog-final-cta {
  padding: 80px 0;
  color: #fff;
  background: linear-gradient(135deg, #0b69b1, #07365f);
}

.blog-final-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.blog-final-cta h2 {
  max-width: 760px;
  margin-bottom: 14px;
}

.blog-final-cta p {
  max-width: 680px;
  margin-bottom: 0;
  color: #c1e3f9;
}

.blog-final-cta .section-kicker {
  color: #9ee2ff;
}

.article-hero {
  padding-bottom: 78px;
}

.article-featured-media {
  margin: 0 0 38px;
  overflow: hidden;
  background: #031126;
  border: 1px solid rgba(65, 171, 239, 0.22);
  border-radius: 18px;
  box-shadow: 0 24px 55px rgba(3, 29, 52, 0.16);
}

.article-featured-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.article-featured-media figcaption {
  padding: 11px 15px 12px;
  color: #7d9bb4;
  background: #061528;
  font-size: 0.68rem;
  line-height: 1.45;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  color: #7f9ab3;
  font-size: 0.72rem;
}

.article-byline span {
  position: relative;
}

.article-byline span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -13px;
  width: 3px;
  height: 3px;
  content: "";
  background: #3daaf2;
  border-radius: 50%;
}

.article-byline strong {
  color: #dceeff;
}

.quick-summary {
  padding: clamp(24px, 4vw, 34px);
  margin-bottom: 42px;
  background:
    radial-gradient(circle at 100% 0, rgba(42, 172, 255, 0.15), transparent 40%),
    #e8f4fb;
  border: 1px solid #c8e0ee;
  border-radius: 18px;
}

.quick-summary h2 {
  margin-top: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.quick-summary > p:last-child {
  margin-bottom: 0;
}

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

.summary-grid > div {
  display: flex;
  min-height: 106px;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(115, 175, 214, 0.2);
  border-radius: 13px;
}

.summary-grid strong {
  margin-bottom: 3px;
  color: #0873c5;
  font-size: 1.08rem;
}

.summary-grid span {
  color: #587085;
  font-size: 0.76rem;
}

.process-list {
  counter-reset: process;
  padding-left: 0 !important;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 58px;
  padding-left: 58px;
  counter-increment: process;
}

.process-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  content: counter(process, decimal-leading-zero);
  color: #fff;
  background: #0878c8;
  border-radius: 10px;
  font-size: 0.68rem;
  font-weight: 850;
}

.content-note {
  padding: 23px 25px;
  margin: 32px 0;
  background: #e9f4fa;
  border-left: 4px solid var(--blue);
  border-radius: 0 14px 14px 0;
}

.content-note strong {
  display: block;
  margin-bottom: 7px;
}

.content-note p {
  margin: 0;
}

.formula-box {
  padding: 18px 22px;
  margin: 20px 0;
  color: #0b426a;
  background: #e0f2fb;
  border: 1px solid #b9deef;
  border-radius: 12px;
  text-align: center;
}

.table-wrap {
  max-width: 100%;
  margin: 28px 0 34px;
  overflow-x: auto;
  border: 1px solid #c7dce9;
  border-radius: 15px;
}

.table-wrap:focus-visible {
  outline-offset: 4px;
}

.data-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.data-table th,
.data-table td {
  padding: 15px 16px;
  color: #455e72;
  border-bottom: 1px solid #cfdfE9;
  text-align: left;
  vertical-align: top;
}

.data-table thead th {
  color: #fff;
  background: #082b4c;
  font-size: 0.68rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.data-table tbody th {
  color: #173a56;
  font-weight: 800;
}

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: 0;
}

.table-yes {
  color: #087a57;
  font-weight: 800;
}

.table-no {
  color: #8f4b52;
  font-weight: 750;
}

.checklist {
  padding-left: 0 !important;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 30px;
}

.checklist li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  content: "✓";
  color: #075f46;
  background: #c9f2e2;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 900;
}

.compact-steps {
  padding-left: 23px;
  margin-bottom: 0 !important;
}

.template-box {
  padding: 20px 22px;
  margin: 14px 0;
  background: #f0f7fb;
  border: 1px solid #d2e3ed;
  border-radius: 13px;
}

.template-box strong {
  display: block;
  margin-bottom: 7px;
  color: #0b6fac;
}

.template-box p {
  margin: 0;
  font-size: 0.88rem;
}

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

.metric-card {
  padding: 20px;
  background: #edf6fb;
  border: 1px solid #d2e5ef;
  border-radius: 13px;
}

.metric-card strong,
.metric-card span {
  display: block;
}

.metric-card strong {
  margin-bottom: 5px;
  color: #16445f;
}

.metric-card span {
  color: #6a7f91;
  font-size: 0.72rem;
}

.status-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.status-flow span {
  padding: 8px 11px;
  color: #0c5b8f;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #c0dfef;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 750;
}

.checklist-panel {
  display: grid;
  padding: 22px;
  margin: 28px 0;
  background: #edf6fb;
  border: 1px solid #cde1ed;
  border-radius: 15px;
  gap: 11px;
}

.checklist-panel label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #496175;
  font-size: 0.82rem;
  cursor: pointer;
}

.checklist-panel input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 4px;
  accent-color: var(--blue-dark);
}

.split-model {
  display: grid;
  margin: 30px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.split-model section {
  padding: 24px;
  background: #edf6fb;
  border: 1px solid #cfe3ed;
  border-radius: 15px;
}

.split-model h3 {
  margin-top: 0;
}

.split-model ul {
  margin-bottom: 0;
}

.plan-choice-grid {
  display: grid;
  margin: 28px 0 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.plan-choice-grid > div {
  display: flex;
  min-height: 176px;
  flex-direction: column;
  justify-content: center;
  padding: 17px;
  color: #516c80;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #c7dfec;
  border-radius: 13px;
}

.plan-choice-grid > div.is-featured {
  color: #dcefff;
  background: linear-gradient(145deg, #0879c9, #07528e);
  border-color: transparent;
}

.plan-choice-grid span,
.plan-choice-grid small,
.plan-choice-grid strong,
.plan-choice-grid b {
  display: block;
}

.plan-choice-grid span {
  min-height: 38px;
  font-size: 0.62rem;
  font-weight: 750;
  text-transform: uppercase;
}

.plan-choice-grid strong {
  margin: 8px 0 3px;
  font-size: 1rem;
}

.plan-choice-grid b {
  color: #0873c5;
  font-size: 1.35rem;
}

.plan-choice-grid .is-featured b,
.plan-choice-grid .is-featured strong {
  color: #fff;
}

.plan-choice-grid small {
  margin-top: 4px;
  font-size: 0.66rem;
}

.article-author {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 30px;
  margin-top: 60px;
  border-top: 1px solid var(--border);
}

.article-author img {
  flex: 0 0 auto;
  background: #06172d;
  border-radius: 12px;
}

.article-author strong {
  display: block;
  margin-bottom: 3px;
}

.article-author p {
  margin: 0;
  color: #697e90;
  font-size: 0.76rem;
}

.article-conversion {
  padding: 32px;
  margin-top: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(38, 183, 255, 0.2), transparent 33%),
    #06162b;
  border-radius: 18px;
}

.article-conversion .section-kicker {
  color: #72cfff;
}

.article-conversion h2 {
  margin-top: 0;
  color: #fff;
  font-size: 1.8rem;
}

.article-conversion p {
  color: #9eb3c7;
}

.article-related {
  padding: 92px 0 110px;
  background: #061324;
}

.article-related .blog-section-heading h2 {
  color: #fff;
}

.article-related .section-kicker {
  color: #5bc7ff;
}

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

.blog-card-compact {
  min-height: 285px;
  grid-column: span 1;
}

.blog-card-compact .blog-card-meta {
  margin-bottom: 36px;
}

.blog-card-compact h2 {
  font-size: 1.35rem;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr 430px;
    gap: 48px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .credit-explainer,
  .calculator-shell,
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .calculator-copy {
    max-width: 720px;
  }

  .calculator-copy > p {
    max-width: 650px;
  }

  .credit-flow {
    max-width: 740px;
  }

  .content-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 54px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 0.72fr);
    gap: 34px;
  }

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

  .blog-card,
  .blog-card-pillar {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100dvh - var(--header-height));
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 16px 20px 26px;
    overflow-y: auto;
    background: rgba(2, 9, 22, 0.98);
    border-bottom: 1px solid var(--border-dark);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.28);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(143, 182, 216, 0.1);
  }

  .main-nav .button {
    margin-top: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 70px);
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .panel-visual {
    max-width: 600px;
    margin: 10px auto 0;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid > div:nth-child(odd) {
    border-left: 1px solid var(--border-dark);
  }

  .trust-grid > div {
    border-bottom: 1px solid var(--border-dark);
  }

  .pricing-grid {
    max-width: 660px;
    margin: 0 auto;
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }

  .price-card-featured {
    transform: none;
  }

  .price-card-premium {
    transform: none;
  }

  .price-card-top {
    min-height: auto;
    padding-right: 80px;
  }

  .content-grid,
  .faq-grid,
  .article-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 50px;
  }

  .content-aside,
  .faq-intro,
  .article-sidebar {
    position: static;
  }

  .content-aside {
    max-width: 580px;
  }

  .article-sidebar {
    max-width: 560px;
  }

  .blog-section-heading,
  .blog-principles-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .blog-principles-grid {
    gap: 46px;
  }

  .blog-final-cta .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  body {
    padding-bottom: 66px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.7rem);
  }

  .hero {
    padding-bottom: 76px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .panel-window {
    padding: 15px;
    border-radius: 20px;
  }

  .panel-stats {
    gap: 6px;
  }

  .panel-stat {
    min-height: 100px;
    padding: 11px;
  }

  .panel-stat strong {
    font-size: 1.35rem;
  }

  .panel-content {
    padding: 12px;
  }

  .client-row {
    gap: 7px;
  }

  .floating-cards {
    gap: 8px;
    margin-top: 10px;
  }

  .floating-card {
    gap: 8px;
    padding: 9px 10px;
  }

  .trust-grid > div {
    min-height: 92px;
    padding: 16px 18px;
  }

  .trust-grid strong {
    font-size: 1rem;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 40px;
    text-align: left;
  }

  .section-heading > p {
    margin-left: 0;
  }

  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 270px;
    padding: 26px;
  }

  .step-card {
    min-height: 210px;
  }

  .step-index {
    margin-bottom: 30px;
  }

  .credit-explainer {
    padding: 28px 22px;
  }

  .credit-flow {
    align-items: stretch;
    flex-direction: column;
  }

  .flow-item {
    min-height: 112px;
  }

  .flow-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .calculator-card {
    padding: 24px 18px;
  }

  .calculator-fields,
  .calculator-results {
    grid-template-columns: 1fr;
  }

  .calculator-results .result-primary {
    grid-column: auto;
  }

  .price-card {
    padding: 32px 24px 26px;
  }

  .price-card-featured .price-card-top,
  .price-card-premium .price-card-top {
    padding-top: 52px;
    padding-right: 0;
  }

  .plan-clarifier {
    align-items: flex-start;
    margin-top: -16px;
    margin-bottom: 36px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 13px;
    font-size: 0.7rem;
  }

  .comparison-table thead th:last-child,
  .comparison-table td {
    width: 104px;
  }

  .content-grid {
    gap: 42px;
  }

  .faq-list summary {
    min-height: 70px;
    padding: 17px 18px;
    font-size: 0.83rem;
  }

  .faq-list details > div {
    padding: 0 48px 20px 18px;
  }

  .final-cta {
    padding: 70px 0;
  }

  .button-light {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 900;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 9px 14px;
    background: rgba(2, 9, 22, 0.94);
    border-top: 1px solid var(--border-dark);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 800;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 50px;
    height: 50px;
    min-width: 0;
    justify-content: center;
    padding: 0;
    border-radius: 15px;
  }

  .home-page .whatsapp-float {
    bottom: 76px;
  }

  .whatsapp-copy {
    display: none;
  }

  .whatsapp-badge {
    width: 29px;
    height: 29px;
    border-radius: 8px;
  }

  .whatsapp-badge img {
    width: 16px;
    height: 16px;
  }

  .tools-page .whatsapp-float {
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    min-width: 0;
    justify-content: center;
    padding: 0;
    border-radius: 15px;
  }

  .tools-page .whatsapp-copy {
    display: none;
  }

  .tools-page .whatsapp-badge {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .tools-page .whatsapp-badge img {
    width: 20px;
    height: 20px;
  }

  .inner-hero {
    padding-top: calc(var(--header-height) + 64px);
  }

  .inner-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .article-layout {
    padding-top: 64px;
    padding-bottom: 78px;
  }

  .longform {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .blog-library,
  .blog-principles,
  .article-related {
    padding: 72px 0 82px;
  }

  .blog-grid,
  .blog-grid-related {
    grid-template-columns: 1fr;
  }

  .blog-card,
  .blog-card-pillar,
  .blog-card-compact {
    min-height: 0;
    grid-column: span 1;
    padding: 22px;
  }

  .blog-card-media {
    margin: -22px -22px 20px;
  }

  .blog-card-meta {
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 20px;
  }

  .blog-card-meta span + span {
    margin-left: 0;
  }

  .blog-hero-stats {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-final-cta .button {
    width: 100%;
  }

  .summary-grid,
  .metric-grid,
  .split-model,
  .plan-choice-grid {
    grid-template-columns: 1fr;
  }

  .article-byline {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .article-byline span::after {
    display: none;
  }

  .article-conversion {
    padding: 26px 22px;
  }

  .article-conversion .button {
    width: 100%;
  }
}

/* Recurso gratuito: planilha de controle */
.home-resource-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 30px 32px;
  margin-top: 42px;
  border: 1px solid rgba(56, 216, 255, 0.2);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(8, 45, 75, 0.92), rgba(5, 24, 43, 0.94));
  box-shadow: 0 24px 60px rgba(0, 20, 40, 0.18);
}

.home-resource-strip h3 {
  margin: 6px 0 7px;
  color: #f7fbff;
  font-size: 1.4rem;
}

.home-resource-strip p {
  max-width: 720px;
  margin: 0;
  color: #9fb5ca;
  font-size: 0.9rem;
}

.home-resource-strip .button {
  min-width: 220px;
  justify-content: center;
}

.blog-resource-section {
  padding: 74px 0;
  background: #06111f;
}

.blog-resource-section .home-resource-strip {
  margin-top: 0;
}

.resource-page {
  background: #06111f;
}

.resource-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 76px) 0 86px;
  color: var(--text-inverse);
  background:
    radial-gradient(circle at 76% 24%, rgba(17, 156, 255, 0.2), transparent 35%),
    radial-gradient(circle at 14% 72%, rgba(56, 216, 255, 0.09), transparent 31%),
    linear-gradient(180deg, #020916 0%, #061427 100%);
}

.resource-hero::after {
  position: absolute;
  right: -160px;
  bottom: -280px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(56, 216, 255, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(17, 156, 255, 0.025), 0 0 0 160px rgba(17, 156, 255, 0.018);
  pointer-events: none;
}

.resource-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 76px;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.92fr);
}

.resource-hero-copy .breadcrumbs {
  margin-bottom: 40px;
}

.resource-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(2.65rem, 5.3vw, 5.1rem);
}

.resource-hero-copy > p {
  max-width: 690px;
  margin-bottom: 30px;
  color: #b8c9dc;
  font-size: 1.1rem;
  line-height: 1.75;
}

.resource-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 26px;
}

.resource-download {
  min-width: 260px;
  justify-content: center;
  box-shadow: 0 22px 52px rgba(17, 156, 255, 0.22);
}

.resource-text-link {
  color: #d5e7f7;
  font-size: 0.92rem;
  font-weight: 750;
}

.resource-text-link:hover {
  color: var(--cyan);
}

.resource-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 0;
  margin: 0;
  color: #9eb1c7;
  font-size: 0.83rem;
  list-style: none;
}

.resource-trust span {
  margin-right: 6px;
  color: var(--green);
  font-weight: 900;
}

.resource-preview {
  padding: 22px;
  border: 1px solid rgba(56, 216, 255, 0.24);
  border-radius: 26px;
  background: rgba(5, 19, 36, 0.9);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: rotate(1.2deg);
}

.resource-preview-top {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 16px;
  color: #d8e9f8;
  border-bottom: 1px solid var(--border-dark);
  font-size: 0.78rem;
}

.resource-preview-top > div {
  display: flex;
  gap: 6px;
}

.preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #24445f;
}

.preview-dot:nth-child(2) {
  background: #0870ca;
}

.preview-dot:nth-child(3) {
  background: var(--green);
}

.resource-preview-kpis {
  display: grid;
  gap: 10px;
  padding: 18px 0;
  grid-template-columns: repeat(2, 1fr);
}

.resource-preview-kpis > div {
  min-height: 98px;
  padding: 18px;
  border: 1px solid rgba(119, 164, 202, 0.16);
  border-radius: 16px;
  background: linear-gradient(145deg, #0a2038, #07182b);
}

.resource-preview-kpis span {
  display: block;
  margin-bottom: 9px;
  color: #8ba4bd;
  font-size: 0.72rem;
}

.resource-preview-kpis strong {
  color: #f7fbff;
  font-size: 1.8rem;
  line-height: 1;
}

.resource-preview-kpis .preview-kpi-green {
  border-color: rgba(49, 215, 150, 0.25);
  background: linear-gradient(145deg, rgba(14, 78, 67, 0.86), rgba(7, 39, 39, 0.95));
}

.resource-preview-table {
  overflow: hidden;
  border: 1px solid rgba(119, 164, 202, 0.16);
  border-radius: 15px;
}

.resource-preview-table > div {
  display: grid;
  gap: 10px;
  padding: 11px 14px;
  color: #afc2d4;
  border-top: 1px solid rgba(119, 164, 202, 0.11);
  font-size: 0.72rem;
  grid-template-columns: 1fr 0.65fr 0.56fr;
}

.resource-preview-table .preview-table-head {
  color: #e6f2fc;
  border-top: 0;
  background: rgba(17, 156, 255, 0.12);
  font-weight: 800;
}

.resource-preview-table em {
  color: var(--green);
  font-style: normal;
  font-weight: 800;
}

.resource-preview-table .preview-pending {
  color: #f5c75f;
}

.resource-preview > p {
  margin: 14px 2px 0;
  color: #7990a6;
  font-size: 0.69rem;
  text-align: center;
}

.resource-proof {
  position: relative;
  z-index: 2;
  color: var(--text-inverse);
  border-top: 1px solid rgba(119, 164, 202, 0.12);
  border-bottom: 1px solid rgba(119, 164, 202, 0.12);
  background: #071628;
}

.resource-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.resource-proof-grid > div {
  padding: 26px 28px;
  border-left: 1px solid rgba(119, 164, 202, 0.12);
}

.resource-proof-grid > div:last-child {
  border-right: 1px solid rgba(119, 164, 202, 0.12);
}

.resource-proof-grid strong,
.resource-proof-grid span {
  display: block;
}

.resource-proof-grid strong {
  color: #f7fbff;
  font-size: 1.15rem;
}

.resource-proof-grid span {
  margin-top: 2px;
  color: #8fa5ba;
  font-size: 0.75rem;
}

.resource-section {
  color: var(--text);
  background:
    radial-gradient(circle at 100% 0%, rgba(17, 156, 255, 0.1), transparent 31%),
    linear-gradient(180deg, #eaf5fc, #dcecf6);
}

.resource-feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.resource-feature-grid article {
  position: relative;
  min-height: 270px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(121, 158, 188, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 40px rgba(18, 53, 89, 0.07);
}

.resource-feature-grid article::after {
  position: absolute;
  right: -34px;
  bottom: -56px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(17, 156, 255, 0.05);
  content: "";
}

.resource-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--blue), var(--blue-dark));
  font-size: 0.75rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(17, 156, 255, 0.2);
}

.resource-feature-grid h3 {
  margin-bottom: 12px;
}

.resource-feature-grid p {
  margin-bottom: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.resource-how {
  color: var(--text-inverse);
  background:
    radial-gradient(circle at 8% 15%, rgba(56, 216, 255, 0.08), transparent 24%),
    #06111f;
}

.resource-how-grid {
  display: grid;
  align-items: start;
  gap: 86px;
  grid-template-columns: 0.78fr 1.22fr;
}

.resource-how h2 {
  max-width: 500px;
}

.resource-how p {
  color: #9eb1c5;
}

.resource-how .button {
  margin-top: 18px;
}

.resource-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}

.resource-steps li {
  display: grid;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(130, 170, 205, 0.14);
  grid-template-columns: 46px 1fr;
}

.resource-steps li:first-child {
  padding-top: 0;
}

.resource-steps li > span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(56, 216, 255, 0.22);
  border-radius: 12px;
  background: rgba(17, 156, 255, 0.12);
  font-weight: 900;
}

.resource-steps strong {
  display: block;
  margin-bottom: 5px;
  color: #f7fbff;
}

.resource-steps p {
  margin: 0;
  font-size: 0.9rem;
}

.resource-boundary {
  color: var(--text);
  background: #dcecf6;
}

.resource-boundary-card {
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid rgba(110, 153, 187, 0.24);
  border-radius: 30px;
  background: linear-gradient(145deg, #f3f9fd, #e5f2fa);
  box-shadow: 0 30px 80px rgba(19, 56, 91, 0.1);
}

.resource-boundary-card > div:first-child {
  max-width: 780px;
}

.resource-boundary-card > div:first-child p {
  color: var(--text-soft);
  font-size: 1.02rem;
}

.resource-compare {
  display: grid;
  gap: 16px;
  margin: 38px 0 26px;
  grid-template-columns: repeat(2, 1fr);
}

.resource-compare section {
  padding: 28px;
  border: 1px solid rgba(110, 153, 187, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
}

.resource-compare section:last-child {
  color: #e8f5ff;
  border-color: rgba(56, 216, 255, 0.2);
  background: linear-gradient(145deg, #0a2945, #06172a);
}

.resource-compare span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-compare section:last-child span {
  color: var(--cyan);
}

.resource-compare ul {
  padding-left: 20px;
  margin: 0;
}

.resource-security {
  padding: 18px 20px;
  margin: 0;
  color: #38516a;
  border-left: 3px solid var(--blue);
  background: rgba(17, 156, 255, 0.06);
}

.resource-faq {
  color: var(--text);
  background: #eaf5fc;
}

.resource-related {
  padding: 90px 0;
  color: var(--text-inverse);
  background: #071628;
}

.resource-final-cta {
  padding: 90px 0 104px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 216, 255, 0.17), transparent 42%),
    linear-gradient(180deg, #07213a, #020916);
}

.resource-final-cta h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.resource-final-cta p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: #a9bed3;
}

@media (max-width: 1050px) {
  .resource-hero-grid {
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .resource-preview {
    width: min(100%, 720px);
    transform: none;
  }

  .resource-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resource-how-grid {
    gap: 56px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-resource-strip {
    align-items: stretch;
    flex-direction: column;
    padding: 26px 22px;
  }

  .home-resource-strip .button {
    width: 100%;
    min-width: 0;
  }

  .resource-hero {
    padding-top: calc(var(--header-height) + 54px);
    padding-bottom: 66px;
  }

  .resource-hero-copy .breadcrumbs {
    margin-bottom: 30px;
  }

  .resource-hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.55rem);
  }

  .resource-hero-copy > p {
    font-size: 1rem;
  }

  .resource-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .resource-download {
    width: 100%;
    min-width: 0;
  }

  .resource-text-link {
    text-align: center;
  }

  .resource-preview {
    padding: 14px;
    border-radius: 20px;
  }

  .resource-preview-kpis {
    grid-template-columns: 1fr;
  }

  .resource-preview-table > div {
    grid-template-columns: 1.15fr 0.7fr 0.65fr;
  }

  .resource-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resource-proof-grid > div {
    padding: 20px 16px;
  }

  .resource-feature-grid,
  .resource-compare {
    grid-template-columns: 1fr;
  }

  .resource-feature-grid article {
    min-height: 0;
    padding: 26px;
  }

  .resource-icon {
    margin-bottom: 26px;
  }

  .resource-how .button {
    width: 100%;
  }

  .resource-boundary-card {
    border-radius: 22px;
  }

  .resource-related {
    padding: 72px 0 82px;
  }

  .resource-final-cta .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Hub de ferramentas próprias — 2026-07-26 */
.tools-page {
  color: var(--text);
  background: #dcebf5;
}

.tool-home-invite {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  margin-top: 20px;
  padding: 30px 34px;
  border: 1px solid rgba(74, 181, 250, 0.24);
  border-radius: 24px;
  color: #f5faff;
  background:
    radial-gradient(circle at 92% 0%, rgba(56, 216, 255, 0.15), transparent 36%),
    linear-gradient(135deg, #092844, #061727);
  box-shadow: 0 22px 55px rgba(0, 21, 45, 0.16);
}

.tool-home-invite h3 {
  margin: 6px 0 8px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.tool-home-invite p {
  max-width: 730px;
  margin-bottom: 0;
  color: #a9bed2;
}

.tool-home-invite .button {
  min-width: 210px;
  border-color: rgba(110, 200, 255, 0.36);
  color: #fff;
}

.tools-page input,
.tools-page select,
.tools-page button {
  font: inherit;
}

.tool-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 72px) 0 86px;
  color: #f7fbff;
  background:
    radial-gradient(circle at 78% 18%, rgba(17, 156, 255, 0.22), transparent 34%),
    radial-gradient(circle at 14% 84%, rgba(56, 216, 255, 0.09), transparent 32%),
    linear-gradient(145deg, #020916 0%, #061a31 58%, #07243f 100%);
}

.tool-hero::after {
  position: absolute;
  right: -170px;
  bottom: -260px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(56, 216, 255, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 74px rgba(56, 216, 255, 0.035),
    0 0 0 150px rgba(56, 216, 255, 0.02);
  content: "";
  pointer-events: none;
}

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

.tool-hero .breadcrumbs {
  margin-bottom: 42px;
  color: #91abc3;
}

.tool-hero .breadcrumbs a:hover {
  color: #fff;
}

.tool-hero-grid {
  display: grid;
  align-items: center;
  gap: 72px;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
}

.tool-hero-copy {
  max-width: 900px;
}

.tool-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.35vw, 5.25rem);
}

.tool-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: #b7c9da;
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.tool-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.tool-hero .button-ghost {
  color: #f7fbff;
  background: rgba(8, 41, 70, 0.86);
  border-color: rgba(104, 202, 255, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.tool-hero .button-ghost:hover {
  color: #fff;
  background: rgba(13, 65, 106, 0.96);
  border-color: #67caff;
}

.tool-hero-panel {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(72, 178, 255, 0.25);
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(16, 53, 87, 0.92), rgba(4, 18, 35, 0.94));
  box-shadow: 0 28px 80px rgba(0, 5, 15, 0.38);
}

.tool-hero-panel::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(57, 181, 255, 0.11), transparent 45%);
  content: "";
  pointer-events: none;
}

.tool-panel-kicker,
.tool-step {
  position: relative;
  display: block;
  margin-bottom: 20px;
  color: #6acaff;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tool-roadmap {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tool-roadmap li {
  display: grid;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid rgba(135, 190, 234, 0.13);
  border-radius: 15px;
  background: rgba(0, 8, 20, 0.34);
  grid-template-columns: 38px minmax(0, 1fr);
}

.tool-roadmap li > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, #129fff, #0870ca);
  font-size: 0.75rem;
  font-weight: 900;
}

.tool-roadmap li > div {
  min-width: 0;
}

.tool-roadmap strong,
.tool-roadmap small {
  display: block;
}

.tool-roadmap strong {
  color: #fff;
  line-height: 1.25;
}

.tool-roadmap small {
  margin-top: 2px;
  color: #91a9c0;
}

.tool-library,
.related-tools {
  padding: 92px 0 104px;
  background:
    radial-gradient(circle at 92% 8%, rgba(17, 156, 255, 0.09), transparent 24%),
    #dcebf5;
}

.tool-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.tool-section-heading > div {
  max-width: 700px;
}

.tool-section-heading .section-kicker {
  display: block;
  margin-bottom: 14px;
}

.tool-section-heading h2 {
  margin-bottom: 0;
}

.tool-section-heading > p {
  max-width: 450px;
  margin-bottom: 2px;
  color: #496077;
  font-size: 1.04rem;
}

.tool-section-heading > a {
  color: #0870ca;
  font-weight: 800;
  white-space: nowrap;
}

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

.tool-card {
  position: relative;
  display: flex;
  min-height: 350px;
  overflow: hidden;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(73, 137, 190, 0.2);
  border-radius: 24px;
  color: #f5faff;
  background:
    radial-gradient(circle at 100% 0%, rgba(17, 156, 255, 0.15), transparent 35%),
    linear-gradient(150deg, #0b2843, #061626 70%);
  box-shadow: 0 20px 48px rgba(10, 47, 82, 0.13);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tool-card:hover {
  border-color: rgba(56, 216, 255, 0.45);
  box-shadow: 0 26px 58px rgba(6, 38, 73, 0.2);
  transform: translateY(-4px);
}

.tool-card-download {
  background:
    radial-gradient(circle at 100% 0%, rgba(49, 215, 150, 0.18), transparent 35%),
    linear-gradient(150deg, #0b2c3c, #061b2a 70%);
}

.tool-card-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 36px;
  place-items: center;
  border: 1px solid rgba(89, 198, 255, 0.3);
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #159fff, #075faa);
  box-shadow: 0 14px 28px rgba(5, 105, 181, 0.28);
  font-size: 0.88rem;
  font-weight: 900;
}

.tool-card-label {
  margin-bottom: 10px;
  color: #63c7ff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tool-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.tool-card h2 a {
  color: #f8fcff;
  text-decoration: none;
}

.tool-card h2 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.tool-card p {
  margin-bottom: 24px;
  color: #a6bcd0;
}

.tool-card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding: 12px 16px;
  border: 1px solid rgba(101, 205, 255, 0.42);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #109df7, #0873cf);
  box-shadow: 0 12px 26px rgba(6, 112, 196, 0.24);
  font-weight: 800;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tool-card-link span {
  transition: transform 180ms ease;
}

.tool-card-link:hover,
.tool-card-link:focus-visible {
  border-color: #9ae1ff;
  box-shadow: 0 16px 34px rgba(6, 126, 219, 0.36);
  transform: translateY(-2px);
}

.tool-card:hover .tool-card-link span {
  transform: translateX(4px);
}

.tool-explainer {
  padding: 96px 0;
  color: #edf7ff;
  background:
    radial-gradient(circle at 14% 20%, rgba(56, 216, 255, 0.1), transparent 26%),
    #061525;
}

.tool-content-grid {
  display: grid;
  align-items: center;
  gap: 76px;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.7fr);
}

.tool-content-grid h2 {
  max-width: 720px;
}

.tool-content-grid p {
  max-width: 760px;
  color: #a9bed2;
  font-size: 1.04rem;
}

.tool-content-grid a,
.tool-article a {
  color: #48bcff;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(72, 188, 255, 0.35);
  text-underline-offset: 3px;
}

.tool-note-card {
  padding: 32px;
  border: 1px solid rgba(56, 216, 255, 0.24);
  border-radius: 24px;
  background: linear-gradient(145deg, #0a2b46, #071c30);
  box-shadow: 0 26px 65px rgba(0, 5, 13, 0.28);
}

.tool-note-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 13px;
  color: #061525;
  background: #56d7ff;
  font-weight: 900;
}

.tool-note-card h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.55rem;
}

.tool-note-card p,
.tool-note-card ul {
  color: #abc0d4;
}

.tool-note-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.tool-note-card li::before {
  margin-right: 9px;
  color: #31d796;
  content: "✓";
  font-weight: 900;
}

.interactive-tool-section {
  position: relative;
  z-index: 2;
  padding: 0 0 96px;
  background: linear-gradient(180deg, #061a31 0, #dcebf5 210px);
}

.interactive-tool {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(69, 148, 211, 0.22);
  border-radius: 30px;
  background: #f5fafe;
  box-shadow: 0 35px 90px rgba(3, 35, 68, 0.2);
  grid-template-columns: 1fr 0.9fr;
}

.tool-input-panel,
.tool-result-panel {
  padding: 42px;
}

.tool-input-panel {
  color: #10263b;
  background:
    radial-gradient(circle at 100% 0%, rgba(17, 156, 255, 0.08), transparent 32%),
    #f5fafe;
}

.tool-input-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.tool-input-panel > p {
  margin-bottom: 28px;
  color: #586c7f;
}

.tool-input-panel .tool-step {
  margin-bottom: 12px;
  color: #0870ca;
}

.tool-form-grid {
  display: grid;
  gap: 18px;
}

.tool-form-grid > label {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid #d1e1eb;
  border-radius: 16px;
  color: #223d55;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 24px rgba(22, 69, 105, 0.055);
  font-size: 0.9rem;
  font-weight: 750;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.tool-form-grid > label:focus-within {
  border-color: rgba(17, 156, 255, 0.56);
  box-shadow: 0 10px 28px rgba(17, 119, 194, 0.11);
}

.tool-form-grid label small {
  color: #728499;
  font-weight: 500;
}

.tool-form-grid input,
.tool-form-grid select,
.glossary-search input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #b7cfdf;
  border-radius: 12px;
  color: #071a2c;
  background: #fff;
  outline: none;
}

.tool-form-grid input,
.glossary-search input {
  padding: 11px 14px;
}

.tool-form-grid select {
  padding: 11px 38px 11px 14px;
}

.tool-form-grid input:focus,
.tool-form-grid select:focus,
.glossary-search input:focus {
  border-color: #119cff;
  box-shadow: 0 0 0 4px rgba(17, 156, 255, 0.12);
}

.tool-money-input,
.tool-suffix-input {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #b7cfdf;
  border-radius: 12px;
  background: #fff;
}

.tool-money-input:focus-within,
.tool-suffix-input:focus-within {
  border-color: #119cff;
  box-shadow: 0 0 0 4px rgba(17, 156, 255, 0.12);
}

.tool-money-input b,
.tool-suffix-input b {
  display: grid;
  min-width: 48px;
  padding: 0 12px;
  place-items: center;
  color: #557086;
  background: #e8f2f8;
  font-size: 0.86rem;
}

.tool-money-input input,
.tool-suffix-input input {
  min-width: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none !important;
}

.tool-suffix-input input {
  order: -1;
}

.tool-result-panel {
  color: #edf8ff;
  background:
    radial-gradient(circle at 100% 0%, rgba(17, 156, 255, 0.22), transparent 38%),
    linear-gradient(150deg, #0a2944, #041423);
}

.tool-result-panel .tool-step {
  color: #70ccff;
}

.tool-primary-result {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(142, 193, 230, 0.18);
}

.tool-primary-result small,
.tool-primary-result strong {
  display: block;
}

.tool-primary-result small {
  margin-bottom: 8px;
  color: #a1b8cc;
}

.tool-primary-result strong {
  color: #fff;
  font-size: clamp(2.2rem, 4.8vw, 4.1rem);
  letter-spacing: -0.055em;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.tool-primary-result strong.is-negative {
  color: #ff9eaa;
}

.package-result .tool-primary-result strong {
  font-size: clamp(1.85rem, 3.6vw, 3.15rem);
}

.package-result > p {
  margin: 22px 0 0;
  color: #b4c8d9;
}

.tool-result-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid rgba(142, 193, 230, 0.13);
  border-radius: 16px;
  background: rgba(142, 193, 230, 0.13);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tool-result-grid > div {
  min-width: 0;
  padding: 18px;
  background: rgba(2, 14, 26, 0.72);
}

.tool-result-grid span,
.tool-result-grid strong {
  display: block;
}

.tool-result-grid span {
  margin-bottom: 5px;
  color: #91a9bf;
  font-size: 0.79rem;
}

.tool-result-grid strong {
  color: #fff;
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.tool-result-note {
  margin: 24px 0 0;
  color: #8fa8bd;
  font-size: 0.82rem;
  line-height: 1.55;
}

.tool-checkout {
  width: 100%;
  margin-top: 26px;
}

.tool-article {
  padding: 96px 0;
  color: #eaf5fd;
  background: #061525;
}

.tool-article-grid {
  display: grid;
  align-items: start;
  gap: 74px;
  grid-template-columns: minmax(0, 1fr) 330px;
}

.tool-article article {
  max-width: 780px;
}

.tool-article article h2 {
  margin-top: 50px;
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.tool-article article h2:first-of-type {
  margin-top: 0;
}

.tool-article article p {
  color: #adbed0;
  font-size: 1.03rem;
}

.formula-box {
  margin: 34px 0;
  padding: 24px;
  border: 1px solid rgba(56, 216, 255, 0.24);
  border-left: 4px solid #38d8ff;
  border-radius: 0 16px 16px 0;
  background: #0a263f;
}

.formula-box span,
.formula-box strong {
  display: block;
}

.formula-box span {
  margin-bottom: 8px;
  color: #62c9ff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.formula-box strong {
  color: #fff;
  font-size: 1.03rem;
}

.tool-side-card {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  padding: 28px;
  border: 1px solid rgba(94, 176, 235, 0.19);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(15, 50, 79, 0.96), rgba(7, 27, 45, 0.98));
  box-shadow: 0 22px 58px rgba(0, 5, 13, 0.25);
}

.tool-side-card h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: 1.45rem;
}

.tool-side-card p,
.tool-side-card li,
.side-steps span {
  color: #a5bacd;
}

.tool-side-card > a {
  display: inline-block;
  margin-top: 18px;
}

.mini-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(133, 188, 229, 0.13);
}

.mini-plan span {
  color: #a4bace;
}

.mini-plan strong {
  color: #fff;
  font-size: 0.91rem;
}

.side-steps {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  counter-reset: side;
  list-style: none;
}

.side-steps li {
  display: grid;
  padding-left: 42px;
  counter-increment: side;
}

.side-steps li::before {
  position: absolute;
  display: grid;
  width: 29px;
  height: 29px;
  margin-left: -42px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: #0870ca;
  content: counter(side);
  font-size: 0.72rem;
  font-weight: 900;
}

.side-steps strong {
  color: #fff;
}

.side-steps span {
  font-size: 0.88rem;
}

.credit-rule {
  display: grid;
  align-items: center;
  gap: 4px 7px;
  margin-bottom: 24px;
  grid-template-columns: auto 1fr auto auto 1fr;
}

.credit-rule strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: #0870ca;
  font-size: 1.3rem;
}

.credit-rule span {
  color: #b7c8d8;
  font-size: 0.85rem;
}

.credit-rule i {
  color: #4ac4ff;
  font-style: normal;
}

.tool-compare-table {
  overflow-x: auto;
  margin: 34px 0;
  border: 1px solid rgba(102, 178, 232, 0.18);
  border-radius: 17px;
}

.tool-compare-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 630px;
}

.tool-compare-table th,
.tool-compare-table td {
  padding: 15px 17px;
  border-bottom: 1px solid rgba(102, 178, 232, 0.14);
  text-align: left;
}

.tool-compare-table th {
  color: #70ccff;
  background: #0a2944;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tool-compare-table td {
  color: #b9cad9;
  background: #081d30;
}

.tool-compare-table tr:last-child td {
  border-bottom: 0;
}

.tool-faq {
  padding: 96px 0;
  color: #10263b;
  background: #e9f3fa;
}

.tool-faq-grid {
  display: grid;
  align-items: start;
  gap: 78px;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
}

.tool-faq-grid > div:first-child {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.tool-faq-grid > div:first-child p {
  color: #5a6d80;
}

.tool-faq .faq-list {
  border-top: 1px solid #b9d0df;
}

.tool-faq .faq-list details {
  border-color: #b9d0df;
}

.related-tools {
  background: #dcebf5;
}

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

.tool-grid-related .tool-card {
  min-height: 330px;
}

.tool-final-cta {
  padding: 76px 0;
  color: #fff;
  background:
    radial-gradient(circle at 18% 0%, rgba(56, 216, 255, 0.18), transparent 32%),
    linear-gradient(120deg, #0870ca, #075495);
}

.tool-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.tool-final-inner h2 {
  max-width: 720px;
  margin-bottom: 10px;
}

.tool-final-inner p {
  max-width: 670px;
  margin-bottom: 0;
  color: #c8e8fa;
}

.checklist-section {
  padding: 84px 0 100px;
  background: #dcebf5;
}

.checklist-layout {
  display: grid;
  align-items: start;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) 330px;
}

.checklist-main {
  display: grid;
  gap: 22px;
}

.checklist-group {
  overflow: hidden;
  border: 1px solid #bfd5e4;
  border-radius: 22px;
  background: #f7fbfe;
  box-shadow: 0 16px 44px rgba(16, 58, 94, 0.07);
}

.checklist-group h2 {
  margin: 0;
  padding: 21px 26px;
  color: #0a2944;
  background: #e8f2f8;
  font-size: 1.25rem;
}

.checklist-item {
  display: grid;
  align-items: start;
  gap: 15px;
  padding: 22px 26px;
  border-top: 1px solid #d5e3ec;
  cursor: pointer;
  grid-template-columns: 27px 34px 1fr;
}

.checklist-item:hover {
  background: #f1f8fc;
}

.checklist-item input {
  width: 24px;
  height: 24px;
  margin: 2px 0 0;
  accent-color: #0870ca;
}

.checkmark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: #c4d4df;
  font-weight: 900;
  transition: background 150ms ease;
}

.checklist-item input:checked + .checkmark {
  background: #079767;
}

.checklist-item strong,
.checklist-item small {
  display: block;
}

.checklist-item strong {
  color: #102a41;
  font-size: 1.03rem;
}

.checklist-item small {
  margin-top: 4px;
  color: #687d90;
  line-height: 1.45;
}

.checklist-progress {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  padding: 30px;
  border: 1px solid rgba(78, 174, 239, 0.24);
  border-radius: 24px;
  color: #f4faff;
  background:
    radial-gradient(circle at 100% 0%, rgba(17, 156, 255, 0.21), transparent 40%),
    linear-gradient(145deg, #0a2944, #041423);
  box-shadow: 0 24px 60px rgba(8, 43, 75, 0.18);
}

.checklist-progress > strong,
.checklist-progress > span {
  display: block;
}

.checklist-progress > strong {
  color: #fff;
  font-size: 3.5rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.checklist-progress > span:not(.tool-step) {
  margin-top: 7px;
  color: #9fb6ca;
}

.progress-track {
  height: 10px;
  overflow: hidden;
  margin: 22px 0 28px;
  border-radius: 99px;
  background: rgba(157, 197, 230, 0.16);
}

.progress-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #119cff, #38d8ff);
  transition: width 220ms ease;
}

.checklist-progress h2 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.checklist-progress p {
  color: #b1c4d5;
}

.text-button {
  padding: 0;
  border: 0;
  color: #64caff;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.privacy-mini {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(139, 190, 229, 0.16);
  font-size: 0.78rem;
}

.glossary-section {
  padding: 82px 0 102px;
  background: #dcebf5;
}

.glossary-search {
  display: grid;
  max-width: 720px;
  margin: 0 auto 42px;
  gap: 8px;
}

.glossary-search > label {
  color: #0e2a42;
  font-weight: 800;
}

.glossary-search > div {
  position: relative;
}

.glossary-search > div > span {
  position: absolute;
  top: 50%;
  left: 17px;
  z-index: 1;
  color: #56738b;
  font-size: 1.35rem;
  transform: translateY(-52%);
}

.glossary-search input {
  min-height: 58px;
  padding-left: 48px;
  font-size: 1rem;
}

.glossary-search small {
  color: #617689;
}

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

.glossary-grid article {
  position: relative;
  min-height: 245px;
  padding: 26px;
  border: 1px solid #bdd4e3;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(17, 156, 255, 0.07), transparent 35%),
    #f7fbfe;
  box-shadow: 0 13px 34px rgba(14, 54, 88, 0.06);
}

.glossary-grid article[hidden] {
  display: none;
}

.glossary-grid article > span {
  display: grid;
  width: 35px;
  height: 35px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: #0870ca;
  font-size: 0.8rem;
  font-weight: 900;
}

.glossary-grid h2 {
  margin-bottom: 10px;
  color: #0b2841;
  font-size: 1.35rem;
}

.glossary-grid p {
  margin-bottom: 0;
  color: #5b7083;
  font-size: 0.92rem;
}

.glossary-context .tool-side-card ul {
  padding-left: 20px;
}

@media (max-width: 1050px) {
  .tool-hero-grid,
  .interactive-tool,
  .tool-content-grid {
    grid-template-columns: 1fr;
  }

  .tool-hero-panel {
    width: min(100%, 720px);
  }

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

  .interactive-tool-section {
    background: linear-gradient(180deg, #061a31 0, #dcebf5 140px);
  }

  .tool-article-grid,
  .checklist-layout {
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) 290px;
  }
}

@media (max-width: 760px) {
  .tool-home-invite {
    align-items: stretch;
    flex-direction: column;
    padding: 26px 22px;
  }

  .tool-home-invite .button {
    width: 100%;
    min-width: 0;
  }

  .tool-hero {
    padding: calc(var(--header-height) + 52px) 0 66px;
  }

  .tool-hero-grid {
    gap: 34px;
  }

  .tool-hero .breadcrumbs {
    margin-bottom: 30px;
  }

  .tool-hero h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.35rem);
    line-height: 1.02;
  }

  .tool-hero p {
    font-size: 1rem;
  }

  .tool-hero-actions,
  .tool-final-inner,
  .tool-section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .tool-hero-actions {
    gap: 12px;
  }

  .tool-hero-actions .button,
  .tool-final-inner .button {
    width: 100%;
  }

  .tool-hero-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .tool-panel-kicker {
    margin-bottom: 16px;
  }

  .tool-roadmap {
    gap: 10px;
  }

  .tool-roadmap li {
    gap: 13px;
    padding: 13px;
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .tool-roadmap li > span {
    width: 40px;
    height: 40px;
  }

  .tool-roadmap strong {
    line-height: 1.18;
  }

  .tool-roadmap small {
    margin-top: 4px;
    line-height: 1.35;
  }

  .tool-library,
  .related-tools,
  .tool-explainer,
  .tool-article,
  .tool-faq,
  .checklist-section,
  .glossary-section {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .tool-section-heading {
    gap: 18px;
    margin-bottom: 30px;
  }

  .tool-section-heading h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.04;
  }

  .tool-section-heading > p {
    max-width: none;
    margin: 0;
  }

  .tool-grid,
  .tool-grid-related,
  .glossary-grid {
    grid-template-columns: 1fr;
  }

  .tool-card,
  .tool-grid-related .tool-card {
    min-height: 0;
    padding: 24px;
  }

  .tool-card-icon {
    margin-bottom: 24px;
  }

  .tool-card h2 {
    font-size: clamp(1.65rem, 7.8vw, 2.05rem);
    line-height: 1.08;
  }

  .tool-card-link {
    width: 100%;
    min-height: 48px;
  }

  .interactive-tool-section {
    padding-bottom: 74px;
  }

  .interactive-tool {
    border-radius: 22px;
  }

  .tool-input-panel,
  .tool-result-panel {
    padding: 28px 22px;
  }

  .tool-form-grid {
    gap: 14px;
  }

  .tool-form-grid > label {
    gap: 9px;
    padding: 13px;
    border-radius: 14px;
  }

  .tool-primary-result strong {
    font-size: clamp(2rem, 11vw, 3.3rem);
  }

  .tool-result-grid {
    grid-template-columns: 1fr;
  }

  .tool-article-grid,
  .checklist-layout,
  .tool-faq-grid {
    grid-template-columns: 1fr;
  }

  .tool-side-card,
  .checklist-progress,
  .tool-faq-grid > div:first-child {
    position: static;
  }

  .tool-faq-grid {
    gap: 38px;
  }

  .tool-final-cta {
    padding: 66px 0;
  }

  .checklist-progress {
    order: -1;
  }

  .checklist-group h2 {
    padding: 19px 20px;
  }

  .checklist-item {
    gap: 11px;
    padding: 20px;
    grid-template-columns: 25px 1fr;
  }

  .checkmark {
    display: none;
  }

  .glossary-grid article {
    min-height: 0;
  }
}

/* Integração do tutorial em vídeo: fachada local, player e guia dedicado. */
.video-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(17, 156, 255, 0.14), transparent 32%),
    linear-gradient(145deg, #e9f3fa, #d9eaf5);
}

.video-showcase-grid {
  display: grid;
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
}

.video-showcase-copy > p {
  max-width: 560px;
  color: var(--text-soft);
  font-size: 1.04rem;
}

.video-points {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 27px 0 31px;
  list-style: none;
}

.video-points li {
  position: relative;
  padding-left: 29px;
  color: #344d64;
  font-weight: 650;
}

.video-points li::before {
  position: absolute;
  top: 0.4em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #fff;
  background: var(--blue-dark);
  border-radius: 50%;
  content: "✓";
  font-size: 0.66rem;
  font-weight: 900;
}

.video-showcase-media,
.article-video-media {
  margin: 0;
}

.video-facade,
.video-player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(78, 171, 235, 0.3);
  border-radius: 24px;
  background: #01060d;
  box-shadow: 0 28px 72px rgba(4, 39, 72, 0.24);
}

.video-facade iframe,
.video-player-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-facade-button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: #fff;
  background: #01060d;
  cursor: pointer;
  text-align: left;
}

.video-facade-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease, opacity 280ms ease;
}

.video-facade-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 6, 15, 0.02) 26%, rgba(0, 8, 20, 0.86) 100%),
    linear-gradient(90deg, rgba(0, 6, 15, 0.2), transparent 62%);
}

.video-play-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: linear-gradient(145deg, #19a9ff, #0870ca);
  box-shadow: 0 16px 42px rgba(0, 38, 78, 0.46);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.video-play-mark i {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
}

.video-play-copy {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.video-play-copy strong,
.video-play-copy small {
  display: block;
}

.video-play-copy strong {
  font-size: clamp(1rem, 2vw, 1.32rem);
}

.video-play-copy small {
  color: #b9d5e8;
  font-weight: 700;
  white-space: nowrap;
}

.video-facade-button:hover img {
  opacity: 0.88;
  transform: scale(1.025);
}

.video-facade-button:hover .video-play-mark,
.video-facade-button:focus-visible .video-play-mark {
  box-shadow: 0 18px 50px rgba(17, 156, 255, 0.48);
  transform: translate(-50%, -50%) scale(1.06);
}

.video-showcase-media figcaption,
.article-video-media figcaption,
.video-privacy-note {
  margin-top: 12px;
  color: #61758a;
  font-size: 0.78rem;
}

.article-video-media figcaption a {
  color: var(--blue-dark);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.longform .article-video-media {
  margin: 38px 0 50px;
}

.video-page-hero p {
  max-width: 820px;
}

.video-page-content {
  padding-top: 72px;
  padding-bottom: 110px;
}

.video-page-player {
  max-width: 1000px;
  margin: 0 auto 58px;
}

.video-player-frame {
  border-color: rgba(74, 176, 247, 0.34);
  box-shadow: 0 34px 85px rgba(4, 35, 66, 0.28);
}

.video-page-intro {
  max-width: 820px;
  margin: 0 auto 48px;
}

.video-page-intro > p,
.video-chapter p,
.video-expectation p {
  color: #4f6478;
  font-size: 1.01rem;
}

.video-chapter-nav {
  max-width: 1000px;
  padding: 30px;
  margin: 0 auto 58px;
  border: 1px solid #bdd5e5;
  border-radius: 22px;
  background: #f7fbfe;
  box-shadow: var(--shadow-sm);
}

.video-chapter-nav h2 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.video-chapter-nav > p {
  margin-bottom: 20px;
  color: #657a8e;
}

.video-chapter-nav ol {
  display: grid;
  gap: 10px 30px;
  padding-left: 24px;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-chapter-nav a {
  color: #075fa9;
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(7, 95, 169, 0.25);
  text-underline-offset: 3px;
}

.video-chapter-grid {
  display: grid;
  max-width: 1000px;
  margin: 0 auto;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-chapter {
  min-height: 260px;
  padding: 30px;
  border: 1px solid #c2d8e6;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(17, 156, 255, 0.075), transparent 34%),
    #f7fbfe;
}

.video-chapter-number {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  place-items: center;
  color: #fff;
  background: var(--blue-dark);
  border-radius: 11px;
  font-size: 0.75rem;
  font-weight: 850;
}

.video-chapter h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.video-chapter p {
  margin-bottom: 0;
}

.video-expectation {
  max-width: 1000px;
  padding: 38px;
  margin: 58px auto 0;
  border-left: 4px solid var(--cyan);
  border-radius: 0 22px 22px 0;
  color: #edf8ff;
  background: linear-gradient(145deg, #092845, #041523);
}

.video-expectation h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.video-expectation p,
.video-expectation li {
  color: #adc4d7;
}

.video-expectation ul {
  margin-bottom: 0;
}

.video-page-cta {
  display: flex;
  max-width: 1000px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 38px;
  margin: 24px auto 0;
  border: 1px solid rgba(57, 181, 255, 0.28);
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(120deg, #0870ca, #075495);
  box-shadow: 0 26px 62px rgba(6, 84, 149, 0.24);
}

.video-page-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.video-page-cta p {
  max-width: 620px;
  margin-bottom: 0;
  color: #d2ecfb;
}

.video-page-cta .button {
  flex: 0 0 auto;
}

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

  .video-showcase-copy {
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  .video-showcase {
    padding-top: 76px;
    padding-bottom: 80px;
  }

  .video-showcase-grid {
    gap: 34px;
  }

  .video-showcase-copy .button {
    width: 100%;
  }

  .video-facade,
  .video-player-frame {
    border-radius: 16px;
  }

  .video-play-mark {
    width: 62px;
    height: 62px;
  }

  .video-play-copy {
    right: 16px;
    bottom: 14px;
    left: 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
  }

  .video-play-copy small {
    font-size: 0.72rem;
  }

  .video-page-content {
    padding-top: 48px;
    padding-bottom: 82px;
  }

  .video-page-player,
  .video-page-intro,
  .video-chapter-nav {
    margin-bottom: 38px;
  }

  .video-chapter-nav,
  .video-chapter,
  .video-expectation,
  .video-page-cta {
    padding: 24px;
  }

  .video-chapter-nav ol,
  .video-chapter-grid {
    grid-template-columns: 1fr;
  }

  .video-chapter {
    min-height: 0;
  }

  .video-page-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .video-page-cta .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-facade-button img,
  .video-play-mark {
    transition: none;
  }
}

/* Home conversion pass — 2026-08-20 */
.home-page .video-showcase {
  padding-top: 88px;
  padding-bottom: 88px;
}

.video-facade-button picture {
  display: contents;
}

.steps-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 36px;
}

.steps-grid-compact .step-card {
  min-height: 218px;
}

.steps-grid-compact .step-index {
  margin-bottom: 34px;
}

.home-page .credit-explainer {
  padding: 34px;
}

.feature-grid-compact .feature-card {
  min-height: 260px;
}

.checkout-context {
  display: flex;
  max-width: 840px;
  align-items: flex-start;
  gap: 9px;
  padding: 14px 18px;
  margin: -24px auto 36px;
  color: #9fb7ca;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(122, 192, 238, 0.18);
  border-radius: 13px;
  font-size: 0.75rem;
}

.checkout-context strong {
  flex: 0 0 auto;
  color: #d9effb;
}

.pricing-followup {
  max-width: 780px;
  margin: 16px auto 0;
  color: #8098ac;
  font-size: 0.76rem;
  text-align: center;
}

.pricing-followup a {
  color: #82d4ff;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 901px) {
  .home-page .hero {
    min-height: 700px;
    padding-top: calc(var(--header-height) + 52px);
    padding-bottom: 68px;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(2.55rem, 4.4vw, 4.15rem);
  }

  .home-page .hero-lead {
    margin-bottom: 26px;
    font-size: clamp(1rem, 1.32vw, 1.16rem);
  }

  .home-page .hero-actions {
    margin-bottom: 23px;
  }
}

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

@media (max-width: 680px) {
  .home-page .panel-visual {
    display: none;
  }

  .home-page .video-showcase {
    padding-top: 72px;
    padding-bottom: 74px;
  }

  .steps-grid-compact {
    grid-template-columns: 1fr;
  }

  .steps-grid-compact .step-card,
  .feature-grid-compact .feature-card {
    min-height: 230px;
  }

  .home-page .credit-explainer {
    padding: 26px 20px;
  }

  .checkout-context {
    flex-direction: column;
    gap: 3px;
    margin-top: -12px;
    margin-bottom: 30px;
  }
}
