﻿:root {
  --public-navy: #091427;
  --public-blue: #0d63f3;
  --public-blue-dark: #0948b4;
  --public-cyan: #18c3c8;
  --public-green: #19b56a;
  --public-gold: #f59e0b;
  --public-surface: #f5f8ff;
  --public-text: #10203a;
  --public-muted: #5e6c84;
  --public-border: #dce5f3;
}

/* Home hero — interactive architectural model */
.home-page .home-hero-stage {
  grid-template-columns: minmax(0, 0.9fr) minmax(35rem, 1.1fr);
  gap: clamp(1rem, 3vw, 3.5rem);
}

.home-hero-visual {
  position: relative;
  min-width: 0;
  min-height: clamp(34rem, 68vh, 46rem);
  margin-right: clamp(-5rem, -5vw, -1rem);
}

.home-hero-visual::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 12% 3% 8%;
  border-radius: 50%;
  background: rgba(12, 59, 53, 0.12);
  filter: blur(74px);
  transform: translate3d(3%, 8%, 0) scale(0.9);
  pointer-events: none;
}

.home-hero-3d {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 2rem;
  isolation: isolate;
  cursor: default;
}

.home-hero-3d canvas {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 500ms ease;
  outline: none;
}

.home-hero-3d.is-ready canvas {
  opacity: 1;
}

.home-hero-3d-fallback {
  position: absolute;
  z-index: 1;
  inset: 8%;
  display: grid;
  place-items: center;
  opacity: 1;
  transition: opacity 350ms ease;
}

.home-hero-3d.is-ready .home-hero-3d-fallback {
  opacity: 0;
  pointer-events: none;
}

.home-hero-3d-fallback img {
  width: min(100%, 44rem);
  max-height: 100%;
  object-fit: contain;
  border: 1px solid rgba(7, 26, 50, 0.08);
  border-radius: 1.25rem;
  box-shadow: 0 28px 64px rgba(7, 26, 50, 0.14);
  transform: rotate(1deg);
}

.home-hero-3d-key {
  position: absolute;
  z-index: 4;
  right: clamp(1rem, 5vw, 5rem);
  bottom: clamp(1rem, 4vh, 2.75rem);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.65rem 0.8rem;
  color: #53655f;
  border: 1px solid rgba(12, 59, 53, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(12, 59, 53, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.home-hero-3d-key span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.home-hero-3d-key i {
  width: 0.54rem;
  height: 0.54rem;
  display: inline-block;
  border-radius: 2px;
  transform: rotate(45deg);
}

.home-hero-3d-key .is-available {
  border: 1px solid #c8cfcc;
  background: #f4f6f5;
}
.home-hero-3d-key .is-sold { background: #8fcbea; }
.home-hero-3d-key .is-overdue { background: #d93f49; }

@media (max-width: 1199px) {
  .home-page .home-hero-stage {
    grid-template-columns: minmax(0, 0.95fr) minmax(29rem, 1.05fr);
  }

  .home-hero-visual {
    min-height: 34rem;
    margin-right: -2rem;
  }
}

@media (max-width: 991px) {
  .home-page .home-hero-stage {
    grid-template-columns: 1fr;
  }

  .home-hero-visual {
    width: min(100%, 48rem);
    min-height: 32rem;
    margin: -1rem auto 0;
  }
}

@media (max-width: 767px) {
  .home-hero-visual {
    min-height: 24rem;
    margin-top: -0.5rem;
  }

  .home-hero-3d {
    border-radius: 1.25rem;
  }

  .home-hero-3d-key {
    right: 50%;
    bottom: 0.25rem;
    gap: 0.55rem;
    padding: 0.55rem 0.7rem;
    font-size: 0.56rem;
    transform: translateX(50%);
  }

  .home-hero-visual::before {
    inset: 16% 0 5%;
    filter: blur(42px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-3d canvas,
  .home-hero-3d-fallback {
    transition: none;
  }
}

body.public-site {
  margin: 0;
  padding: 0;
  color: var(--public-text);
  background: #ffffff;
}

.public-site * {
  font-family: 'Nunito Sans', sans-serif;
}

.public-site .material-symbols-outlined {
  font-family: 'Material Symbols Outlined' !important;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}

.public-navbar {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 99, 243, 0.08);
}

.public-navbar .nav-link {
  color: var(--public-muted);
  font-weight: 700;
}

.public-navbar .nav-link.active,
.public-navbar .nav-link:hover {
  color: var(--public-blue);
}

.public-navbar .btn-public-primary,
.public-navbar .btn-public-secondary {
  width: auto;
  height: 3.35rem;
  min-height: 3.35rem;
  padding-top: 0;
  padding-bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
}

.public-logo {
  color: var(--public-text);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.public-logo span {
  color: var(--public-blue);
}

.btn-public-primary {
  background: linear-gradient(135deg, var(--public-blue), var(--public-cyan));
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  padding: 0.95rem 1.7rem;
  box-shadow: 0 14px 30px rgba(13, 99, 243, 0.22);
}

.btn-public-primary:hover {
  color: #fff;
  transform: translateY(-1px);
}

.btn-public-secondary {
  background: #fff;
  color: var(--public-blue);
  border: 1px solid rgba(13, 99, 243, 0.14);
  border-radius: 999px;
  font-weight: 800;
  padding: 0.95rem 1.7rem;
}

.public-hero {
  background:
    radial-gradient(circle at top right, rgba(24, 195, 200, 0.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(13, 99, 243, 0.18), transparent 32%),
    linear-gradient(145deg, #07101f 0%, #10244a 52%, #12326e 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.public-hero-soft {
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.home-hero-photo {
  position: relative;
  overflow: hidden;
}

.home-hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.home-hero-copy {
  padding-right: 1rem;
}

.home-hero-collage {
  position: relative;
  min-height: 620px;
}

.hero-collage-back {
  position: absolute;
  top: 0;
  right: 0;
  width: 86%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(9, 20, 39, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-collage-front {
  position: absolute;
  left: 0;
  bottom: 6%;
  width: 52%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(9, 20, 39, 0.22);
  border: 4px solid #fff;
  z-index: 2;
}

.hero-collage-img {
  width: 100%;
  display: block;
}

.hero-collage-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 15rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--public-navy);
  border-radius: 16px;
  padding: 0.7rem 1rem;
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1.3;
  box-shadow: 0 16px 34px rgba(9, 20, 39, 0.16);
  backdrop-filter: blur(8px);
}

.hero-collage-badge .material-symbols-outlined {
  color: var(--public-blue);
  font-size: 1.3rem;
  flex: none;
}

.hero-collage-badge-flow {
  left: 2%;
  top: 2%;
}

.hero-collage-badge-pix {
  right: 4%;
  bottom: 2%;
}

.hero-inline-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.hero-inline-points li {
  position: relative;
  padding-left: 1rem;
  color: var(--public-muted);
  font-weight: 700;
}

.hero-inline-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--public-blue), var(--public-cyan));
}

.hero-tag,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-tag {
  background: rgba(24, 195, 200, 0.12);
  color: #8ceef0;
  border: 1px solid rgba(24, 195, 200, 0.2);
}

.section-tag {
  background: #e7f0ff;
  color: var(--public-blue);
}

.hero-title,
.page-title,
.section-title {
  letter-spacing: -0.04em;
  font-weight: 900;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.05;
}

.hero-title .text-gradient,
.page-title .text-gradient,
.section-title .text-gradient {
  background: linear-gradient(135deg, #7fe8ea 0%, #a7f3d0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  padding-bottom: 0.08em;
  white-space: normal;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.76);
}

.hero-panel,
.glass-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  backdrop-filter: blur(14px);
}

.metric-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1rem 1.1rem;
}

.metric-chip strong {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
}

.metric-chip span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
}

.surface-section {
  background: var(--public-surface);
}

.public-card {
  background: #fff;
  border: 1px solid var(--public-border);
  border-radius: 24px;
  padding: 1.7rem;
  height: 100%;
  box-shadow: 0 12px 32px rgba(9, 20, 39, 0.04);
}

.public-card h3,
.public-card h4,
.public-card h5 {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.public-card p,
.public-card li,
.public-copy {
  color: var(--public-muted);
  line-height: 1.7;
}

.icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-title {
  font-size: clamp(2.3rem, 5vw, 4rem);
  color: var(--public-navy);
}

.page-lead {
  color: var(--public-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.value-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.value-list .material-symbols-outlined {
  color: var(--public-green);
  font-size: 1.15rem;
  margin-top: 0.1rem;
}

.journey-step {
  position: relative;
  padding-left: 4.4rem;
  margin-bottom: 1.8rem;
}

.journey-step:last-child {
  margin-bottom: 0;
}

.journey-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--public-blue), var(--public-cyan));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.highlight-item {
  background: #fff;
  border: 1px solid var(--public-border);
  border-radius: 20px;
  padding: 1.25rem;
}

.highlight-item strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--public-navy);
}

.problem-solution-shell {
  background:
    linear-gradient(rgba(13, 99, 243, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 99, 243, 0.05) 1px, transparent 1px);
  background-size: 96px 96px;
  border-radius: 32px;
  padding: 1.5rem;
}

.comparison-panel {
  border-radius: 28px;
  padding: 1.8rem;
  height: 100%;
}

.comparison-panel-problem {
  background: linear-gradient(180deg, #fff7f7 0%, #fffdfd 100%);
  border: 1px solid #ffd7d7;
}

.comparison-panel-solution {
  background: linear-gradient(180deg, #f3fff8 0%, #fcfffd 100%);
  border: 1px solid #d0f2dd;
}

.comparison-label {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-panel-problem .comparison-label {
  color: #ef4444;
}

.comparison-panel-solution .comparison-label {
  color: #16a34a;
}

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

.comparison-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--public-text);
  font-size: 1.08rem;
  line-height: 1.65;
}

.comparison-list li:last-child {
  margin-bottom: 0;
}

.comparison-icon {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 900;
  font-family: 'Nunito Sans', sans-serif;
  margin-top: 0.05rem;
}

.comparison-icon-problem {
  background: #ef4444;
  color: #fff;
}

.comparison-icon-solution {
  background: #4ade80;
  color: #fff;
}

.ps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.1rem;
  padding: 1.1rem 0.5rem;
  border-bottom: 1px dashed var(--public-border);
}

.ps-row:last-child {
  border-bottom: none;
}

.ps-row-head {
  padding-top: 0;
  padding-bottom: 0.75rem;
}

.ps-col {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--public-text);
}

.ps-col-solution {
  justify-content: flex-end;
  text-align: right;
}

.ps-col-solution .comparison-icon {
  order: 2;
}

.ps-arrow {
  margin: auto 0;
  color: var(--public-blue);
  font-size: 1.4rem;
}

.icon-badge .material-symbols-outlined {
  font-size: 1.7rem;
}

.feature-mosaic {
  background:
    linear-gradient(rgba(16, 32, 58, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 58, 0.06) 1px, transparent 1px);
  background-size: 112px 100px;
  border-radius: 32px;
  padding: 2rem 1.25rem;
}

.feature-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-mosaic-item {
  padding: 1rem 1.1rem 1.25rem;
}

.feature-mosaic-icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 16px;
  background: #43be73;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-mosaic-item h4 {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.7rem;
  color: var(--public-navy);
}

.feature-mosaic-item p {
  margin: 0;
  color: var(--public-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.feature-link-card {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  border: 1px solid var(--public-border);
  border-radius: 24px;
  padding: 1.7rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(13, 99, 243, 0.08);
}

.feature-link-card a {
  font-weight: 800;
  color: var(--public-blue);
  text-decoration: none;
}

.public-pricing .pricing-card {
  border: 2px solid #e7edf9;
  border-radius: 28px;
  background: #fff;
  padding: 2rem;
  height: 100%;
  position: relative;
}

.public-pricing .pricing-card.featured {
  border-color: var(--public-blue);
  box-shadow: 0 24px 60px rgba(13, 99, 243, 0.14);
}

.public-pricing .plan-badge-top {
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--public-blue), var(--public-cyan));
  color: #fff;
  border-radius: 999px;
  padding: 0.32rem 1rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.public-pricing .price-num {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--public-navy);
}

.public-pricing .price-period {
  color: var(--public-muted);
}

.pricing-page .public-pricing {
  position: relative;
  min-height: calc(100vh - 5rem);
  padding: clamp(5rem, 9vw, 8rem) 0 !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(22, 94, 232, 0.1), transparent 30rem),
    linear-gradient(rgba(7, 26, 50, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 50, 0.035) 1px, transparent 1px),
    #f7f9fc !important;
  background-size: auto, 72px 72px, 72px 72px, auto !important;
}

.pricing-page .public-pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(86rem, calc(100% - 2rem));
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--public-blue) 28%, var(--public-cyan) 72%, transparent);
  transform: translateX(-50%);
}

.pricing-page .public-pricing > .container {
  position: relative;
  z-index: 1;
}

.pricing-page .public-pricing .section-title,
.pricing-page .public-pricing .pricing-card h4 {
  font-family: 'Sora', 'Nunito Sans', sans-serif;
}

.pricing-page .public-pricing .section-title {
  color: var(--public-navy);
  font-size: clamp(2.4rem, 5vw, 4.35rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

@media (max-width: 767px) {
  .pricing-page .public-pricing {
    padding: 4rem 0 !important;
  }
}

.plan-feature {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.plan-feature .check {
  color: var(--public-green);
}

.plan-feature .miss {
  color: #c6cfdd;
}

.plan-feature.disabled {
  color: #97a5ba;
}

.cta-ribbon {
  background: linear-gradient(135deg, var(--public-blue), #2577f8 55%, var(--public-cyan));
  color: #fff;
  border-radius: 32px;
}

.contact-shell {
  background: linear-gradient(145deg, #07101f 0%, #12224a 100%);
}

.contact-panel {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info,
.contact-form-wrap {
  padding: 2.2rem;
}

.contact-info {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.03);
}

.contact-form-wrap label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.contact-form-wrap .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 16px;
  padding: 0.95rem 1rem;
}

.contact-form-wrap .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form-wrap .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(24, 195, 200, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(24, 195, 200, 0.12);
}

.contact-note {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.public-footer {
  background: #050b17;
  color: rgba(255, 255, 255, 0.68);
}

.public-footer a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

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

.seo-copy p {
  color: var(--public-muted);
  line-height: 1.85;
}

.table-compare td,
.table-compare th {
  padding: 1rem;
  border-color: var(--public-border);
}

.table-compare thead th {
  color: var(--public-navy);
  font-weight: 900;
}

@media (max-width: 991px) {
  .public-navbar .navbar-collapse {
    background: #fff;
    border-radius: 20px;
    padding: 1rem;
    margin-top: 1rem;
    border: 1px solid var(--public-border);
  }

  .public-navbar .btn-public-primary,
  .public-navbar .btn-public-secondary {
    width: 100%;
  }

  .hero-title {
    font-size: 2.6rem;
  }

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

  .home-hero-collage {
    min-height: 520px;
  }

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

@media (max-width: 767px) {
  .problem-solution-shell,
  .feature-mosaic {
    padding: 1rem;
    background-size: 72px 72px;
  }

  .feature-mosaic-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-mosaic-item {
    padding: 0.75rem;
  }

  .comparison-list li {
    font-size: 1rem;
  }

  .ps-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    text-align: left;
  }

  .ps-col-solution {
    justify-content: flex-start;
    text-align: left;
  }

  .ps-col-solution .comparison-icon {
    order: 0;
  }

  .ps-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .ps-row-head {
    display: none;
  }

  .home-hero-copy {
    padding-right: 0;
  }

  .home-hero-collage {
    min-height: 420px;
  }

  .hero-collage-back {
    width: 92%;
  }

  .hero-collage-front {
    width: 62%;
  }

  .hero-collage-badge {
    max-width: 11rem;
    font-size: 0.72rem;
    padding: 0.5rem 0.7rem;
    gap: 0.4rem;
  }

  .hero-collage-badge .material-symbols-outlined {
    font-size: 1.05rem;
  }
}

/* Home page: operational map direction */
.home-page {
  --home-ink: #071a32;
  --home-blue: #165ee8;
  --home-purple: #6702b4;
  --home-cyan: #18aeb5;
  --home-mint: #bbf3df;
  --home-sand: #f2a365;
  --home-paper: #f7f9fc;
  --home-line: #dbe4ef;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page .home-route-stop strong {
  font-family: 'Sora', 'Nunito Sans', sans-serif;
}

.home-page main {
  /* A scroll story uses position: sticky several levels below this element.
     Any overflow other than visible here turns main into its containing block
     and makes the fullscreen scene leave the viewport before the story ends. */
  overflow: visible;
}

.home-page .public-navbar {
  border-bottom-color: rgba(7, 26, 50, 0.08);
  box-shadow: 0 6px 24px rgba(7, 26, 50, 0.04);
}

.home-page .btn-public-primary,
.home-page .btn-public-secondary {
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-page .btn-public-primary {
  background: var(--home-blue);
  box-shadow: 0 16px 34px rgba(22, 94, 232, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.home-page .btn-public-primary:hover {
  background: #0d4dca;
  box-shadow: 0 20px 38px rgba(22, 94, 232, 0.3);
}

.home-page .btn-public-primary .material-symbols-outlined {
  margin-left: 0.55rem;
  font-size: 1.1rem;
}

.home-page a:focus-visible,
.home-page button:focus-visible {
  outline: 3px solid rgba(24, 174, 181, 0.42);
  outline-offset: 4px;
}

.home-page .home-hero-photo {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 84% 18%, rgba(24, 174, 181, 0.13), transparent 26rem),
    linear-gradient(135deg, #ffffff 0%, #f6f9fd 56%, #eef5fb 100%);
}

.home-map-grid {
  position: absolute;
  inset: 0 0 0 51%;
  opacity: 0.58;
  background-image:
    linear-gradient(rgba(7, 26, 50, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 50, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 24%, #000);
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000);
}

.home-map-grid::after {
  content: '';
  position: absolute;
  width: 16rem;
  height: 10rem;
  right: 5%;
  bottom: 7%;
  border: 2px solid rgba(22, 94, 232, 0.14);
  transform: skew(-14deg) rotate(-6deg);
}

.home-hero-container {
  position: relative;
  z-index: 1;
  padding-top: clamp(4rem, 8vh, 7rem);
  padding-bottom: clamp(4rem, 8vh, 7rem);
}

.home-page .home-hero-stage {
  grid-template-columns: minmax(0, 0.88fr) minmax(34rem, 1.12fr);
  gap: clamp(2rem, 5vw, 5.5rem);
}

.home-page .home-hero-copy {
  max-width: 42rem;
  padding-right: 0;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  color: #3e536f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.home-kicker-dot {
  width: 0.62rem;
  height: 0.62rem;
  display: inline-block;
  border-radius: 2px;
  background: var(--home-sand);
  transform: rotate(45deg);
}

.home-page .page-title {
  max-width: 44rem;
  margin: 0 0 1.65rem;
  color: var(--home-ink);
  font-size: clamp(3rem, 5.4vw, 5.35rem);
  line-height: 0.99;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.home-page .page-title span {
  color: var(--home-blue);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.home-hero-benefits {
  display: grid;
  gap: 0.7rem;
  max-width: 38rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  color: #52647c;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.4;
}

.home-hero-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-hero-benefits .material-symbols-outlined {
  flex: 0 0 auto;
  width: 1.45rem;
  height: 1.45rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--home-purple);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-bottom: 2.5rem;
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--home-ink);
  font-weight: 900;
  text-decoration: none;
}

.home-text-link .material-symbols-outlined {
  color: var(--home-blue);
  font-size: 1.1rem;
}

.home-page .home-hero-collage {
  min-height: 36rem;
}

.home-page .hero-collage-back {
  top: 8%;
  width: 90%;
  border: 1px solid rgba(7, 26, 50, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 32px 70px rgba(7, 26, 50, 0.17);
}

.home-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.36rem;
  min-height: 2.45rem;
  padding: 0 0.85rem;
  border-bottom: 1px solid #e6ebf2;
  color: #7a8799;
  font-size: 0.68rem;
  font-weight: 800;
}

.home-browser-bar i {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #d8dee8;
}

.home-browser-bar i:first-child {
  background: #f2a365;
}

.home-browser-bar span {
  margin-left: 0.45rem;
}

.home-page .hero-collage-front {
  left: -3%;
  bottom: 1%;
  width: 49%;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(7, 26, 50, 0.22);
}

.home-collage-label {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 5%;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.6rem 0.9rem;
  background: var(--home-ink);
  color: #fff;
  border-radius: 8px;
  font-size: 0.66rem;
  box-shadow: 0 12px 28px rgba(7, 26, 50, 0.16);
}

.home-collage-label span {
  color: #9fb0c6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-page .hero-collage-badge {
  border: 1px solid rgba(7, 26, 50, 0.1);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font-size: 0.78rem;
  box-shadow: 0 14px 34px rgba(7, 26, 50, 0.14);
}

.home-page .hero-collage-badge span:not(.material-symbols-outlined) {
  display: flex;
  flex-direction: column;
}

.home-page .hero-collage-badge small {
  margin-bottom: 0.1rem;
  color: #7d8ba0;
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-page .hero-collage-badge-flow {
  left: auto;
  right: 1%;
  top: 66%;
}

.home-page .hero-collage-badge-pix {
  right: 26%;
  bottom: -5%;
}

.home-integrations {
  padding: clamp(2.5rem, 5vh, 4rem) 0 0;
  background: transparent;
}

.home-integrations-title {
  margin: 0 0 1.75rem;
  color: #7d8ba0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.home-integrations-list {
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 7vw, 8rem);
}

.home-integration-logo {
  min-width: 0;
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-integration-logo img {
  width: auto;
  max-width: min(100%, 9.5rem);
  height: auto;
  max-height: 2.75rem;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.34;
}

.home-partners {
  padding: 2.25rem 0;
  border-top: 1px solid rgba(7, 26, 50, 0.08);
  background: #fff;
}

.home-partners-layout {
  display: grid;
  grid-template-columns: minmax(10rem, 0.55fr) minmax(0, 2.45fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: center;
}

.home-partners-heading span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--home-blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-partners-heading h2 {
  max-width: 13rem;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.home-partners-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-partner {
  min-width: 0;
  min-height: 4.75rem;
  display: grid;
  grid-template-columns: 3.75rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: 0 1.35rem;
  border-left: 1px solid var(--home-line);
}

.home-partner-mark {
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 50, 0.08);
  border-radius: 0.75rem;
  background: #f5f7fa;
}

.home-partner-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-partner-monogram {
  color: #fff;
  border-color: transparent;
  background: var(--home-ink);
  font-family: 'Sora', 'Nunito Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-partner h3 {
  margin: 0 0 0.3rem;
  color: var(--home-ink);
  font-size: 0.78rem;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.home-partner p {
  margin: 0;
  color: #7d8ba0;
  font-size: 0.7rem;
  line-height: 1.35;
}

.home-operating-map {
  position: relative;
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--home-ink);
  background-size: 80px 80px;
}

.home-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.6fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: 4rem;
}

.home-section-heading .section-title {
  max-width: 48rem;
  margin: 0;
  color: #fff;
  font-size: clamp(2.35rem, 4.3vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.home-section-heading > p {
  margin: 0;
  color: #aab8ca;
  font-size: 1.02rem;
  line-height: 1.75;
}

.home-kicker-light {
  color: #aab8ca;
}

.home-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.home-route::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: -1px;
  left: -1px;
  width: 20%;
  height: 3px;
  background: var(--home-sand);
}

.home-route-stop {
  position: relative;
  min-height: 21rem;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  color: #fff;
  background: rgba(7, 26, 50, 0.96);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.home-route-stop:hover {
  z-index: 3;
  color: #fff;
  background: #0d294b;
  transform: translateY(-5px);
}

.home-route-index {
  color: #7d8da3;
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.home-route-icon {
  width: 3.6rem;
  height: 3.6rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 3.5rem 0 2rem;
  color: var(--home-ink);
  background: var(--home-mint);
  border-radius: 6px 18px 6px 6px;
}

.home-route-stop:nth-child(2) .home-route-icon {
  background: #d8e4ff;
}

.home-route-stop:nth-child(3) .home-route-icon {
  background: #ffe0c7;
}

.home-route-stop:nth-child(4) .home-route-icon {
  background: #ddd8ff;
}

.home-route-stop:nth-child(5) .home-route-icon {
  background: #cceef0;
}

.home-route-stop strong {
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.home-route-stop small {
  color: #9dacbf;
  font-size: 0.88rem;
  line-height: 1.6;
}

.home-contract-automation {
  position: relative;
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  background:
    radial-gradient(circle at 8% 15%, rgba(187, 243, 223, 0.48), transparent 25rem),
    linear-gradient(135deg, #f8fbff 0%, #eef4fb 100%);
}

.home-contract-automation::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(22, 94, 232, 0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 42%);
  mask-image: linear-gradient(90deg, #000, transparent 42%);
  pointer-events: none;
}

.home-contract-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(32rem, 1.1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.home-contract-copy .section-title {
  max-width: 40rem;
  margin-bottom: 1.5rem;
  color: var(--home-ink);
  font-size: clamp(2.35rem, 4vw, 3.75rem);
  line-height: 1.07;
  letter-spacing: -0.06em;
}

.home-contract-copy > .public-copy {
  max-width: 40rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.home-contract-benefits {
  display: grid;
  gap: 1rem;
  margin: 0 0 2.1rem;
  padding: 0;
  list-style: none;
}

.home-contract-benefits li {
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  color: var(--public-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.home-contract-benefits li > .material-symbols-outlined {
  width: 2.7rem;
  height: 2.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--home-blue);
  background: #fff;
  border: 1px solid #dce6f2;
  border-radius: 9px 15px 9px 9px;
  box-shadow: 0 8px 20px rgba(7, 26, 50, 0.06);
  font-size: 1.25rem;
}

.home-contract-benefits strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--home-ink);
  font-family: 'Sora', 'Nunito Sans', sans-serif;
  font-size: 0.92rem;
}

.home-contract-machine {
  position: relative;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--home-ink);
  background-size: 38px 38px;
  box-shadow: 0 36px 80px rgba(7, 26, 50, 0.22);
}

.home-contract-machine::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 45%;
  height: 35%;
  right: -6%;
  bottom: -8%;
  border-radius: 50%;
  background: rgba(22, 94, 232, 0.3);
  filter: blur(45px);
}

.home-contract-machine-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  color: #9dacbf;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-machine-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--home-mint);
}

.home-machine-status i {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #47d59f;
  box-shadow: 0 0 0 5px rgba(71, 213, 159, 0.12);
}

.home-operation-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.home-operation-option {
  min-height: 7.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
}

.home-operation-option > .material-symbols-outlined {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 13px 8px 8px;
  color: var(--home-ink);
  background: var(--home-mint);
  font-size: 1.2rem;
}

.home-operation-option.is-assignment > .material-symbols-outlined {
  background: #d8e4ff;
}

.home-operation-option.is-termination > .material-symbols-outlined {
  background: #ffe0c7;
}

.home-operation-option small,
.home-operation-option strong {
  display: block;
}

.home-operation-option small {
  margin-bottom: 0.18rem;
  color: #8fa0b7;
  font-size: 0.68rem;
}

.home-operation-option strong {
  font-family: 'Sora', 'Nunito Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.2;
}

.home-contract-connector {
  position: relative;
  width: 1px;
  height: 2.2rem;
  margin: 0 auto;
  background: rgba(187, 243, 223, 0.36);
}

.home-contract-connector::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1px solid var(--home-mint);
  border-bottom: 1px solid var(--home-mint);
  transform: translateX(-50%) rotate(45deg);
}

.home-contract-connector-short {
  height: 1.65rem;
}

.home-contract-engine {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  max-width: 29rem;
  margin: 0 auto;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(187, 243, 223, 0.28);
  border-radius: 13px;
  background: rgba(187, 243, 223, 0.09);
}

.home-contract-engine > .material-symbols-outlined {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--home-ink);
  background: var(--home-mint);
}

.home-contract-engine small,
.home-contract-engine strong {
  display: block;
}

.home-contract-engine small {
  margin-bottom: 0.25rem;
  color: #91a2b8;
  font-size: 0.66rem;
}

.home-contract-engine strong {
  font-family: 'Sora', 'Nunito Sans', sans-serif;
  font-size: 0.82rem;
  line-height: 1.35;
}

.home-contract-output {
  position: relative;
  display: grid;
  grid-template-columns: 5.2rem minmax(0, 1fr) auto;
  gap: 1.1rem;
  align-items: center;
  max-width: 31rem;
  margin: 0 auto;
  padding: 1rem;
  border-radius: 14px;
  color: var(--home-ink);
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.home-contract-paper {
  height: 6.5rem;
  padding: 0.65rem;
  border: 1px solid #d8e2ef;
  border-radius: 5px;
  background: #f7f9fc;
  box-shadow: 0 8px 18px rgba(7, 26, 50, 0.1);
  transform: rotate(-3deg);
}

.home-paper-heading {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  margin-bottom: 0.65rem;
}

.home-paper-heading .material-symbols-outlined {
  color: var(--home-blue);
  font-size: 0.75rem;
}

.home-paper-heading i,
.home-contract-paper > span,
.home-paper-signatures i {
  display: block;
  height: 3px;
  border-radius: 99px;
  background: #cbd6e4;
}

.home-paper-heading i {
  width: 65%;
  background: #7e91a9;
}

.home-contract-paper > span {
  width: 100%;
  margin-bottom: 0.35rem;
}

.home-contract-paper > span.short {
  width: 72%;
}

.home-paper-signatures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.home-contract-ready small,
.home-contract-ready strong,
.home-contract-ready > span {
  display: block;
}

.home-contract-ready small {
  margin-bottom: 0.2rem;
  color: #6f8198;
  font-size: 0.68rem;
}

.home-contract-ready strong {
  margin-bottom: 0.45rem;
  font-family: 'Sora', 'Nunito Sans', sans-serif;
  font-size: 1.05rem;
}

.home-contract-ready > span {
  color: var(--home-blue);
  font-size: 0.75rem;
  font-weight: 900;
}

.home-contract-ready .material-symbols-outlined {
  margin-right: 0.2rem;
  font-size: 0.95rem;
  vertical-align: -0.2rem;
}

.home-contract-check {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--home-ink);
  background: var(--home-mint);
  font-weight: 900;
}

.home-feature-section,
.home-implementation {
  padding: clamp(5.5rem, 9vw, 8rem) 0;
}

.home-feature-tint {
  background: #f2f6fa;
}

.home-map-section {
  position: relative;
  background:
    linear-gradient(rgba(22, 94, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 94, 232, 0.04) 1px, transparent 1px),
    #f7f9fc;
  background-size: 64px 64px;
}

.home-section-number {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--home-blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.home-page .home-feature-section .section-title,
.home-page .home-implementation .section-title {
  color: var(--home-ink);
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.home-product-frame {
  position: relative;
  padding: 1.25rem;
  border: 1px solid #dce4ed;
  border-radius: 22px;
  background: #f7f9fb;
  box-shadow: 0 28px 65px rgba(7, 26, 50, 0.1);
}

.home-product-frame::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0.75rem;
  border: 1px dashed rgba(22, 94, 232, 0.16);
  border-radius: 15px;
  pointer-events: none;
}

.home-product-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(7, 26, 50, 0.12);
}

.home-product-frame p {
  position: relative;
  z-index: 1;
  margin: 1rem 0 0;
  padding: 0 0.2rem;
  color: #65758c;
  font-size: 0.8rem;
  line-height: 1.55;
}

.home-frame-label {
  position: absolute;
  z-index: 3;
  top: -1.1rem;
  right: 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  color: #fff;
  background: var(--home-ink);
  border-radius: 7px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-frame-label .material-symbols-outlined {
  color: var(--home-mint);
  font-size: 1rem;
}

.home-product-frame-dark {
  background: var(--home-ink);
  border-color: var(--home-ink);
}

.home-product-frame-dark p {
  color: #a6b4c7;
}

.home-product-frame-dark .home-frame-label {
  color: var(--home-ink);
  background: var(--home-mint);
}

.home-product-frame-dark .home-frame-label .material-symbols-outlined {
  color: var(--home-ink);
}

.home-map-frame {
  background: #eaf1f8;
}

.home-section-heading-light .section-title {
  color: var(--home-ink);
}

.home-section-heading-light > p {
  color: var(--public-muted);
}

.home-page .highlight-item {
  border-radius: 10px;
  box-shadow: none;
}

.home-page .highlight-item strong {
  font-size: 1.08rem;
}

.home-journey-card {
  padding: 2rem;
  border: 1px solid var(--home-line);
  border-radius: 20px;
  background: var(--home-paper);
}

.home-page .journey-step {
  margin-bottom: 0;
  padding: 0 0 2rem 4.2rem;
}

.home-page .journey-step:last-child {
  padding-bottom: 0;
}

.home-page .journey-step::after {
  content: '';
  position: absolute;
  top: 3rem;
  bottom: 0;
  left: 1.48rem;
  width: 1px;
  background: #ccd7e5;
}

.home-page .journey-step:last-child::after {
  display: none;
}

.home-page .journey-step::before {
  border-radius: 6px 15px 6px 6px;
  background: var(--home-ink);
  box-shadow: none;
}

.home-page .journey-step h5 {
  color: var(--home-ink);
  font-weight: 900;
}

.home-page .journey-step p {
  color: var(--public-muted);
  line-height: 1.65;
}

.home-cta-section {
  padding: 2rem 0 clamp(5.5rem, 9vw, 8rem);
}

.home-cta-ribbon {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4.2rem);
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.06) 50%, transparent 50.2%),
    var(--home-blue);
}

.home-cta-ribbon::after {
  content: '';
  position: absolute;
  width: 14rem;
  height: 14rem;
  right: -7rem;
  bottom: -9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: rotate(22deg);
}

.home-cta-label {
  align-self: start;
  color: #cbdcff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.home-cta-ribbon h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.home-cta-ribbon p {
  max-width: 42rem;
  margin: 0;
  color: #d9e5ff;
  font-size: 1.02rem;
  line-height: 1.65;
}

.home-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  min-width: 13.5rem;
}

.home-cta-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.home-cta-link:hover {
  color: #fff;
}

.home-cta-link .material-symbols-outlined {
  font-size: 1.05rem;
}

.home-page .accordion-item {
  border: 1px solid var(--home-line) !important;
  border-radius: 12px !important;
  box-shadow: none;
}

.home-page .accordion-button {
  color: var(--home-ink);
  font-weight: 900;
}

.home-page .accordion-button:not(.collapsed) {
  color: var(--home-blue);
  background: #eef4ff;
  box-shadow: none;
}

@media (max-width: 1199px) {
  .home-page .home-hero-stage {
    grid-template-columns: minmax(0, 0.95fr) minmax(29rem, 1.05fr);
    gap: 2rem;
  }

  .home-page .page-title {
    font-size: clamp(3rem, 5vw, 4.25rem);
  }

  .home-page .home-hero-collage {
    min-height: 31rem;
  }

  .home-cta-ribbon {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .home-cta-actions {
    grid-column: 2;
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 991px) {
  .home-page .home-hero-photo {
    min-height: auto;
  }

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

  .home-page .home-hero-copy {
    max-width: 48rem;
  }

  .home-page .home-hero-collage {
    min-height: 36rem;
    max-width: 46rem;
    width: 100%;
    margin: 1rem auto 0;
  }

  .home-map-grid {
    inset: 45% 0 0;
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 25%, #000);
    mask-image: linear-gradient(180deg, transparent, #000 25%, #000);
  }

  .home-section-heading {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .home-section-heading > p {
    max-width: 42rem;
  }

  .home-partners-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-partners-heading h2 {
    max-width: none;
  }

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

  .home-route::before {
    width: 50%;
  }

  .home-route-stop {
    min-height: 19rem;
  }

  .home-contract-layout {
    grid-template-columns: 1fr;
  }

  .home-contract-copy {
    max-width: 44rem;
  }

  .home-contract-machine {
    max-width: 42rem;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .home-hero-container {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .home-integrations {
    padding: 2.5rem 0 0;
  }

  .home-integrations-list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem 1.5rem;
  }

  .home-integration-logo {
    flex: 0 1 calc(33.333% - 1rem);
  }

  .home-integration-logo img {
    max-width: min(100%, 7.5rem);
    max-height: 2.75rem;
  }

  .home-partners {
    padding: 2rem 0;
  }

  .home-partners-list {
    grid-template-columns: 1fr;
  }

  .home-partner {
    min-height: 0;
    padding: 1rem 0;
    border-left: 0;
    border-top: 1px solid var(--home-line);
  }

  .home-page .page-title {
    font-size: clamp(2.65rem, 13vw, 3.7rem);
  }

  .home-page .page-title br {
    display: none;
  }

  .home-page .home-hero-collage {
    min-height: 26rem;
  }

  .home-page .hero-collage-back {
    width: 96%;
  }

  .home-page .hero-collage-front {
    left: 0;
    width: 56%;
  }

  .home-collage-label {
    left: 0;
  }

  .home-page .hero-collage-badge-flow {
    top: 62%;
  }

  .home-page .hero-collage-badge-pix {
    right: 11%;
    bottom: -4%;
  }

  .home-section-heading {
    margin-bottom: 2.5rem;
  }

  .home-route {
    grid-template-columns: 1fr;
  }

  .home-route::before {
    width: 100%;
  }

  .home-route-stop {
    min-height: 0;
    padding: 1.35rem;
  }

  .home-route-icon {
    margin: 2.2rem 0 1.5rem;
  }

  .home-operation-options {
    grid-template-columns: 1fr;
  }

  .home-operation-option {
    min-height: 0;
    display: grid;
    grid-template-columns: 2.25rem 1fr;
    gap: 0.8rem;
    align-items: center;
  }

  .home-contract-output {
    grid-template-columns: 4.2rem minmax(0, 1fr);
  }

  .home-contract-paper {
    height: 5.4rem;
  }

  .home-contract-check {
    position: absolute;
    right: 0.8rem;
    top: 0.8rem;
    width: 1.8rem;
    height: 1.8rem;
    font-size: 1rem;
  }

  .home-product-frame {
    padding: 0.8rem;
    border-radius: 16px;
  }

  .home-frame-label {
    position: relative;
    top: auto;
    right: auto;
    margin: 0 0 0.8rem;
  }

  .home-cta-ribbon {
    grid-template-columns: 1fr;
  }

  .home-cta-label {
    writing-mode: initial;
    transform: none;
  }

  .home-cta-actions {
    grid-column: auto;
    flex-direction: column;
    align-items: stretch;
  }
}

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

/* Marketing lead form */
.marketing-page.marketing-lead-page {
  --solution-accent: #6702b4;
  --solution-accent-dark: #50008d;
  --lead-ink: #151126;
  --lead-muted: #686276;
  --lead-line: #e7e1ec;
  --lead-soft: #f7f2fb;
}

.lead-page-main {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(103, 2, 180, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 2, 180, 0.035) 1px, transparent 1px),
    #fbfafd;
  background-size: 72px 72px;
}

.lead-page-glow {
  position: absolute;
  width: 34rem;
  height: 34rem;
  top: -19rem;
  right: -9rem;
  border-radius: 50%;
  background: rgba(103, 2, 180, 0.1);
  filter: blur(10px);
  pointer-events: none;
}

.lead-page-container {
  position: relative;
  padding-top: clamp(3.5rem, 6vw, 6.5rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

.lead-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(34rem, 1.16fr);
  gap: clamp(3rem, 7vw, 7.5rem);
  align-items: center;
}

.lead-page-intro {
  max-width: 35rem;
}

.lead-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
  color: var(--solution-accent);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lead-page-eyebrow .material-symbols-outlined {
  width: 2rem;
  height: 2rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--solution-accent);
  border-radius: 7px 13px 7px 7px;
  font-size: 1rem;
}

.lead-page-intro h1 {
  max-width: 34rem;
  margin: 0 0 1.4rem;
  color: var(--lead-ink);
  font-size: clamp(2.8rem, 5vw, 4.65rem);
  font-weight: 850;
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.lead-page-intro h1 span {
  color: var(--solution-accent);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.lead-page-subtitle {
  max-width: 32rem;
  margin: 0;
  color: var(--lead-muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.lead-agenda {
  margin-top: 2.35rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--lead-line);
}

.lead-agenda-title {
  margin: 0 0 1rem;
  color: var(--lead-ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lead-agenda ol {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lead-agenda li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.8rem;
  align-items: start;
}

.lead-agenda-marker {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--solution-accent);
  background: #fff;
  border: 1px solid rgba(103, 2, 180, 0.18);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.lead-agenda strong,
.lead-agenda small {
  display: block;
}

.lead-agenda strong {
  margin-bottom: 0.12rem;
  color: var(--lead-ink);
  font-size: 0.92rem;
}

.lead-agenda small {
  color: var(--lead-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.lead-trust-note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1.65rem;
  padding: 0.9rem 1rem;
  color: #5e586b;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--lead-line);
  border-radius: 12px;
  font-size: 0.78rem;
  line-height: 1.5;
}

.lead-trust-note .material-symbols-outlined {
  flex: none;
  margin-top: 0.05rem;
  color: var(--solution-accent);
  font-size: 1.05rem;
}

.lead-trust-note strong {
  color: var(--lead-ink);
}

.lead-form-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #fff;
  border: 1px solid rgba(103, 2, 180, 0.12);
  border-radius: 22px;
  box-shadow: 0 30px 75px rgba(42, 15, 62, 0.12);
}

.lead-form-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 22px 22px 0 0;
  background: var(--solution-accent);
}

.lead-form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.lead-form-heading > div > span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--solution-accent);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form-heading h2 {
  margin: 0;
  color: var(--lead-ink);
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  font-weight: 850;
  letter-spacing: -0.04em;
}

.lead-form-time {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.48rem 0.65rem;
  color: #62596c;
  background: var(--lead-soft);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 800;
}

.lead-form-time .material-symbols-outlined {
  font-size: 0.95rem;
}

.lead-form-intro {
  margin: 0.65rem 0 1.55rem;
  color: var(--lead-muted);
  font-size: 0.9rem;
}

.lead-field label {
  display: block;
  margin-bottom: 0.42rem;
  color: #393243;
  font-size: 0.76rem;
  font-weight: 850;
}

.lead-field label span {
  color: var(--solution-accent);
}

.marketing-lead-page .lead-field .form-control,
.marketing-lead-page .lead-field .form-select {
  min-height: 3.25rem;
  padding: 0.75rem 0.9rem;
  color: var(--lead-ink);
  background-color: #fcfbfd;
  border: 1px solid #dcd5e2;
  border-radius: 10px;
  font-size: 0.88rem;
  box-shadow: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.marketing-lead-page .lead-field .form-control::placeholder {
  color: #9b94a3;
}

.marketing-lead-page .lead-field .form-control:focus,
.marketing-lead-page .lead-field .form-select:focus {
  background-color: #fff;
  border-color: var(--solution-accent);
  box-shadow: 0 0 0 3px rgba(103, 2, 180, 0.1);
}

.lead-field .errorlist,
.lead-consent-wrap .errorlist,
.lead-form-alert .errorlist {
  margin: 0.4rem 0 0;
  padding: 0;
  color: #b42318;
  font-size: 0.74rem;
  font-weight: 700;
  list-style: none;
}

.lead-field:has(.errorlist) .form-control,
.lead-field:has(.errorlist) .form-select {
  border-color: #d92d20;
}

.lead-form-alert {
  margin-bottom: 1rem;
  padding: 0.8rem 0.9rem;
  color: #8f1d16;
  background: #fff1f0;
  border: 1px solid #ffc9c5;
  border-radius: 10px;
}

.lead-consent-wrap {
  margin-top: 0.15rem;
}

.lead-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  padding: 0.85rem 0.9rem 0.85rem 2.3rem;
  background: #faf8fc;
  border: 1px solid var(--lead-line);
  border-radius: 10px;
}

.lead-consent .form-check-input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.12rem;
  margin-left: -1.45rem;
  border-color: #ada4b5;
  box-shadow: none;
}

.lead-consent .form-check-input:checked {
  background-color: var(--solution-accent);
  border-color: var(--solution-accent);
}

.lead-consent .form-check-input:focus-visible {
  outline: 3px solid rgba(103, 2, 180, 0.18);
  outline-offset: 2px;
}

.lead-consent .form-check-label {
  color: #635c6b;
  font-size: 0.76rem;
  line-height: 1.5;
}

.lead-consent a {
  color: var(--solution-accent);
  font-weight: 800;
}

.lead-submit-wrap {
  margin-top: 0.1rem;
}

.marketing-lead-page .lead-submit-wrap .btn-public-primary {
  min-height: 3.5rem;
  border-radius: 10px;
  background: var(--solution-accent);
  box-shadow: 0 14px 26px rgba(103, 2, 180, 0.2);
}

.marketing-lead-page .lead-submit-wrap .btn-public-primary:hover {
  background: var(--solution-accent-dark);
  box-shadow: 0 18px 32px rgba(103, 2, 180, 0.25);
}

.lead-submit-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.75rem 0 0;
  color: #81798a;
  font-size: 0.7rem;
  text-align: center;
}

.lead-submit-note .material-symbols-outlined {
  color: #198754;
  font-size: 0.9rem;
}

/* Lead form inside the dark contact section on the home page */
.home-page .contact-form-wrap .lead-fields-grid {
  --bs-gutter-y: 1.15rem;
}

.home-page .contact-form-wrap .lead-field label {
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.045em;
}

.home-page .contact-form-wrap .lead-field .form-control,
.home-page .contact-form-wrap .lead-field .form-select {
  min-height: 3.25rem;
  padding: 0.75rem 0.95rem;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  font-size: 0.9rem;
}

.home-page .contact-form-wrap .lead-field .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23b8c7df' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.home-page .contact-form-wrap .lead-field .form-select option {
  color: #10203a;
  background: #fff;
}

.home-page .contact-form-wrap .lead-field .form-control:focus,
.home-page .contact-form-wrap .lead-field .form-select:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(79, 142, 255, 0.65);
  box-shadow: 0 0 0 0.2rem rgba(33, 104, 232, 0.14);
}

.home-page .contact-form-wrap .lead-consent-wrap {
  margin-top: 0.65rem;
  margin-bottom: 0.35rem;
}

.home-page .contact-form-wrap .lead-consent {
  min-height: auto;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  padding: 0.25rem 0 0.2rem 1.65rem;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.home-page .contact-form-wrap .lead-consent .form-check-input {
  width: 1.05rem;
  height: 1.05rem;
  flex: none;
  margin-top: 0.12rem;
  margin-left: -1.65rem;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
}

.home-page .contact-form-wrap .lead-consent .form-check-input:checked {
  background-color: #2168e8;
  border-color: #2168e8;
}

.home-page .contact-form-wrap .lead-consent .form-check-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
}

.home-page .contact-form-wrap .lead-consent a {
  color: #b9d1ff;
  font-weight: 800;
  text-underline-offset: 2px;
}

.home-page .contact-form-wrap .lead-submit-wrap {
  margin-top: 0.15rem;
}

.home-page .contact-form-wrap .lead-submit-wrap .btn-public-primary {
  min-height: 3.45rem;
  padding: 0.8rem 1.25rem;
}

.home-page .contact-form-wrap .lead-submit-note {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
}

.home-page .contact-form-wrap .lead-submit-note .material-symbols-outlined {
  color: #39c983;
}

@media (max-width: 575.98px) {
  .home-page .contact-form-wrap .lead-consent {
    padding: 0.25rem 0 0.2rem 1.65rem;
  }

  .home-page .contact-form-wrap .lead-consent .form-check-input {
    margin-left: -1.65rem;
  }
}

@media (max-width: 991.98px) {
  .lead-page-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lead-page-intro {
    max-width: 44rem;
  }

  .lead-page-subtitle {
    max-width: 40rem;
  }

  .lead-agenda {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .lead-page-container {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .lead-page-intro h1 {
    font-size: clamp(2.45rem, 13vw, 3.35rem);
  }

  .lead-page-subtitle {
    font-size: 0.96rem;
  }

  .lead-trust-note {
    display: none;
  }

  .lead-page-layout {
    gap: 1.8rem;
  }

  .lead-form-card {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
    padding: 1.35rem 1rem;
    border-radius: 16px;
  }

  .lead-form-time {
    display: none;
  }

  .lead-form-card::before {
    border-radius: 16px 16px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marketing-lead-page *,
  .marketing-lead-page *::before,
  .marketing-lead-page *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Public solution pages */
.marketing-page {
  --solution-ink: #071a32;
  --solution-accent: #165ee8;
  --solution-accent-dark: #0c49ba;
  --solution-soft: #eaf1ff;
  --solution-signal: #bff3df;
  --solution-warm: #f2a365;
  --solution-paper: #f6f8fb;
  --solution-line: #dce5ef;
}

.marketing-charges-page {
  --solution-accent: #159a68;
  --solution-accent-dark: #08754c;
  --solution-soft: #e6f7ef;
  --solution-signal: #bff3df;
}

.marketing-operations-page {
  --solution-accent: #165ee8;
  --solution-accent-dark: #0c49ba;
  --solution-soft: #eaf1ff;
  --solution-signal: #d4e2ff;
}

.marketing-page main > .operations-integrations {
  padding: 2rem 0 1rem !important;
  background: #fff;
}

.operations-integrations .home-integrations-title {
  margin-bottom: 0.7rem;
}

.operations-integrations .home-integrations-list {
  max-width: 62rem;
}

.marketing-page main > .operations-no-fees {
  padding: 1rem 0 2rem !important;
  background: #fff;
}

.operations-no-fees-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1.15fr) minmax(17rem, 0.85fr);
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border: 1px solid color-mix(in srgb, var(--solution-accent) 20%, #dce5ef);
  border-left: 5px solid var(--solution-accent);
  border-radius: 14px;
  background:
    linear-gradient(110deg, color-mix(in srgb, var(--solution-soft) 76%, #fff), #fff 72%);
  box-shadow: 0 16px 36px rgba(7, 26, 50, 0.06);
}

.operations-no-fees-icon {
  width: 3.6rem;
  height: 3.6rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--solution-accent);
  border-radius: 8px 17px 8px 8px;
  font-size: 1.6rem;
}

.operations-no-fees-copy > span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--solution-accent-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.operations-no-fees-copy h2 {
  margin: 0;
  color: var(--solution-ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.operations-no-fees-panel > p {
  margin: 0;
  padding-left: clamp(1.25rem, 2.5vw, 2.25rem);
  border-left: 1px solid color-mix(in srgb, var(--solution-accent) 22%, #dce5ef);
  color: #53647a;
  font-size: 0.95rem;
  line-height: 1.65;
}

.marketing-operations-page main > .financial-capabilities-section {
  padding: 2rem 0 clamp(5.5rem, 8vw, 7.5rem) !important;
}

.marketing-contracts-page {
  --solution-accent: #b65f38;
  --solution-accent-dark: #8f4325;
  --solution-soft: #fff0e8;
  --solution-signal: #ffd9c5;
}

.marketing-reports-page {
  --solution-accent: #6656d9;
  --solution-accent-dark: #4e3dbb;
  --solution-soft: #efedff;
  --solution-signal: #ddd8ff;
}

.marketing-ai-page {
  --solution-accent: #6d55e7;
  --solution-accent-dark: #4e38c6;
  --solution-soft: #f0edff;
  --solution-signal: #9ef3df;
}

.marketing-page h1,
.marketing-page h2,
.marketing-page h3,
.marketing-page .solution-overview strong,
.marketing-page .solution-floating-card strong {
  font-family: 'Sora', 'Nunito Sans', sans-serif;
}

.marketing-page main {
  overflow: hidden;
}

.marketing-page .public-navbar {
  border-bottom-color: rgba(7, 26, 50, 0.08);
  box-shadow: 0 6px 24px rgba(7, 26, 50, 0.04);
}

.marketing-page .public-navbar .nav-link.active,
.marketing-page .public-navbar .nav-link:hover,
.marketing-page .public-logo span {
  color: var(--solution-accent);
}

.marketing-page .btn-public-primary {
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--solution-accent);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--solution-accent) 26%, transparent);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.marketing-page .btn-public-primary:hover {
  background: var(--solution-accent-dark);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--solution-accent) 32%, transparent);
}

.marketing-page .btn-public-primary .material-symbols-outlined {
  margin-left: 0.55rem;
  font-size: 1.1rem;
}

.marketing-page a:focus-visible,
.marketing-page button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--solution-accent) 38%, transparent);
  outline-offset: 4px;
}

.solution-hero {
  position: relative;
  min-height: 44rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 16%, color-mix(in srgb, var(--solution-accent) 32%, transparent), transparent 25rem),
    linear-gradient(135deg, #06172d 0%, #0a2442 54%, #0a2d4a 100%);
}

.solution-hero::after {
  content: '';
  position: absolute;
  width: 21rem;
  height: 13rem;
  right: -4rem;
  bottom: -6rem;
  border: 2px solid rgba(255, 255, 255, 0.07);
  transform: rotate(-8deg) skew(-15deg);
}

.solution-hero-grid {
  position: absolute;
  inset: 0 0 0 50%;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 24%, #000);
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000);
}

.solution-hero-container {
  position: relative;
  z-index: 2;
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

.solution-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(34rem, 1.13fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.solution-hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 43rem;
}

.solution-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
  color: color-mix(in srgb, var(--solution-signal) 82%, #fff);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.solution-kicker .material-symbols-outlined {
  width: 2rem;
  height: 2rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: var(--solution-ink);
  background: var(--solution-signal);
  border-radius: 5px 12px 5px 5px;
  font-size: 1.05rem;
}

.solution-hero h1 {
  margin: 0 0 1.6rem;
  font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: 1;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.solution-hero-copy > p {
  display: block;
  width: 100%;
  max-width: 39rem;
  margin: 0 0 2rem;
  color: #b8c7d8;
  font-size: clamp(1.03rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  white-space: normal;
  overflow: visible;
  overflow-wrap: normal;
  word-break: normal;
}

.solution-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  margin-bottom: 2.4rem;
}

.solution-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.solution-text-link:hover {
  color: var(--solution-signal);
}

.solution-text-link .material-symbols-outlined {
  color: var(--solution-signal);
  font-size: 1.08rem;
}

.solution-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #91a3b8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.solution-signal-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.solution-signal-row i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 2px;
  background: var(--solution-signal);
  transform: rotate(45deg);
}

.solution-hero-visual {
  position: relative;
  min-height: 30rem;
}

.solution-screen {
  position: absolute;
  top: 5%;
  right: 0;
  width: 94%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.36);
  transform: perspective(1100px) rotateY(-4deg) rotateX(1deg);
}

.solution-screen-bar {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.85rem;
  border-bottom: 1px solid #e6ebf2;
  color: #748197;
  background: #f9fafc;
  font-size: 0.68rem;
  font-weight: 900;
}

.solution-screen-bar i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #d4dbe5;
}

.solution-screen-bar i:first-child {
  background: var(--solution-warm);
}

.solution-screen-bar span {
  margin-left: 0.45rem;
}

.solution-screen img {
  width: 100%;
  display: block;
}

.solution-floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 11.5rem;
  padding: 0.75rem 0.9rem;
  color: var(--solution-ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 11px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.solution-floating-card > .material-symbols-outlined {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: var(--solution-ink);
  background: var(--solution-signal);
  border-radius: 6px 12px 6px 6px;
  font-size: 1.15rem;
}

.solution-floating-card div,
.solution-floating-card small,
.solution-floating-card strong {
  display: block;
}

.solution-floating-card small {
  margin-bottom: 0.08rem;
  color: #7b889a;
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.solution-floating-card strong {
  font-size: 0.78rem;
  letter-spacing: -0.02em;
}

.solution-floating-card-top {
  top: -3%;
  right: 3%;
}

.solution-floating-card-bottom {
  left: -2%;
  bottom: 8%;
}

.solution-route-legend {
  position: absolute;
  z-index: 2;
  right: 2%;
  bottom: 1%;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #8fa1b5;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-route-legend b {
  width: 2.1rem;
  height: 1px;
  position: relative;
  background: rgba(255, 255, 255, 0.22);
}

.solution-route-legend b::after {
  content: '';
  position: absolute;
  top: -2px;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  transform: rotate(45deg);
}

.marketing-page main > #recursos-cobranca {
  padding: clamp(4.75rem, 7vw, 6.5rem) 0 !important;
  scroll-margin-top: 5rem;
}

.charge-capabilities-heading {
  max-width: 54rem;
  margin-bottom: clamp(2.5rem, 4vw, 3.75rem);
}

.charge-capabilities-heading .section-title {
  margin: 1rem 0 1.1rem;
}

.charge-capabilities-heading .public-copy {
  max-width: 47rem;
  margin: 0;
}

.charge-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.charge-capability-card {
  min-height: 17rem;
  padding: clamp(1.6rem, 2.5vw, 2.35rem);
  border: 1px solid var(--solution-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 26, 50, 0.055);
}

.charge-capability-icon {
  width: 4.5rem;
  height: 4.5rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.45rem;
  border-radius: 8px 19px 8px 8px;
  color: #fff;
  background: var(--solution-accent);
  font-size: 1.75rem;
}

.charge-capability-card h3 {
  margin: 0 0 0.75rem;
  color: var(--solution-ink);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.charge-capability-card p {
  margin: 0;
  color: #627087;
  font-size: 0.96rem;
  line-height: 1.7;
}

.solution-overview {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  padding: 0 !important;
  background: var(--solution-ink);
}

.solution-overview-grid {
  display: grid;
  grid-template-columns: 1.18fr repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.solution-overview-grid > div {
  min-height: 11.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.45rem;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.solution-overview-grid > div:not(.solution-overview-intro) > .material-symbols-outlined {
  margin-bottom: 1.2rem;
  color: var(--solution-signal);
  font-size: 1.55rem;
}

.solution-overview strong {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.solution-overview small {
  margin-top: 0.35rem;
  color: #8fa0b4;
  font-size: 0.76rem;
  line-height: 1.5;
}

.solution-overview-intro {
  background: var(--solution-accent);
}

.solution-overview-intro span {
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solution-overview-intro strong {
  font-size: 1.12rem;
}

.marketing-page main > section:not(.solution-hero):not(.solution-overview):not(.solution-final-cta):not(.charge-integrations-strip):not(.operations-integrations):not(.operations-no-fees):not(.ai-no-fees):not(.financial-capabilities-section) {
  padding: clamp(5.5rem, 8vw, 7.5rem) 0 !important;
}

.marketing-page main > section > .container.py-5,
.marketing-page main > section > .container.py-4 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.marketing-page main > .surface-section {
  background:
    linear-gradient(rgba(7, 26, 50, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 50, 0.035) 1px, transparent 1px),
    var(--solution-paper);
  background-size: 72px 72px;
}

.charge-hero-shell {
  background:
    radial-gradient(circle at 78% 16%, color-mix(in srgb, var(--solution-accent) 32%, transparent), transparent 25rem),
    linear-gradient(135deg, #06172d 0%, #0a2442 54%, #0a2d4a 100%);
}

.marketing-charges-page .charge-hero-shell .solution-hero {
  background: transparent;
}

.marketing-charges-page .charge-hero-shell .solution-hero-container {
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.charge-integrations-strip {
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: transparent;
}

.charge-integrations-title {
  margin: 0 0 1.2rem;
  color: #91a4ba;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.charge-integrations-list {
  max-width: 64rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  margin: 0 auto;
}

.charge-integration-item {
  min-width: 0;
  min-height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0 1.5rem;
  color: #d0dbe8;
}

.charge-integration-item + .charge-integration-item {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.charge-integration-item img {
  width: auto;
  height: 2rem;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.62;
}

.charge-integration-serasa img {
  width: min(100%, 10rem);
  height: auto;
  max-height: 2.6rem;
}

.charge-integration-item strong {
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.35;
}

.charge-integration-ai .material-symbols-outlined {
  flex: none;
  color: var(--solution-signal);
  font-size: 1.8rem;
}

.marketing-page .section-tag {
  padding: 0;
  color: var(--solution-accent);
  background: transparent;
  border-radius: 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.marketing-page .section-tag::before {
  content: '';
  width: 0.55rem;
  height: 0.55rem;
  display: inline-block;
  margin-right: 0.1rem;
  background: var(--solution-accent);
  border-radius: 2px;
  transform: rotate(45deg);
}

.marketing-page .section-title {
  color: var(--solution-ink);
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.marketing-page .public-copy {
  font-size: 1rem;
  line-height: 1.75;
}

.marketing-page .public-card {
  border-color: var(--solution-line);
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(7, 26, 50, 0.055);
}

.marketing-page .public-card:has(> img),
.marketing-page .public-card:has(> .section-tag) {
  position: relative;
  padding: 1.1rem;
}

.marketing-page .public-card > img {
  width: 100%;
  border: 1px solid #e1e7ef;
  border-radius: 10px !important;
  box-shadow: 0 12px 26px rgba(7, 26, 50, 0.1) !important;
}

.marketing-page .public-card > img + p {
  padding: 0 0.2rem;
  color: #6b7a8f !important;
  line-height: 1.55;
}

.charge-list-showcase {
  overflow: hidden;
}

.charge-list-visual {
  position: relative;
  z-index: 1;
  margin-inline: clamp(-3.5rem, -4vw, -1rem) 0;
  transform: perspective(1200px) translateY(-0.4rem) scale(1.08);
  transform-origin: center right;
}

.charge-list-visual img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 0.75rem 1rem rgba(7, 26, 50, 0.08));
}

@media (max-width: 991.98px) {
  .charge-list-visual {
    margin-inline: 0;
    transform: none;
  }

  .charge-list-visual img {
    filter: drop-shadow(0 0.5rem 0.75rem rgba(7, 26, 50, 0.07));
  }
}

.marketing-page .row.g-4 > [class*='col-'] > .public-card h5,
.marketing-page .row.g-4 > [class*='col-'] > .public-card h4 {
  color: var(--solution-ink);
}

.marketing-page .icon-badge {
  border-radius: 6px 18px 6px 6px;
  background: var(--solution-accent) !important;
  box-shadow: none;
}

.marketing-page .value-list .material-symbols-outlined {
  color: var(--solution-accent);
}

.marketing-page .highlight-item {
  border-color: var(--solution-line);
  border-radius: 10px;
  box-shadow: none;
}

.marketing-page .highlight-item strong {
  color: var(--solution-ink);
  font-size: 1.08rem;
}

.marketing-page .feature-mosaic {
  border: 1px solid var(--solution-line);
  border-radius: 18px;
  background:
    linear-gradient(rgba(7, 26, 50, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 50, 0.04) 1px, transparent 1px),
    #fff;
  background-size: 82px 82px;
}

.marketing-page .feature-mosaic-item {
  border-left: 1px solid var(--solution-line);
}

.marketing-page .feature-mosaic-icon {
  border-radius: 6px 16px 6px 6px;
  background: var(--solution-accent);
}

.marketing-page .feature-mosaic-item h4 {
  color: var(--solution-ink);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.marketing-page .journey-step::before {
  border-radius: 6px 15px 6px 6px;
  background: var(--solution-accent);
}

.charge-rule-intro {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.charge-rule-copy .section-title {
  margin: 1rem 0 1.25rem;
  font-size: clamp(2.1rem, 3.6vw, 3.35rem);
}

.charge-rule-copy .public-copy {
  margin: 0;
}

.charge-rule-config-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.charge-rule-config-list span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #44566f;
  font-size: 0.84rem;
  font-weight: 800;
}

.charge-rule-config-list .material-symbols-outlined {
  width: 2rem;
  height: 2rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: var(--solution-accent);
  background: var(--solution-soft);
  font-size: 1rem;
}

.charge-rule-preview {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--solution-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(7, 26, 50, 0.12);
}

.charge-rule-preview-bar {
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--solution-line);
  color: #6a788c;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.charge-rule-preview-bar > span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.charge-rule-preview-bar > span i {
  width: 0.42rem;
  height: 0.42rem;
  display: block;
  border-radius: 50%;
  background: #d4dce6;
}

.charge-rule-preview-bar > span i:first-child {
  margin-right: 0.45rem;
  background: var(--solution-warm);
}

.charge-rule-preview-bar strong {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #187553;
  font-size: 0.66rem;
}

.charge-rule-preview-bar strong i {
  width: 0.48rem;
  height: 0.48rem;
  display: block;
  border-radius: 50%;
  background: var(--solution-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--solution-accent) 14%, transparent);
}

.charge-rule-preview img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #f4f6f8;
}

.charge-rule-preview figcaption {
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--solution-line);
  color: #6b7a8f;
  font-size: 0.72rem;
  line-height: 1.5;
}

.charge-rule-journey {
  margin-top: clamp(2rem, 3.5vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--solution-line);
}

#regua-automatica > .container {
  padding-bottom: 0 !important;
}

.marketing-page main > #regua-automatica {
  padding-bottom: clamp(1rem, 2vw, 1.75rem) !important;
}

.marketing-page main > .charge-calendar-section {
  padding-top: clamp(1rem, 2vw, 1.75rem) !important;
}

.charge-rule-journey-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.charge-rule-journey-heading span {
  color: var(--solution-ink);
  font-family: 'Sora', 'Nunito Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.charge-rule-journey-heading p {
  margin: 0;
  color: #718097;
  font-size: 0.82rem;
}

.charge-rule-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.charge-rule-flow::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 8.333%;
  right: 8.333%;
  height: 3px;
  background: linear-gradient(90deg, var(--solution-accent) 0 68%, var(--solution-ink) 68% 100%);
}

.charge-rule-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0 0.65rem;
  text-align: center;
}

.charge-rule-day {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.45rem;
  border: 3px solid var(--solution-accent);
  border-radius: 50%;
  color: var(--solution-accent);
  background: #fff;
  box-shadow: 0 0 0 7px var(--solution-paper);
  font-family: 'Sora', 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.charge-rule-stage:nth-child(3) .charge-rule-day,
.charge-rule-stage:nth-child(4) .charge-rule-day {
  color: #fff;
  background: var(--solution-accent);
}

.charge-rule-stage:nth-child(n + 5) .charge-rule-day {
  color: #fff;
  border-color: var(--solution-ink);
  background: var(--solution-ink);
}

.charge-rule-stage small {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--solution-accent);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.charge-rule-stage:nth-child(n + 5) small {
  color: #53657e;
}

.charge-rule-stage h3 {
  margin: 0 0 0.55rem;
  color: var(--solution-ink);
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.charge-rule-stage p {
  margin: 0;
  color: #697990;
  font-size: 0.78rem;
  line-height: 1.55;
}

.charge-rule-message {
  min-height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.65rem;
  border: 1px solid var(--solution-line);
  border-left: 3px solid var(--solution-accent);
  border-radius: 6px 11px 11px 6px;
  color: #56677f;
  background: rgba(255, 255, 255, 0.84);
  font-size: 0.68rem;
  line-height: 1.45;
}

.marketing-page main > .charge-continuity-section {
  position: relative;
  background: #f4f8f7;
}

.charge-continuity-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 26, 50, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(7, 26, 50, 0.035) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 45%);
  mask-image: linear-gradient(90deg, #000, transparent 45%);
}

.charge-continuity-layout {
  position: relative;
}

.charge-continuity-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  gap: clamp(2rem, 8vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.charge-continuity-heading .section-title {
  max-width: 42rem;
  margin: 1rem 0 0;
  font-size: clamp(2.15rem, 3.7vw, 3.5rem);
}

.charge-continuity-heading .public-copy {
  max-width: 34rem;
  margin: 0;
  padding-bottom: 0.3rem;
}

.charge-continuity-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #cbd8d5;
  border-bottom: 1px solid #cbd8d5;
}

.charge-continuity-item {
  position: relative;
  min-width: 0;
  padding: clamp(1.8rem, 3vw, 2.7rem);
  border-left: 1px solid #cbd8d5;
}

.charge-continuity-item:nth-child(3n + 1) {
  border-left: 0;
}

.charge-continuity-item:nth-child(-n + 3) {
  border-bottom: 1px solid #cbd8d5;
}

.charge-continuity-item::before {
  content: '';
  position: absolute;
  top: -1px;
  left: clamp(1.8rem, 3vw, 2.7rem);
  width: 3.25rem;
  height: 3px;
  background: var(--solution-accent);
}

.charge-continuity-marker {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--solution-accent) 36%, #fff);
  border-radius: 50%;
  color: var(--solution-accent-dark);
  background: rgba(255, 255, 255, 0.68);
}

.charge-continuity-marker .material-symbols-outlined {
  font-size: 1.35rem;
}

.charge-continuity-copy > span {
  display: block;
  margin: 1.35rem 0 0.55rem;
  color: var(--solution-accent-dark);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.charge-continuity-copy h3 {
  margin: 0 0 0.75rem;
  color: var(--solution-ink);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.charge-continuity-copy p {
  margin: 0;
  color: #607087;
  font-size: 0.95rem;
  line-height: 1.75;
}

.solution-final-cta {
  padding: clamp(4rem, 7vw, 6rem) 0 !important;
  background: #fff;
}

.solution-final-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.2rem, 5vw, 4.2rem);
  overflow: hidden;
  color: #fff;
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.055) 50%, transparent 50.2%),
    var(--solution-accent);
}

.solution-final-panel::after {
  content: '';
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: rotate(22deg);
}

.solution-final-label {
  align-self: start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.solution-final-panel h2 {
  max-width: 47rem;
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 3.7vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.solution-final-panel p {
  max-width: 43rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.solution-final-panel .btn {
  position: relative;
  z-index: 1;
  min-height: 3.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  color: var(--solution-ink);
  font-weight: 900;
  white-space: nowrap;
}

.solution-final-panel .material-symbols-outlined {
  font-size: 1.05rem;
}

@media (max-width: 1199px) {
  .solution-hero-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(29rem, 1.05fr);
    gap: 2.5rem;
  }

  .solution-hero h1 {
    font-size: clamp(3rem, 5vw, 4.2rem);
  }

  .solution-hero-visual {
    min-height: 26rem;
  }

  .solution-final-panel {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .solution-final-panel .btn {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 991px) {
  .operations-no-fees-panel {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .operations-no-fees-panel > p {
    grid-column: 2;
    padding-left: 0;
    border-left: 0;
  }

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

  .solution-hero-copy {
    max-width: 48rem;
  }

  .solution-hero-visual {
    min-height: 34rem;
    max-width: 47rem;
    width: 100%;
    margin: 0 auto;
  }

  .solution-hero-grid {
    inset: 42% 0 0;
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 24%, #000);
    mask-image: linear-gradient(180deg, transparent, #000 24%, #000);
  }

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

  .solution-overview-grid > div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

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

  .charge-rule-intro {
    grid-template-columns: 1fr;
  }

  .charge-rule-copy {
    max-width: 45rem;
  }

  .charge-rule-flow {
    grid-template-columns: 1fr;
  }

  .charge-rule-flow::before {
    top: 2rem;
    bottom: 2rem;
    left: 2rem;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, var(--solution-accent) 0 68%, var(--solution-ink) 68% 100%);
  }

  .charge-rule-stage {
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 1.25rem;
    padding: 0 0 2rem;
    text-align: left;
  }

  .charge-rule-stage:last-child {
    padding-bottom: 0;
  }

  .charge-rule-day {
    margin: 0;
  }

  .charge-rule-message {
    min-height: 0;
    justify-content: flex-start;
    max-width: 30rem;
  }

  .charge-continuity-heading {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 44rem;
  }

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

  .charge-continuity-item:nth-child(3n + 1) {
    border-left: 1px solid #cbd8d5;
  }

  .charge-continuity-item:nth-child(2n + 1) {
    border-left: 0;
  }

  .charge-continuity-item:nth-child(-n + 4) {
    border-bottom: 1px solid #cbd8d5;
  }
}

@media (max-width: 767px) {
  .marketing-page main > .operations-no-fees {
    padding: 0.75rem 0 1.5rem !important;
  }

  .operations-no-fees-panel {
    grid-template-columns: 1fr;
    gap: 1rem;
    border-left-width: 4px;
  }

  .operations-no-fees-icon {
    width: 3.2rem;
    height: 3.2rem;
  }

  .operations-no-fees-panel > p {
    grid-column: auto;
    padding-top: 1rem;
    border-top: 1px solid color-mix(in srgb, var(--solution-accent) 22%, #dce5ef);
  }

  .solution-hero-container {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .charge-integrations-strip {
    padding: 1.35rem 0;
  }

  .charge-integrations-title {
    margin-bottom: 0.9rem;
  }

  .charge-integration-item {
    min-height: 2.75rem;
    gap: 0.4rem;
    padding: 0 0.45rem;
  }

  .charge-integration-item img {
    height: 1.55rem;
  }

  .charge-integration-serasa img {
    max-width: 6.5rem;
    max-height: 2rem;
  }

  .charge-integration-item strong {
    font-size: 0.64rem;
  }

  .charge-integration-ai .material-symbols-outlined {
    font-size: 1.4rem;
  }

  .solution-hero h1 {
    font-size: clamp(2.7rem, 13vw, 3.65rem);
  }

  .solution-signal-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .solution-hero-visual {
    min-height: 25rem;
  }

  .solution-screen {
    top: 7%;
    width: 98%;
    transform: none;
  }

  .solution-floating-card {
    min-width: 10.5rem;
    padding: 0.6rem 0.7rem;
  }

  .solution-floating-card-top {
    right: 0;
  }

  .solution-floating-card-bottom {
    left: 0;
    bottom: 5%;
  }

  .solution-route-legend {
    display: none;
  }

  .solution-overview-grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .solution-overview-grid > div {
    min-height: 0;
    padding: 1.4rem;
  }

  .solution-overview-grid > div:not(.solution-overview-intro) {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.9rem;
  }

  .solution-overview-grid > div:not(.solution-overview-intro) > .material-symbols-outlined {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .charge-capabilities-grid {
    grid-template-columns: 1fr;
  }

  .charge-capability-card {
    min-height: 0;
  }

  .charge-rule-preview-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .charge-rule-journey-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .charge-continuity-ledger {
    grid-template-columns: 1fr;
  }

  .charge-continuity-ledger .charge-continuity-item {
    padding: 1.75rem 0;
    border-left: 0;
  }

  .charge-continuity-item:nth-child(-n + 5) {
    border-bottom: 1px solid #cbd8d5;
  }

  .charge-continuity-item::before {
    left: 0;
  }

  .charge-continuity-marker {
    width: 2.75rem;
    height: 2.75rem;
  }

  .marketing-page .feature-mosaic-item {
    border-left: 0;
    border-top: 1px solid var(--solution-line);
  }

  .solution-final-panel {
    grid-template-columns: 1fr;
  }

  .solution-final-label {
    writing-mode: initial;
    transform: none;
  }

  .solution-final-panel .btn {
    grid-column: auto;
    justify-self: stretch;
    justify-content: center;
  }
}

/* Financial and contract lanes */
.home-finance-section {
  position: relative;
  background:
    linear-gradient(rgba(7, 26, 50, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 50, 0.035) 1px, transparent 1px),
    #f7faf9;
  background-size: 72px 72px;
}

.home-finance-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.home-finance-heading > div:last-child {
  padding-bottom: 0.4rem;
}

.home-finance-heading .public-copy {
  margin: 0 0 1.2rem;
}

.home-finance-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #0c7d5b;
  font-weight: 900;
  text-decoration: none;
}

.home-finance-link:hover {
  color: #075a42;
}

.home-finance-link .material-symbols-outlined {
  font-size: 1.1rem;
}

.home-finance-grid,
.financial-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #d7e2e0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.home-finance-item,
.financial-capabilities-grid article {
  min-height: 20rem;
  padding: clamp(1.5rem, 3vw, 2.7rem);
  border-right: 1px solid #d7e2e0;
  border-bottom: 1px solid #d7e2e0;
}

.home-finance-item:nth-child(3n),
.financial-capabilities-grid article:nth-child(3n) {
  border-right: 0;
}

.home-finance-item:nth-last-child(-n + 3),
.financial-capabilities-grid article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.home-finance-icon,
.financial-capabilities-grid article > .material-symbols-outlined {
  width: 4.25rem;
  height: 4.25rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
  border-radius: 8px 19px 8px 8px;
  color: #fff;
  background: #149d72;
  font-size: 1.75rem;
}

.home-finance-item h3,
.financial-capabilities-grid h3 {
  margin: 0 0 0.75rem;
  color: var(--home-ink);
  font-family: 'Sora', 'Nunito Sans', sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.home-finance-item p,
.financial-capabilities-grid p {
  margin: 0;
  color: #627087;
  font-size: 1rem;
  line-height: 1.7;
}

.home-finance-actions {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

.financial-capabilities-heading {
  max-width: 52rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.financial-capabilities-heading .section-title {
  margin: 1rem 0 1.1rem;
}

.financial-capabilities-grid {
  border-color: var(--solution-line);
  border-radius: 18px;
  background:
    linear-gradient(rgba(7, 26, 50, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 50, 0.035) 1px, transparent 1px),
    #fff;
  background-size: 72px 72px;
}

.financial-capabilities-grid article {
  border-color: var(--solution-line);
}

.financial-capabilities-grid article > .material-symbols-outlined {
  background: var(--solution-accent);
}

.financial-capabilities-grid h3 {
  color: var(--solution-ink);
}

.reports-capabilities-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reports-capabilities-grid article {
  min-height: 20rem;
  border-right: 1px solid var(--solution-line);
  border-bottom: 0;
}

.reports-capabilities-grid article:nth-child(3n) {
  border-right: 1px solid var(--solution-line);
}

.reports-capabilities-grid article:last-child {
  border-right: 0;
}

.reports-actionable-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.reports-actionable-heading {
  padding-top: 0.8rem;
}

.reports-actionable-heading .section-title {
  margin: 1rem 0 1.35rem;
  font-size: clamp(2.15rem, 3.6vw, 3.35rem);
}

.reports-actionable-heading .public-copy {
  max-width: 35rem;
  margin: 0;
}

.reports-actionable-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--solution-line);
  border-left: 1px solid var(--solution-line);
  background: rgba(255, 255, 255, 0.54);
}

.reports-actionable-grid article {
  min-height: 15rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.15rem;
  align-content: start;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-right: 1px solid var(--solution-line);
  border-bottom: 1px solid var(--solution-line);
}

.reports-actionable-grid article > .material-symbols-outlined {
  width: 3.35rem;
  height: 3.35rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 7px 15px 7px 7px;
  background: var(--solution-accent);
  font-size: 1.35rem;
}

.reports-actionable-grid h3 {
  margin: 0 0 0.65rem;
  color: var(--solution-ink);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.reports-actionable-grid p {
  margin: 0;
  color: #627087;
  font-size: 0.92rem;
  line-height: 1.7;
}

.financial-process-list {
  border-top: 1px solid var(--solution-line);
}

.financial-process-list article {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--solution-line);
}

.financial-process-list article > span {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--solution-accent);
  border-radius: 7px 16px 7px 7px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.financial-process-list h3 {
  margin: 0 0 0.35rem;
  color: var(--solution-ink);
  font-size: 1.15rem;
  font-weight: 800;
}

.financial-process-list p {
  margin: 0;
  color: #68778c;
  line-height: 1.6;
}

.financial-management-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 22%, rgba(22, 94, 232, 0.28), transparent 27rem),
    linear-gradient(135deg, #06172d 0%, #092541 100%);
}

.financial-management-section::before {
  content: '';
  position: absolute;
  inset: 0 0 0 54%;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
}

.financial-management-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(25rem, 0.96fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.financial-management-section .section-tag {
  color: #9fc0ff;
}

.financial-management-section .section-tag::before {
  background: #9fc0ff;
}

.financial-management-section .section-title {
  max-width: 42rem;
  margin: 1rem 0 1.35rem;
  color: #fff;
}

.financial-management-copy > p {
  max-width: 42rem;
  margin: 0;
  color: #afbed0;
  font-size: 1.05rem;
  line-height: 1.75;
}

.financial-management-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2rem;
  margin-top: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.financial-management-features article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.financial-management-features article > .material-symbols-outlined {
  color: #9fc0ff;
  font-size: 1.35rem;
}

.financial-management-features h3 {
  margin: 0 0 0.3rem;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
}

.financial-management-features p {
  margin: 0;
  color: #91a4ba;
  font-size: 0.82rem;
  line-height: 1.55;
}

.financial-ledger {
  overflow: hidden;
  color: var(--solution-ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
  transform: rotate(1.2deg);
}

.financial-ledger-topbar {
  min-height: 3rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 1rem;
  border-bottom: 1px solid #e7ecf2;
  color: #728198;
  background: #f8fafc;
  font-size: 0.66rem;
  font-weight: 900;
}

.financial-ledger-topbar > div {
  display: flex;
  gap: 0.3rem;
}

.financial-ledger-topbar i {
  width: 0.46rem;
  height: 0.46rem;
  display: block;
  border-radius: 50%;
  background: #d5dde7;
}

.financial-ledger-topbar i:first-child {
  background: #f2a365;
}

.financial-ledger-body {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.financial-ledger-status,
.financial-ledger-status span,
.financial-ledger-footer,
.financial-ledger-footer > span {
  display: flex;
  align-items: center;
}

.financial-ledger-status {
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.financial-ledger-status span {
  gap: 0.45rem;
  color: #68788e;
  font-size: 0.7rem;
  font-weight: 800;
}

.financial-ledger-status span i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #18a676;
  box-shadow: 0 0 0 4px rgba(24, 166, 118, 0.12);
}

.financial-ledger-status > strong {
  color: var(--solution-accent-dark);
  font-size: 0.75rem;
}

.financial-ledger-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.financial-ledger-flow > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.65rem;
  padding: 1rem;
  border: 1px solid #dfe7f0;
  border-radius: 10px;
  background: #f8fafc;
}

.financial-ledger-flow .material-symbols-outlined {
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 1.45rem;
}

.financial-ledger-flow .is-receivable .material-symbols-outlined {
  color: #138a63;
}

.financial-ledger-flow .is-payable .material-symbols-outlined {
  color: #d2684b;
}

.financial-ledger-flow small {
  color: #7c899b;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.financial-ledger-rows {
  border-top: 1px solid #e2e8f0;
}

.financial-ledger-rows > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.financial-ledger-rows .material-symbols-outlined {
  color: var(--solution-accent);
  font-size: 1.15rem;
}

.financial-ledger-rows p,
.financial-ledger-rows strong,
.financial-ledger-rows small {
  display: block;
  margin: 0;
}

.financial-ledger-rows strong {
  font-size: 0.75rem;
}

.financial-ledger-rows small {
  margin-top: 0.12rem;
  color: #8693a5;
  font-size: 0.65rem;
}

.financial-ledger-rows b {
  color: #66768b;
  font-size: 0.64rem;
}

.financial-ledger-footer {
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 1rem;
  color: #fff;
  border-radius: 9px;
  background: var(--solution-accent);
}

.financial-ledger-footer small,
.financial-ledger-footer strong {
  display: block;
}

.financial-ledger-footer small {
  margin-bottom: 0.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.financial-ledger-footer strong {
  font-size: 0.7rem;
}

.financial-ledger-footer > span {
  flex: none;
  gap: 0.35rem;
}

.financial-ledger-footer i {
  padding: 0.3rem 0.38rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 900;
}

.contracts-hero {
  background:
    radial-gradient(circle at 78% 16%, rgba(182, 95, 56, 0.38), transparent 25rem),
    linear-gradient(135deg, #06172d 0%, #10233a 54%, #322117 100%);
}

.contracts-document-stage {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contracts-document-sheet {
  width: min(25rem, 72%);
  min-height: 29rem;
  padding: 3rem 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px 22px 4px 4px;
  background: #fff;
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.36);
  transform: rotate(3deg);
}

.contracts-document-mark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
  color: var(--solution-ink);
  letter-spacing: 0.12em;
}

.contracts-document-mark .material-symbols-outlined {
  color: var(--solution-accent);
}

.contracts-document-sheet > i {
  width: 100%;
  height: 0.48rem;
  display: block;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: #e4e9ef;
}

.contracts-document-sheet > i.is-short {
  width: 64%;
  margin-bottom: 2.25rem;
}

.contracts-signatures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 4rem;
}

.contracts-signatures span {
  border-top: 1px solid #aab4c1;
}

.contracts-capabilities-grid article > .material-symbols-outlined,
.contracts-process-list article > span {
  background: var(--solution-accent);
}

@media (max-width: 991px) {
  .reports-actionable-layout {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .reports-actionable-heading {
    max-width: 48rem;
    padding-top: 0;
  }

  .financial-management-section::before {
    inset: 48% 0 0;
  }

  .financial-management-layout {
    grid-template-columns: 1fr;
  }

  .financial-ledger {
    width: min(100%, 42rem);
    margin: 0 auto;
    transform: none;
  }

  .home-finance-heading {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .home-finance-heading > div:last-child {
    max-width: 42rem;
  }

  .home-finance-grid,
  .financial-capabilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-finance-item:nth-child(3n),
  .financial-capabilities-grid article:nth-child(3n) {
    border-right: 1px solid #d7e2e0;
  }

  .home-finance-item:nth-child(2n),
  .financial-capabilities-grid article:nth-child(2n) {
    border-right: 0;
  }

  .home-finance-item:nth-last-child(-n + 3),
  .financial-capabilities-grid article:nth-last-child(-n + 3) {
    border-bottom: 1px solid #d7e2e0;
  }

  .home-finance-item:nth-last-child(-n + 2),
  .financial-capabilities-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 767px) {
  .reports-actionable-grid {
    grid-template-columns: 1fr;
  }

  .reports-actionable-grid article {
    min-height: 0;
  }

  .financial-management-features {
    grid-template-columns: 1fr;
  }

  .financial-ledger-flow {
    grid-template-columns: 1fr;
  }

  .financial-ledger-status,
  .financial-ledger-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-finance-grid,
  .financial-capabilities-grid {
    grid-template-columns: 1fr;
    border-radius: 15px;
  }

  .home-finance-item,
  .financial-capabilities-grid article {
    min-height: 0;
    border-right: 0 !important;
    border-bottom: 1px solid #d7e2e0 !important;
  }

  .home-finance-item:last-child,
  .financial-capabilities-grid article:last-child {
    border-bottom: 0 !important;
  }

  .contracts-document-sheet {
    width: 76%;
    min-height: 22rem;
    padding: 2.2rem 1.6rem;
  }
}

/* Keep the 3D composition dominant after the legacy hero rules above. */
.home-page .home-hero-stage {
  grid-template-columns: minmax(0, 0.9fr) minmax(35rem, 1.1fr);
  gap: clamp(1rem, 3vw, 3.5rem);
}

@media (max-width: 1199px) {
  .home-page .home-hero-stage {
    grid-template-columns: minmax(0, 0.95fr) minmax(29rem, 1.05fr);
    gap: 1.5rem;
  }
}

@media (max-width: 991px) {
  .home-page .home-hero-stage {
    grid-template-columns: 1fr;
  }
}

/* Cobrança — scroll narrative from overdue lot to contextual contact. */
.home-charge-story {
  position: relative;
  height: 220vh;
  min-height: 82rem;
  padding: 0;
  background:
    linear-gradient(rgba(12, 59, 53, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 59, 53, 0.025) 1px, transparent 1px),
    #fff;
  background-size: 72px 72px;
}

.home-charge-story-track {
  height: 100%;
}

.home-charge-story-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(3.5rem, 7vh, 6rem) 0;
}

.home-charge-story-copy {
  position: relative;
  z-index: 3;
}

.charge-story-copy-cycle {
  position: relative;
  margin-top: 0.8rem;
}

.charge-story-copy-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 0.85rem, 0);
  pointer-events: none;
  transition: opacity 360ms ease, transform 360ms ease, visibility 0s linear 360ms;
}

.charge-story-copy-panel.is-active {
  position: relative;
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  transition-delay: 0s;
}

.charge-story-copy-panel .section-title {
  margin-bottom: 0;
}

.charge-process-list {
  display: grid;
  gap: clamp(0.85rem, 1.6vh, 1.15rem);
  margin: clamp(0.9rem, 1.5vh, 1.15rem) 0 clamp(1.5rem, 2.6vh, 1.9rem);
}

.charge-process-item {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  opacity: 0.68;
  transition: opacity 280ms ease, transform 280ms ease;
}

.charge-process-icon {
  width: 2.65rem;
  height: 2.65rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #0c3b35;
  box-shadow: 0 8px 20px rgba(12, 59, 53, 0.16);
  font-size: 1.2rem;
  transition: background 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}

.charge-process-item > div {
  display: grid;
  gap: 0.22rem;
}

.charge-process-item strong {
  color: var(--home-ink);
  font-size: 1rem;
  line-height: 1.3;
}

.charge-process-item small {
  max-width: 28rem;
  color: #63758a;
  font-size: 0.8rem;
  line-height: 1.48;
}

.charge-process-item.is-active {
  opacity: 1;
  transform: translateX(0.25rem);
}

.charge-process-item.is-active .charge-process-icon {
  background: #d93f49;
  box-shadow: 0 8px 22px rgba(217, 63, 73, 0.22);
  transform: scale(1.04);
}

.charge-story-steps {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.charge-story-step {
  position: relative;
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 0.8rem 0.9rem;
  border: 1px solid transparent;
  border-radius: 12px;
  opacity: 0.42;
  transform: translateX(0);
  transition: opacity 320ms ease, transform 320ms ease, border-color 320ms ease, background 320ms ease;
}

.charge-story-step::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 18%;
  bottom: 18%;
  width: 3px;
  border-radius: 999px;
  background: transparent;
  transition: background 320ms ease;
}

.charge-story-step.is-active {
  border-color: rgba(12, 59, 53, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px rgba(12, 59, 53, 0.06);
  opacity: 1;
  transform: translateX(0.35rem);
}

.charge-story-step.is-active::before {
  background: #d93f49;
}

.charge-story-step-index {
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #0c3b35;
  background: #edf2e9;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.charge-story-step > span:last-child {
  display: grid;
  gap: 0.2rem;
}

.charge-story-step strong {
  color: var(--home-ink);
  font-size: 0.93rem;
  line-height: 1.35;
}

.charge-story-step small {
  color: #67798c;
  font-size: 0.77rem;
  line-height: 1.45;
}

.charge-story-visual {
  --charge-focus: 0;
  --charge-installment: 0;
  --charge-whatsapp: 0;
  --charge-reveal: 0;
  position: relative;
  min-height: clamp(35rem, 72vh, 44rem);
  overflow: hidden;
  border: 1px solid rgba(12, 59, 53, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 77% 18%, rgba(255, 255, 255, 0.96), transparent 36%),
    linear-gradient(145deg, #f8f7f1 0%, #edf2eb 100%);
  box-shadow: 0 34px 76px rgba(12, 59, 53, 0.13);
  isolation: isolate;
}

.charge-story-visual::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 59, 53, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 59, 53, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(145deg, #000, transparent 82%);
  mask-image: linear-gradient(145deg, #000, transparent 82%);
  pointer-events: none;
}

.charge-story-visual::after {
  content: '';
  position: absolute;
  z-index: 0;
  width: 24rem;
  height: 24rem;
  right: -7rem;
  bottom: -9rem;
  border: 1px solid rgba(214, 167, 94, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(214, 167, 94, 0.035), 0 0 0 8rem rgba(214, 167, 94, 0.025);
}

.charge-story-canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  transition: opacity 450ms ease, filter 450ms ease;
}

.charge-story-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
}

.charge-story-status {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 2.35rem minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
  min-width: 12.5rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(12, 59, 53, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(12, 59, 53, 0.14);
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}

.charge-story-status > .material-symbols-outlined {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.15rem;
}

.charge-story-status > span:nth-child(2) {
  display: grid;
  gap: 0.08rem;
}

.charge-story-status small {
  color: #718078;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.charge-story-status strong {
  color: #173d37;
  font-size: 0.78rem;
  line-height: 1.35;
}

.charge-story-installment {
  top: 18%;
  left: 5%;
}

.charge-story-installment > .material-symbols-outlined {
  color: #a52731;
  background: #fde4e6;
}

.charge-story-installment > i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #d93f49;
  box-shadow: 0 0 0 4px rgba(217, 63, 73, 0.14);
}

.charge-story-whatsapp {
  right: 5%;
  bottom: 14%;
  width: min(24rem, 30vw);
}

.charge-story-whatsapp > .material-symbols-outlined {
  color: #fff;
  background: #1d6b5a;
}

.charge-story-online {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #39b887;
  box-shadow: 0 0 0 4px rgba(57, 184, 135, 0.14);
}

.charge-story-flow {
  position: absolute;
  z-index: 3;
  top: 29%;
  right: 17%;
  width: 32%;
  height: 45%;
  border-right: 1px solid rgba(214, 167, 94, 0.76);
  border-bottom: 1px solid rgba(214, 167, 94, 0.76);
  border-radius: 0 0 46% 0;
  opacity: 0;
  transform: scale(0.82);
  transform-origin: left top;
  pointer-events: none;
}

.charge-story-flow::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -20%;
  width: 120%;
  border-top: 1px dashed rgba(217, 63, 73, 0.76);
}

.charge-story-flow i,
.charge-story-flow span {
  position: absolute;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #d93f49;
  box-shadow: 0 0 0 4px rgba(217, 63, 73, 0.13);
}

.charge-story-flow i { left: -20%; top: -0.2rem; }
.charge-story-flow span { right: -0.2rem; bottom: -0.2rem; }

.charge-product-reveal {
  position: absolute;
  z-index: 6;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(248, 249, 245, 0.93);
  opacity: 0;
  transform: scale(1.035);
  pointer-events: none;
  transition: opacity 180ms linear;
  will-change: opacity, transform;
}

.charge-product-reveal .home-product-frame {
  width: 100%;
  max-width: 43rem;
}

.charge-story-visual:not(.is-ready) .charge-product-reveal {
  opacity: 1;
  transform: none;
}

.charge-story-progress {
  position: absolute;
  z-index: 8;
  left: 7%;
  right: 7%;
  bottom: 1.15rem;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(12, 59, 53, 0.1);
}

.charge-story-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1d6b5a, #d93f49);
  transform: scaleX(var(--charge-progress, 0));
  transform-origin: left center;
  will-change: transform;
}

@media (max-width: 1199px) {
  .charge-story-visual {
    min-height: 34rem;
  }

  .charge-story-status {
    min-width: 11.5rem;
  }
}

@media (max-width: 991px) {
  .home-charge-story {
    height: auto;
    min-height: 0;
    padding: clamp(5rem, 12vw, 7rem) 0;
  }

  .home-charge-story-track {
    height: auto;
  }

  .home-charge-story-sticky {
    position: relative;
    min-height: 0;
    padding: 0;
  }

  .charge-story-step {
    opacity: 1;
  }

  .charge-story-step.is-active {
    transform: none;
  }

  .charge-story-visual {
    min-height: 0;
    margin-top: 1rem;
    padding-top: 29rem;
    overflow: visible;
    border-radius: 22px;
    background: transparent;
    box-shadow: none;
  }

  .charge-story-visual::before,
  .charge-story-visual::after {
    display: none;
  }

  .charge-story-canvas {
    height: 28rem;
    border: 1px solid rgba(12, 59, 53, 0.1);
    border-radius: 22px;
    background:
      radial-gradient(circle at 77% 18%, rgba(255, 255, 255, 0.96), transparent 36%),
      linear-gradient(145deg, #f8f7f1 0%, #edf2eb 100%);
    overflow: hidden;
  }

  .charge-story-installment {
    top: 2rem;
    left: 1rem;
  }

  .charge-story-whatsapp {
    right: 1rem;
    bottom: auto;
    top: 20rem;
  }

  .charge-story-flow {
    top: 7rem;
    right: 18%;
    height: 12rem;
  }

  .charge-story-visual.is-ready .charge-story-status,
  .charge-story-visual.is-ready .charge-story-flow {
    opacity: 1 !important;
    transform: none !important;
  }

  .charge-product-reveal {
    position: relative;
    inset: auto;
    display: block;
    padding: 2rem 0 0;
    background: transparent;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
  }

  .charge-story-progress {
    display: none;
  }
}

@media (max-width: 575px) {
  .charge-story-visual {
    padding-top: 23rem;
  }

  .charge-story-canvas {
    height: 22rem;
  }

  .charge-story-status {
    min-width: 0;
    padding: 0.58rem 0.65rem;
  }

  .charge-story-status > .material-symbols-outlined {
    width: 2rem;
    height: 2rem;
  }

  .charge-story-installment {
    top: 1rem;
    left: 0.65rem;
  }

  .charge-story-whatsapp {
    top: 16.2rem;
    right: 0.65rem;
  }

  .charge-story-flow {
    top: 5.5rem;
    right: 20%;
    height: 10rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-charge-story {
    height: auto;
    min-height: 0;
    padding: clamp(5.5rem, 9vw, 8rem) 0;
  }

  .home-charge-story-sticky {
    position: relative;
    min-height: 0;
    padding: 0;
  }

  .charge-story-step {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .charge-story-copy-panel {
    transition: none;
  }

  .charge-story-status,
  .charge-story-flow,
  .charge-product-reveal {
    transition: none;
  }
}

@media (min-width: 992px) and (max-height: 820px) {
  .home-charge-story-sticky {
    padding: 1.35rem 0;
  }

  .home-charge-story-copy .section-title {
    margin-bottom: 0 !important;
    font-size: clamp(2.4rem, 3.6vw, 3.15rem);
  }

  .charge-process-list {
    gap: 0.7rem;
    margin: 0.75rem 0 1.25rem;
  }

  .charge-process-item {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .charge-process-icon {
    width: 2.3rem;
    height: 2.3rem;
    font-size: 1.05rem;
  }

  .charge-process-item small {
    font-size: 0.75rem;
  }

  .charge-story-step {
    padding: 0.55rem 0.75rem;
  }

  .charge-story-step small {
    font-size: 0.71rem;
  }

  .home-charge-story-copy .d-flex.mt-4 {
    margin-top: 0.85rem !important;
  }

  .charge-story-visual {
    min-height: min(39rem, calc(100vh - 2.7rem));
  }
}

/* Fullscreen charge story — final layout overrides. */
.home-charge-story {
  height: 360vh;
  min-height: 0;
}

.home-charge-story-track {
  width: 100%;
  height: 100%;
}

.home-charge-story-sticky {
  position: sticky;
  top: var(--charge-nav-height, 0px);
  width: 100%;
  height: calc(100vh - var(--charge-nav-height, 0px));
  height: calc(100svh - var(--charge-nav-height, 0px));
  min-height: 0;
  display: block;
  padding: 0;
  overflow: hidden;
}

.home-charge-story-sticky::after {
  content: '';
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 31%, rgba(255, 255, 255, 0.58) 43%, rgba(255, 255, 255, 0) 62%);
  pointer-events: none;
}

.home-charge-story-content {
  position: relative;
  z-index: 3;
  height: 100%;
  pointer-events: none;
}

.home-charge-story-content .row {
  height: 100%;
}

.home-charge-story-copy {
  align-self: flex-start;
  max-width: 34rem;
  margin-top: clamp(2.75rem, 7vh, 4.25rem);
  pointer-events: auto;
}

.charge-story-steps {
  position: relative;
  min-height: 6.8rem;
}

.charge-story-step {
  position: absolute;
  inset: 0;
  align-content: center;
  border-color: rgba(12, 59, 53, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 38px rgba(12, 59, 53, 0.07);
  opacity: 0;
  transform: translate3d(0, 1.1rem, 0);
  pointer-events: none;
}

.charge-story-step.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.charge-story-actions {
  opacity: 0;
  transform: translate3d(0, 0.75rem, 0);
  pointer-events: none;
  transition: opacity 320ms ease, transform 320ms ease;
}

.home-charge-story[data-charge-stage="2"] .charge-story-actions {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.charge-story-visual {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 76% 17%, rgba(255, 255, 255, 0.98), transparent 35%),
    linear-gradient(145deg, #f8f7f1 0%, #e8efe8 100%);
  box-shadow: none;
}

.charge-story-canvas {
  inset: -4% -3% -5% 28%;
}

.charge-story-installment {
  top: 18%;
  right: 29%;
  left: auto;
}

.charge-story-whatsapp {
  right: 6%;
  bottom: 14%;
}

.charge-story-flow {
  top: 28%;
  right: 16%;
  width: 24%;
  height: 46%;
}

.charge-product-reveal {
  place-items: center end;
  padding: clamp(2rem, 6vw, 6rem);
  background: linear-gradient(90deg, rgba(248, 249, 245, 0) 0%, rgba(248, 249, 245, 0.12) 35%, rgba(248, 249, 245, 0.88) 58%, rgba(248, 249, 245, 0.98) 100%);
}

.charge-product-reveal .home-product-frame {
  width: min(52vw, 48rem);
  max-width: none;
}

.charge-story-progress {
  left: 4%;
  right: 4%;
}

@media (max-width: 991px) {
  .home-charge-story {
    height: auto;
    padding: clamp(5rem, 12vw, 7rem) 0;
  }

  .home-charge-story-sticky {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }

  .home-charge-story-sticky::after {
    display: none;
  }

  .home-charge-story-content {
    order: 1;
    height: auto;
  }

  .home-charge-story-content .row,
  .home-charge-story-content .min-vh-100 {
    height: auto;
    min-height: 0 !important;
  }

  .home-charge-story-copy {
    align-self: auto;
    max-width: none;
    margin-top: 0;
  }

  .charge-story-steps {
    display: grid;
    gap: 0.45rem;
    min-height: 0;
  }

  .charge-story-step {
    position: relative;
    inset: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .charge-story-actions {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .charge-story-visual {
    position: relative;
    order: 2;
    inset: auto;
    width: calc(100% - 2rem);
    height: auto;
    margin: 3rem 1rem 0;
    padding-top: 29rem;
    overflow: visible;
    border-radius: 22px;
    background: transparent;
  }

  .charge-story-canvas {
    inset: 0;
    height: 28rem;
  }

  .charge-story-installment {
    top: 2rem;
    right: auto;
    bottom: auto;
    left: 1rem;
  }

  .charge-story-whatsapp {
    top: 20rem;
    right: 1rem;
    bottom: auto;
    left: auto;
    width: min(24rem, calc(100% - 2rem));
  }

  .charge-story-flow {
    top: 7rem;
    right: 18%;
    bottom: auto;
    width: 32%;
    height: 12rem;
  }

  .charge-product-reveal .home-product-frame {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .charge-story-visual {
    padding-top: 23rem;
  }

  .charge-story-canvas {
    height: 22rem;
  }

  .charge-story-installment {
    top: 1rem;
    left: 0.65rem;
  }

  .charge-story-whatsapp {
    top: 16.2rem;
    right: 0.65rem;
    width: calc(100% - 1.3rem);
  }

  .charge-story-flow {
    top: 5.5rem;
    right: 20%;
    height: 10rem;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 992px) {
  .home-charge-story {
    height: calc(100vh - var(--charge-nav-height, 0px));
    height: calc(100svh - var(--charge-nav-height, 0px));
    padding: 0;
  }

  .home-charge-story-sticky {
    position: relative;
    top: 0;
    height: 100%;
    overflow: hidden;
  }

  .charge-story-actions {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

@media (min-width: 992px) and (max-height: 820px) {
  .home-charge-story-sticky {
    height: calc(100vh - var(--charge-nav-height, 0px));
    height: calc(100svh - var(--charge-nav-height, 0px));
    padding: 0;
  }

  .charge-story-visual {
    min-height: 0;
  }
}

/* Cobrança — operational narrative polish. */
.home-page .home-charge-story {
  --charge-deep: #0c3b35;
  --charge-green: #1d6b5a;
  --charge-alert: #d93f49;
  --charge-paper: #f4f6f1;
  --charge-line: rgba(12, 59, 53, 0.12);
  background: var(--charge-paper);
}

.home-page .home-charge-story-sticky::before {
  content: '01';
  position: absolute;
  z-index: 2;
  top: clamp(3.8rem, 9vh, 6.5rem);
  left: max(1.25rem, calc((100vw - 1320px) / 2));
  color: rgba(12, 59, 53, 0.035);
  font-family: 'Sora', sans-serif;
  font-size: clamp(11rem, 20vw, 20rem);
  font-weight: 800;
  line-height: 0.72;
  letter-spacing: -0.09em;
  pointer-events: none;
}

.home-page .home-charge-story-sticky::after {
  background:
    linear-gradient(90deg, rgba(244, 246, 241, 0.99) 0%, rgba(244, 246, 241, 0.96) 32%, rgba(244, 246, 241, 0.72) 43%, rgba(244, 246, 241, 0.08) 64%),
    linear-gradient(180deg, rgba(244, 246, 241, 0.52), transparent 20%, transparent 82%, rgba(244, 246, 241, 0.68));
}

.home-page .home-charge-story-copy {
  max-width: 35.5rem;
  margin-top: clamp(2rem, 5.5vh, 3.5rem);
  padding-left: clamp(1.15rem, 2vw, 2rem);
  border-left: 1px solid var(--charge-line);
}

.charge-story-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1rem, 2vh, 1.5rem);
}

.charge-story-heading-row .home-section-number {
  margin: 0;
}

.charge-story-scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #6d7e76;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.charge-story-scroll-cue .material-symbols-outlined {
  font-size: 1rem;
  animation: charge-cue 1.7s ease-in-out infinite;
}

.charge-story-copy-cycle {
  min-height: clamp(14.5rem, 28vh, 18rem);
  margin-top: 0;
}

.charge-story-copy-panel {
  padding-right: 0.75rem;
}

.charge-story-stage-label {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--charge-alert);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-page .charge-story-copy-panel .section-title {
  max-width: 33rem;
  color: var(--charge-deep);
  font-size: clamp(2.45rem, 4vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.charge-story-copy-panel p {
  max-width: 30rem;
  margin: 1.1rem 0 0;
  color: #5c6e68;
  font-size: clamp(0.94rem, 1.05vw, 1.05rem);
  line-height: 1.65;
}

.charge-process-list {
  position: relative;
  gap: 0;
  margin: clamp(0.8rem, 1.8vh, 1.25rem) 0 0;
}

.charge-process-list::before {
  content: '';
  position: absolute;
  top: 1.45rem;
  bottom: 1.45rem;
  left: 1.43rem;
  width: 1px;
  background: var(--charge-line);
}

.charge-process-item {
  position: relative;
  grid-template-columns: 2.9rem minmax(0, 1fr);
  gap: 0.9rem;
  min-height: 4.5rem;
  padding: 0.55rem 0 0.65rem;
  opacity: 0.42;
  transform: none;
}

.charge-process-item::after {
  content: attr(data-step-number);
  position: absolute;
  top: 0.35rem;
  left: -2.15rem;
  color: #87958f;
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.charge-process-icon {
  position: relative;
  z-index: 1;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(12, 59, 53, 0.13);
  border-radius: 11px;
  color: var(--charge-deep);
  background: #eef2ec;
  box-shadow: none;
}

.charge-process-item strong {
  color: var(--charge-deep);
  font-size: 0.94rem;
}

.charge-process-item small {
  max-width: 29rem;
  color: #63736e;
  font-size: 0.76rem;
}

.charge-process-item.is-active {
  opacity: 1;
  transform: none;
}

.charge-process-item.is-active::before {
  content: '';
  position: absolute;
  top: 1.35rem;
  left: -1.3rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--charge-alert);
  box-shadow: 0 0 0 5px rgba(217, 63, 73, 0.12);
}

.charge-process-item.is-active .charge-process-icon {
  color: #fff;
  border-color: var(--charge-alert);
  background: var(--charge-alert);
  box-shadow: 0 10px 24px rgba(217, 63, 73, 0.2);
  transform: none;
}

.charge-story-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
}

.charge-story-actions .btn-public-primary .material-symbols-outlined {
  margin-left: 0.45rem;
  font-size: 1rem;
}

.charge-story-visual {
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.95), transparent 31%),
    linear-gradient(145deg, #f7f7f1 0%, #e3ebe3 100%);
}

.charge-story-visual::before {
  background-size: 64px 64px;
  opacity: 0.65;
}

.charge-story-visual-toolbar {
  position: absolute;
  z-index: 7;
  top: clamp(1.25rem, 3vw, 2.25rem);
  right: clamp(1.25rem, 4vw, 4rem);
  left: 48%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(12, 59, 53, 0.12);
  color: #58716a;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.charge-story-visual-toolbar span,
.charge-story-visual-toolbar strong {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.charge-story-visual-toolbar strong {
  color: var(--charge-deep);
}

.charge-story-visual-toolbar i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #39b887;
  box-shadow: 0 0 0 4px rgba(57, 184, 135, 0.12);
}

.charge-story-legend {
  position: absolute;
  z-index: 5;
  right: clamp(1.25rem, 4vw, 4rem);
  bottom: 2.4rem;
  display: flex;
  gap: 1.1rem;
  color: #667973;
  font-size: 0.64rem;
  font-weight: 700;
}

.charge-story-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.charge-story-legend i {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 2px;
  background: #edf0ee;
  box-shadow: inset 0 0 0 1px rgba(12, 59, 53, 0.13);
}

.charge-story-legend .is-overdue { background: var(--charge-alert); box-shadow: none; }
.charge-story-legend .is-active { background: #8fcbea; box-shadow: none; }
.charge-story-legend .is-available { background: #f1f3f1; }

.charge-story-status {
  border-color: rgba(12, 59, 53, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(12, 59, 53, 0.13);
}

.charge-story-installment {
  top: 20%;
  right: 27%;
}

.charge-story-whatsapp {
  right: 5%;
  bottom: 17%;
}

.charge-product-reveal {
  padding-right: clamp(2rem, 5vw, 5rem);
}

.charge-product-reveal .home-product-frame {
  overflow: hidden;
  border-color: rgba(12, 59, 53, 0.12);
  box-shadow: 0 30px 80px rgba(12, 59, 53, 0.19);
}

.charge-product-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.charge-product-caption p {
  margin: 0;
}

.charge-product-caption > span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.4rem;
  color: var(--charge-green);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.charge-product-caption > span i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #39b887;
}

.charge-story-progress {
  left: 48%;
  right: 4%;
  bottom: 1.25rem;
  height: 3px;
  background: rgba(12, 59, 53, 0.09);
}

@keyframes charge-cue {
  0%, 100% { transform: translateY(-2px); opacity: 0.55; }
  50% { transform: translateY(3px); opacity: 1; }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .home-page .home-charge-story-copy {
    max-width: 31rem;
  }

  .home-page .charge-story-copy-panel .section-title {
    font-size: clamp(2.2rem, 3.6vw, 3.25rem);
  }

  .charge-story-copy-cycle {
    min-height: 15rem;
  }

  .charge-story-visual-toolbar,
  .charge-story-progress {
    left: 51%;
  }
}

@media (max-width: 991px) {
  .home-page .home-charge-story {
    padding: clamp(4.5rem, 11vw, 6.5rem) 0;
  }

  .home-page .home-charge-story-sticky::before {
    top: 4.5rem;
    right: 1rem;
    left: auto;
    font-size: clamp(7rem, 28vw, 11rem);
  }

  .home-page .home-charge-story-copy {
    padding-left: 1rem;
  }

  .charge-story-heading-row {
    align-items: flex-start;
  }

  .charge-story-scroll-cue {
    display: none;
  }

  .charge-story-copy-cycle {
    min-height: 0;
  }

  .home-page .charge-story-copy-panel .section-title {
    font-size: clamp(2.35rem, 8vw, 3.65rem);
  }

  .charge-story-copy-panel p {
    max-width: 42rem;
  }

  .charge-process-list {
    margin-top: 1.5rem;
  }

  .charge-process-item,
  .charge-process-item.is-active {
    opacity: 1;
  }

  .charge-process-item::after,
  .charge-process-item.is-active::before {
    display: none;
  }

  .charge-story-visual-toolbar {
    top: 1rem;
    right: 1rem;
    left: 1rem;
  }

  .charge-story-legend {
    right: 1rem;
    bottom: auto;
    left: 1rem;
    top: 25.6rem;
    justify-content: center;
  }

  .charge-product-caption {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .charge-story-visual-toolbar {
    font-size: 0.58rem;
  }

  .charge-story-visual-toolbar span {
    max-width: 8.5rem;
  }

  .charge-story-legend {
    top: 20rem;
    gap: 0.65rem;
    font-size: 0.56rem;
  }

  .charge-process-item {
    grid-template-columns: 2.65rem minmax(0, 1fr);
  }

  .charge-process-icon {
    width: 2.65rem;
    height: 2.65rem;
  }

  .charge-story-actions {
    gap: 0.75rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .charge-story-scroll-cue .material-symbols-outlined {
    animation: none;
  }
}

@media (min-width: 992px) and (max-height: 820px) {
  .home-page .home-charge-story-copy {
    margin-top: 1.25rem;
  }

  .charge-story-heading-row {
    margin-bottom: 0.75rem;
  }

  .charge-story-copy-cycle {
    min-height: 11.5rem;
  }

  .home-page .charge-story-copy-panel .section-title {
    font-size: clamp(2rem, 3.35vw, 3rem);
  }

  .charge-story-copy-panel p {
    margin-top: 0.75rem;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .charge-process-list {
    margin-top: 0.45rem;
  }

  .charge-process-item {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    min-height: 3.65rem;
    padding: 0.35rem 0 0.45rem;
  }

  .charge-process-list::before {
    top: 1.2rem;
    bottom: 1.2rem;
    left: 1.18rem;
  }

  .charge-process-icon {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.05rem;
  }

  .charge-process-item.is-active::before {
    top: 1.05rem;
  }

  .charge-story-actions.mt-4 {
    margin-top: 0.65rem !important;
  }
}

/* Atendimento com IA */
.ai-hero {
  background:
    radial-gradient(circle at 76% 18%, rgba(109, 85, 231, 0.42), transparent 25rem),
    radial-gradient(circle at 90% 78%, rgba(20, 180, 145, 0.2), transparent 21rem),
    linear-gradient(135deg, #07162c 0%, #102442 52%, #241d51 100%);
}

.ai-conversation-stage {
  min-height: 34rem;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.ai-conversation-stage::before {
  content: '';
  position: absolute;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(158, 243, 223, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 4.5rem rgba(158, 243, 223, 0.025), 0 0 0 9rem rgba(109, 85, 231, 0.035);
  z-index: -1;
}

.ai-phone {
  width: min(23rem, 76%);
  overflow: hidden;
  color: var(--solution-ink);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 25px;
  background: #f7f8fb;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.38);
  transform: rotate(1.5deg);
}

.ai-phone-header {
  min-height: 4.7rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem 1rem;
  color: #fff;
  background: #172b48;
}

.ai-avatar {
  width: 2.65rem;
  height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #172b48;
  border-radius: 8px 14px 8px 8px;
  background: var(--solution-signal);
}

.ai-avatar .material-symbols-outlined {
  font-size: 1.25rem;
}

.ai-phone-header strong,
.ai-phone-header small {
  display: block;
}

.ai-phone-header strong {
  font-size: 0.82rem;
}

.ai-phone-header small {
  margin-top: 0.18rem;
  color: #aebed2;
  font-size: 0.64rem;
}

.ai-phone-header small i {
  width: 0.45rem;
  height: 0.45rem;
  display: inline-block;
  margin-right: 0.3rem;
  border-radius: 50%;
  background: #49d8a7;
}

.ai-phone-header > .material-symbols-outlined {
  color: #93a5bb;
  font-size: 1.2rem;
}

.ai-phone-body {
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.3rem 1rem;
  background:
    linear-gradient(rgba(14, 41, 66, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 41, 66, 0.035) 1px, transparent 1px),
    #f2f4f7;
  background-size: 32px 32px;
}

.ai-message {
  max-width: 87%;
  padding: 0.8rem 0.9rem;
  font-size: 0.76rem;
  line-height: 1.5;
  box-shadow: 0 7px 18px rgba(7, 26, 50, 0.07);
}

.ai-message-customer {
  align-self: flex-end;
  border-radius: 13px 4px 13px 13px;
  background: #dff7ed;
}

.ai-message-assistant {
  align-self: flex-start;
  border-radius: 4px 13px 13px 13px;
  background: #fff;
}

.ai-data-check {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #7565ca;
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ai-data-check .material-symbols-outlined {
  font-size: 0.95rem;
}

.ai-invoice-chip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.8rem;
  border: 1px solid #ded9fb;
  border-radius: 10px;
  background: #fff;
}

.ai-invoice-chip > .material-symbols-outlined:first-child {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 6px 12px 6px 6px;
  background: var(--solution-accent);
  font-size: 1.1rem;
}

.ai-invoice-chip > .material-symbols-outlined:last-child {
  color: #16a878;
  font-size: 1.15rem;
}

.ai-invoice-chip small,
.ai-invoice-chip strong {
  display: block;
}

.ai-invoice-chip small {
  color: #8793a4;
  font-size: 0.55rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-invoice-chip strong {
  margin-top: 0.1rem;
  font-size: 0.68rem;
}

.ai-phone-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  color: #929eae;
  border-top: 1px solid #e4e8ee;
  background: #fff;
  font-size: 0.68rem;
}

.ai-phone-input .material-symbols-outlined {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  background: var(--solution-accent);
  font-size: 0.95rem;
}

.ai-orbit {
  position: absolute;
  min-width: 13.5rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  padding: 0.85rem 1rem;
  color: var(--solution-ink);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px 17px 8px 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  z-index: 2;
}

.ai-orbit > .material-symbols-outlined {
  color: var(--solution-accent);
  font-size: 1.35rem;
}

.ai-orbit small,
.ai-orbit strong {
  display: block;
}

.ai-orbit small {
  color: #8793a4;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ai-orbit strong {
  margin-top: 0.13rem;
  font-size: 0.72rem;
}

.ai-orbit-top {
  top: 3.8rem;
  right: 0;
}

.ai-orbit-bottom {
  bottom: 3.4rem;
  left: 0;
}

.marketing-ai-page main > .ai-no-fees {
  padding: 2rem 0 !important;
  background: #fff;
}

.marketing-ai-page main > .financial-capabilities-section {
  padding: clamp(4.5rem, 7vw, 6.5rem) 0 clamp(5.5rem, 8vw, 7.5rem) !important;
}

.ai-capabilities-grid article {
  min-height: 18rem;
}

.ai-flow-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.ai-flow-heading {
  position: sticky;
  top: 8rem;
}

.ai-flow-heading .section-title {
  margin: 1rem 0 1.25rem;
}

.ai-flow-list {
  border-top: 1px solid var(--solution-line);
}

.ai-flow-list article {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 1.4rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--solution-line);
}

.ai-flow-list article > span {
  width: 3.6rem;
  height: 3.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 7px 17px 7px 7px;
  background: var(--solution-accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ai-flow-list small {
  color: var(--solution-accent-dark);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-flow-list h3 {
  margin: 0.35rem 0 0.55rem;
  color: var(--solution-ink);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.ai-flow-list p {
  margin: 0;
  color: #627087;
  line-height: 1.7;
}

.ai-trust-section {
  color: #fff;
  background:
    radial-gradient(circle at 21% 48%, rgba(109, 85, 231, 0.32), transparent 24rem),
    linear-gradient(135deg, #07172d, #112942);
}

.ai-trust-layout {
  display: grid;
  grid-template-columns: minmax(25rem, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.ai-trust-section .section-tag {
  color: var(--solution-signal);
}

.ai-trust-section .section-tag::before {
  background: var(--solution-signal);
}

.ai-trust-section .section-title {
  margin: 1rem 0 1.25rem;
  color: #fff;
}

.ai-trust-section .public-copy {
  color: #afbed0;
}

.ai-trust-section .value-list li {
  color: #d5deea;
  border-bottom-color: rgba(255, 255, 255, 0.11);
}

.ai-trust-section .value-list .material-symbols-outlined {
  color: var(--solution-signal);
}

.ai-trust-visual {
  position: relative;
  min-height: 30rem;
}

.ai-trust-core,
.ai-trust-node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.ai-trust-core {
  inset: 50% auto auto 50%;
  width: 12rem;
  height: 12rem;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  background: var(--solution-accent);
  transform: translate(-50%, -50%);
}

.ai-trust-core .material-symbols-outlined {
  margin-bottom: 0.65rem;
  color: var(--solution-signal);
  font-size: 2rem;
}

.ai-trust-core small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-trust-core strong {
  margin-top: 0.25rem;
  font-size: 0.82rem;
}

.ai-trust-node {
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border-radius: 7px 16px 7px 7px;
  font-size: 0.74rem;
  font-weight: 800;
}

.ai-trust-node .material-symbols-outlined {
  color: var(--solution-signal);
  font-size: 1.15rem;
}

.ai-trust-node.is-customer {
  top: 2rem;
  left: 0;
}

.ai-trust-node.is-contract {
  top: 3.6rem;
  right: 0;
}

.ai-trust-node.is-financial {
  right: 1rem;
  bottom: 2.2rem;
}

.ai-trust-line {
  position: absolute;
  height: 1px;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(158, 243, 223, 0.62), transparent);
  transform-origin: left center;
}

.ai-trust-line::after {
  content: '';
  position: absolute;
  top: -0.22rem;
  right: 12%;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--solution-signal);
  box-shadow: 0 0 0 5px rgba(158, 243, 223, 0.1);
}

.ai-trust-line.line-one {
  width: 47%;
  top: 29%;
  left: 19%;
  transform: rotate(24deg);
}

.ai-trust-line.line-two {
  width: 42%;
  top: 34%;
  left: 50%;
  transform: rotate(-23deg);
}

.ai-trust-line.line-three {
  width: 42%;
  top: 58%;
  left: 54%;
  transform: rotate(34deg);
}

@media (max-width: 991px) {
  .ai-conversation-stage {
    width: min(100%, 42rem);
    margin: 0 auto;
  }

  .ai-flow-layout,
  .ai-trust-layout {
    grid-template-columns: 1fr;
  }

  .ai-flow-heading {
    position: static;
    max-width: 46rem;
  }

  .ai-trust-visual {
    width: min(100%, 35rem);
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .ai-conversation-stage {
    min-height: 31rem;
  }

  .ai-phone {
    width: min(21rem, 84%);
    transform: none;
  }

  .ai-phone-body {
    min-height: 22rem;
  }

  .ai-orbit {
    min-width: 0;
    max-width: 11rem;
    padding: 0.7rem;
  }

  .ai-orbit-top {
    top: 2rem;
  }

  .ai-orbit-bottom {
    bottom: 1.5rem;
  }

  .ai-flow-list article {
    grid-template-columns: 3.4rem minmax(0, 1fr);
    gap: 1rem;
  }

  .ai-flow-list article > span {
    width: 3.1rem;
    height: 3.1rem;
  }

  .ai-trust-visual {
    min-height: 25rem;
  }

  .ai-trust-core {
    width: 10rem;
    height: 10rem;
  }
}

@media (max-width: 575px) {
  .ai-orbit {
    display: none;
  }

  .ai-phone {
    width: 100%;
  }

  .ai-conversation-stage::before {
    width: 19rem;
    height: 19rem;
  }

  .ai-trust-node {
    font-size: 0.65rem;
  }

  .ai-trust-node.is-customer {
    top: 1rem;
  }

  .ai-trust-node.is-contract {
    top: 2rem;
  }

  .ai-trust-node.is-financial {
    right: 0;
    bottom: 1rem;
  }
}

/* Home — destaque dedicado ao atendimento com IA */
.home-ai-section {
  --solution-ink: #071a32;
  --solution-accent: #6d55e7;
  --solution-accent-dark: #4e38c6;
  --solution-signal: #9ef3df;
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  color: #fff;
  background:
    radial-gradient(circle at 76% 18%, rgba(109, 85, 231, 0.4), transparent 28rem),
    radial-gradient(circle at 88% 82%, rgba(20, 180, 145, 0.17), transparent 22rem),
    linear-gradient(135deg, #07162c 0%, #102442 52%, #241d51 100%);
}

.home-ai-grid {
  position: absolute;
  inset: 0 0 0 48%;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 22%, #000);
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000);
}

.home-ai-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(34rem, 1.1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.home-ai-copy {
  max-width: 42rem;
}

.home-ai-copy .home-section-number {
  color: var(--solution-signal);
}

.home-ai-copy .section-title {
  margin: 0 0 1.5rem;
  color: #fff;
  font-size: clamp(2.6rem, 4.6vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.home-ai-copy > p {
  max-width: 39rem;
  margin: 0 0 2rem;
  color: #b5c3d4;
  font-size: 1.03rem;
  line-height: 1.75;
}

.home-ai-points {
  display: grid;
  gap: 0;
  margin: 0 0 2rem;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.home-ai-points li {
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 0;
  color: #9facbf;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  line-height: 1.55;
}

.home-ai-points .material-symbols-outlined {
  width: 2.7rem;
  height: 2.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #172b48;
  border-radius: 7px 14px 7px 7px;
  background: var(--solution-signal);
  font-size: 1.2rem;
}

.home-ai-points strong {
  display: block;
  margin-bottom: 0.12rem;
  color: #fff;
  font-size: 0.91rem;
}

.home-ai-pricing-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(158, 243, 223, 0.25);
  border-left: 4px solid var(--solution-signal);
  border-radius: 8px 16px 8px 8px;
  background: rgba(255, 255, 255, 0.07);
}

.home-ai-pricing-note > .material-symbols-outlined {
  color: var(--solution-signal);
  font-size: 1.55rem;
}

.home-ai-pricing-note small,
.home-ai-pricing-note strong {
  display: block;
}

.home-ai-pricing-note small {
  margin-bottom: 0.16rem;
  color: var(--solution-signal);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-ai-pricing-note strong {
  color: #fff;
  font-size: 0.92rem;
}

.home-ai-pricing-note p {
  margin: 0.2rem 0 0;
  color: #9facbf;
  font-size: 0.77rem;
}

.home-ai-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  align-items: center;
}

.home-ai-section .btn-light {
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-inline: 1.35rem;
  color: #251b5b;
  border: 0;
  border-radius: 9px;
  font-weight: 900;
}

.home-ai-section .btn-light:hover {
  color: #251b5b;
  background: var(--solution-signal);
  transform: translateY(-2px);
}

.home-ai-section .btn-light .material-symbols-outlined,
.home-ai-text-link .material-symbols-outlined {
  font-size: 1.05rem;
}

.home-ai-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--solution-signal);
  font-weight: 900;
  text-decoration: none;
}

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

.home-ai-conversation {
  min-height: 39rem;
}

.home-ai-conversation .ai-phone {
  width: min(25rem, 78%);
}

.home-ai-conversation .ai-phone-body {
  min-height: 27rem;
}

@media (max-width: 1199px) {
  .home-ai-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(29rem, 1.05fr);
    gap: 2rem;
  }

  .home-ai-conversation .ai-phone {
    width: min(23rem, 78%);
  }
}

@media (max-width: 991px) {
  .home-ai-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .home-ai-copy {
    max-width: 46rem;
  }

  .home-ai-conversation {
    min-height: 36rem;
  }
}

@media (max-width: 575px) {
  .home-ai-copy .section-title {
    font-size: clamp(2.35rem, 12vw, 3.15rem);
  }

  .home-ai-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-ai-section .btn-light,
  .home-ai-text-link {
    width: 100%;
    justify-content: center;
  }

  .home-ai-conversation {
    min-height: 31rem;
  }

  .home-ai-conversation .ai-phone {
    width: 100%;
  }

  .home-ai-conversation .ai-phone-body {
    min-height: 22rem;
  }
}
