:root {
  --color-navy: #172434;
  --color-navy-soft: #213348;
  --color-yellow: #f8b21c;
  --color-orange: #ea5b25;
  --color-green: #28cf18;
  --color-green-dark: #1c704e;
  --color-gray-50: #f7f7f4;
  --color-gray-100: #f2f2f2;
  --color-gray-300: #c9d2db;
  --color-gray-500: #65717d;
  --color-white: #ffffff;
  --color-text: #112031;
  --shadow-soft: 0 28px 60px rgba(15, 35, 52, 0.12);
  --shadow-card: 0 18px 36px rgba(17, 32, 49, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container-width: min(1180px, calc(100% - 32px));
  --transition: 180ms ease;
  --font-body: "Manrope", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  overflow-x: clip;
  background:
    radial-gradient(circle at top right, rgba(248, 178, 28, 0.12), transparent 24%),
    linear-gradient(180deg, #f9fbfd 0%, #ffffff 36%, #f8f9fb 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: var(--container-width);
  margin: 0 auto;
}

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

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1200;
  background: var(--color-white);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  --header-height: 76px;
  background: rgba(23, 36, 52, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1280px, calc(100% - 32px));
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 240px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 auto;
  min-width: 0;
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.main-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: clamp(28px, 2.6vw, 34px);
  min-width: 0;
}

.main-nav__links > a,
.main-nav__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 520;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color var(--transition);
}

.main-nav__links > a:hover,
.main-nav__links > a:focus-visible,
.main-nav__trigger:hover,
.main-nav__trigger:focus-visible {
  color: var(--color-yellow);
}

.main-nav__links > a[aria-current="page"] {
  color: var(--color-white);
  font-weight: 700;
}

.main-nav__links > a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: rgba(248, 178, 28, 0.9);
}

.main-nav__item {
  position: relative;
}

.main-nav__trigger {
  cursor: pointer;
}

.main-nav__caret {
  width: 8px;
  height: 8px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform var(--transition);
}

.main-nav__item.is-open .main-nav__caret,
.main-nav__item:focus-within .main-nav__caret,
.main-nav__item:hover .main-nav__caret {
  transform: rotate(-135deg) translate(-1px, -1px);
}

.main-nav__submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 12;
  display: grid;
  gap: 6px;
  min-width: 220px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(23, 36, 52, 0.98);
  box-shadow: 0 18px 36px rgba(7, 15, 24, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.main-nav__submenu a {
  min-height: 40px;
  padding: 0 10px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.84);
}

.main-nav__submenu a:hover,
.main-nav__submenu a:focus-visible {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
}

.main-nav__item:hover .main-nav__submenu,
.main-nav__item:focus-within .main-nav__submenu,
.main-nav__item.is-open .main-nav__submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.main-nav__cta {
  flex: 0 0 auto;
  margin-left: 24px;
  min-height: 48px;
  padding: 0 22px;
  white-space: nowrap;
  color: var(--color-white);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--color-white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--color-white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ea5b25 0%, #f08a2f 100%);
  color: var(--color-white);
  font-weight: 800;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 10px 18px rgba(234, 91, 37, 0.2);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(234, 91, 37, 0.24);
}

.button-secondary {
  background: rgba(234, 91, 37, 0.14);
  color: var(--color-white);
  border: 1px solid rgba(255, 185, 160, 0.34);
  box-shadow: none;
}

.button-small {
  min-height: 48px;
  padding: 0 22px;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 9vh, 130px) 0;
  overflow: hidden;
  background-image:
    url("../assets/hero-usina.jpg"),
    linear-gradient(135deg, #102033 0%, #14283e 52%, #1b3752 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(248, 178, 28, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(23, 36, 52, 0.68) 0%, rgba(23, 36, 52, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1120px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-label {
  margin: 0;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-title,
.section-heading h2 {
  margin: 0;
  line-height: 0.98;
}

.hero-title {
  width: 100%;
  max-width: 1100px;
  margin: 20px auto 0;
  font-size: clamp(52px, 5.5vw, 88px);
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-description {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.hero-benefits,
.coverage-card ul,
.info-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-benefit {
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(23, 36, 52, 0.48);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  font-weight: 600;
}

.info-card li::before {
  content: "•";
  color: var(--color-green);
  margin-right: 10px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.section {
  padding: 96px 0;
}

.section-light {
  background: linear-gradient(180deg, rgba(242, 242, 242, 0.6), rgba(255, 255, 255, 0.9));
}

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

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--color-navy);
}

.section-heading p:last-child {
  margin: 16px 0 0;
  color: var(--color-gray-500);
  line-height: 1.7;
}

.steps-grid,
.benefits-grid,
.audience-grid,
.rules-grid {
  display: grid;
  gap: 20px;
}

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

.step-card,
.benefit-card,
.info-card,
.coverage-card,
.calculator-panel,
.results-panel,
.lead-form,
.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 36, 52, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.step-card,
.benefit-card,
.info-card,
.coverage-card {
  padding: 28px;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--color-orange), #ff8a57);
  color: var(--color-white);
  font-weight: 800;
}

.step-card h3,
.benefit-card h3,
.info-card h3,
.coverage-card h3 {
  margin: 0 0 10px;
  color: var(--color-navy);
}

.step-card p,
.benefit-card p,
.info-card p,
.coverage-card p,
.faq-content p,
.about-copy p {
  margin: 0;
  color: var(--color-gray-500);
  line-height: 1.7;
}

.calculator-layout,
.split-layout,
.about-layout,
.footer-grid,
.footer-bottom {
  display: grid;
  gap: 24px;
}

.calculator-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.calculator-section .container {
  max-width: 1180px;
}

.calculator-panel,
.results-panel,
.lead-form {
  padding: 30px;
}

.calculator-panel,
.results-panel {
  min-height: 100%;
}

.calculator-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  align-self: start;
  min-height: 0;
}

.calculator-lead-form {
  grid-column: 1 / -1;
  margin-top: 24px;
}

.calculator-lead-form__heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.calculator-lead-form__heading h3 {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.calculator-lead-form__actions {
  margin-top: 20px;
}

.calculator-lead-form .button {
  min-width: 220px;
}

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

.calculator-panel__top {
  display: grid;
  gap: 12px;
}

.calculator-panel__actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.calculator-panel .button {
  width: fit-content;
  min-width: 176px;
}

.calculator-panel__actions .field-hint {
  margin: 0;
}

.calculator-panel__disclaimer {
  max-width: 44ch;
  margin: 0;
  font-size: 0.98rem;
}

label,
.checkbox-field {
  display: grid;
  gap: 8px;
}

label span,
.checkbox-field span {
  font-weight: 700;
  color: var(--color-navy);
}

input,
select {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(23, 36, 52, 0.14);
  border-radius: 16px;
  padding: 0 16px;
  background: var(--color-white);
  color: var(--color-text);
}

input:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(248, 178, 28, 0.34);
  outline-offset: 2px;
}

.field-hint,
.disclaimer-inline,
.form-response {
  margin: 14px 0 0;
  color: var(--color-gray-500);
  line-height: 1.6;
}

.results-panel {
  background:
    radial-gradient(circle at top right, rgba(248, 178, 28, 0.16), transparent 24%),
    linear-gradient(160deg, #13243a, #1e3550);
  color: var(--color-white);
  position: sticky;
  top: 96px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.results-kicker {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.results-highlight {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  padding-top: 2px;
  text-align: center;
}

.results-highlight strong {
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  color: #b7ea46;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.results-highlight span {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.2;
  font-size: 0.98rem;
  font-weight: 500;
}

.results-annual,
.results-explanation {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.results-annual {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 20px 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 6px;
}

.results-annual strong {
  font-size: clamp(3.4rem, 5.2vw, 5.2rem);
  line-height: 0.92;
  color: #9ef55d;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.results-annual span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: none;
}

.results-comparison {
  display: grid;
  gap: 14px;
  margin: 12px 0 0;
}

.results-comparison div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.results-comparison span {
  max-width: 68%;
  line-height: 1.4;
}

.results-comparison strong {
  text-align: right;
  white-space: nowrap;
}

.benefits-heading {
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits-heading .section-kicker {
  margin-bottom: 16px;
  color: var(--color-yellow);
  font-size: 0.92rem;
  letter-spacing: 0.14em;
}

.benefits-heading h2 {
  max-width: 15ch;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--color-white);
}

.benefits-heading h2 span {
  display: block;
  white-space: nowrap;
}

.benefits-heading p:last-child {
  width: 100%;
  max-width: 760px;
  margin-top: 18px;
  margin-inline: auto;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
  text-wrap: balance;
  line-height: 1.6;
}

#beneficios {
  background:
    radial-gradient(circle at top center, rgba(248, 178, 28, 0.1), transparent 24%),
    linear-gradient(180deg, #152434 0%, #172434 100%);
}

.benefits-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.benefit-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 30px;
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-card h3 {
  margin: 0;
}

.benefit-card p {
  margin: 0;
}

.benefit-savings {
  grid-column: span 7;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    radial-gradient(circle at top right, rgba(248, 178, 28, 0.14), transparent 28%),
    linear-gradient(160deg, #20354d 0%, #172434 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-savings::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(248, 178, 28, 0.16);
  box-shadow:
    inset 0 0 0 24px rgba(248, 178, 28, 0.04),
    inset 0 0 0 52px rgba(248, 178, 28, 0.03);
}

.benefit-no-fee {
  grid-column: span 5;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(160deg, #ea5b25 0%, #f8b21c 100%);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.benefit-no-fee::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -46px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 0 0 24px rgba(255, 255, 255, 0.05),
    inset 0 0 0 54px rgba(255, 255, 255, 0.03);
}

.benefit-small {
  grid-column: span 3;
  background: rgba(255, 255, 255, 0.96);
}

.benefit-eyebrow {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefit-savings .benefit-metric {
  margin: 0 0 12px;
  font-size: clamp(72px, 9vw, 138px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: var(--color-yellow);
}

.benefit-savings h3 {
  margin-bottom: 18px;
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--color-white);
}

.benefit-savings h3,
.benefit-no-fee h3 {
  font-size: clamp(26px, 2.5vw, 40px);
  color: var(--color-white);
}

.benefit-no-fee h3 {
  margin: 18px 0 14px;
}

.benefit-savings p,
.benefit-no-fee p {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.benefit-badge {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: 24px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 700;
}

.benefit-no-fee .benefit-eyebrow,
.benefit-no-fee h3,
.benefit-no-fee p {
  color: var(--color-white);
}

.benefit-support {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.benefit-support span {
  display: inline-flex;
  align-self: flex-start;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.92rem;
  font-weight: 700;
}

.benefit-small h3 {
  margin-bottom: 12px;
  font-size: 21px;
  color: var(--color-navy);
}

.benefit-small p {
  color: var(--color-gray-500);
  line-height: 1.55;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(248, 178, 28, 0.14), rgba(234, 91, 37, 0.12));
  border: 1px solid rgba(234, 91, 37, 0.08);
  color: var(--color-orange);
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin-top: 36px;
}

.audience-section {
  display: grid;
  gap: 28px;
  justify-items: center;
}

.audience-heading {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  text-align: center;
  margin-inline: auto;
}

.audience-heading .section-kicker {
  margin-bottom: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(248, 178, 28, 0.12);
  color: var(--color-orange);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.audience-heading h2 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.audience-heading h2 span {
  display: block;
  white-space: nowrap;
  width: max-content;
  margin-inline: auto;
}

.audience-heading p:last-child {
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.55;
  text-wrap: balance;
}

.audience-heading strong {
  color: var(--color-orange);
}

.audience-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(23, 36, 52, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.audience-card:hover {
  transform: translateY(-4px);
}

.audience-home,
.audience-multi {
  background: rgba(255, 255, 255, 0.96);
}

.audience-business {
  background:
    radial-gradient(circle at top right, rgba(248, 178, 28, 0.14), transparent 26%),
    linear-gradient(180deg, #1c2d43 0%, #172434 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.audience-multi {
  position: relative;
  overflow: hidden;
}

.audience-multi::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -30px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(28, 112, 78, 0.14);
  box-shadow:
    inset 0 0 0 22px rgba(40, 207, 24, 0.04),
    inset 0 0 0 50px rgba(28, 112, 78, 0.03);
}

.audience-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(248, 178, 28, 0.14), rgba(234, 91, 37, 0.12));
  color: var(--color-orange);
}

.audience-business .audience-icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-yellow);
}

.audience-multi .audience-icon {
  background: linear-gradient(135deg, rgba(40, 207, 24, 0.1), rgba(28, 112, 78, 0.08));
  color: var(--color-green-dark);
}

.audience-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-card h3 {
  margin: 0 0 12px;
  font-size: clamp(25px, 2.2vw, 32px);
  line-height: 1.05;
  color: var(--color-navy);
}

.audience-business h3,
.audience-business p,
.audience-business .audience-list li,
.audience-business .audience-detail {
  color: var(--color-white);
}

.audience-card p {
  margin: 0;
  color: var(--color-gray-500);
  line-height: 1.6;
}

.audience-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.audience-list li {
  position: relative;
  padding-left: 20px;
  color: var(--color-text);
  line-height: 1.5;
}

.audience-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 0 4px rgba(40, 207, 24, 0.12);
}

.audience-detail {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(23, 36, 52, 0.08);
}

.audience-business .audience-detail {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.audience-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px 38px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 24%, rgba(248, 178, 28, 0.12), transparent 18%),
    radial-gradient(circle at 82% 120%, rgba(40, 207, 24, 0.1), transparent 28%),
    linear-gradient(135deg, #172434 0%, #1c2d43 68%, #1c704e 100%);
  color: var(--color-white);
}

.audience-band::after {
  content: "";
  position: absolute;
  right: -22px;
  top: -16px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 26px rgba(255, 255, 255, 0.03),
    inset 0 0 0 56px rgba(255, 255, 255, 0.02);
}

.audience-band-copy,
.audience-band-cta {
  position: relative;
  z-index: 1;
}

.audience-band h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.coverage-states {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 14px;
}

.coverage-states span {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.coverage-states span:not(:last-child)::after {
  content: "•";
  margin-left: 14px;
  color: rgba(248, 178, 28, 0.82);
}

.audience-band-note {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.76);
}

.audience-band-cta {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.audience-band-cta p {
  margin: 0;
  max-width: 24ch;
  text-align: right;
  color: rgba(255, 255, 255, 0.88);
}

.coverage-band {
  position: relative;
  overflow: hidden;
  padding: 38px 40px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 77% 44%, rgba(248, 178, 28, 0.12), transparent 14%),
    radial-gradient(circle at 67% 52%, rgba(40, 207, 24, 0.1), transparent 16%),
    linear-gradient(135deg, #172434 0%, #1a2c43 58%, #20344c 100%);
  color: var(--color-white);
  box-shadow: 0 32px 60px rgba(10, 18, 29, 0.24);
}

.coverage-band::before,
.coverage-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.coverage-band::before {
  right: -42px;
  top: -18px;
  width: 198px;
  height: 198px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 28px rgba(255, 255, 255, 0.03),
    inset 0 0 0 58px rgba(255, 255, 255, 0.018);
}

.coverage-band::after {
  left: 46%;
  bottom: -56px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(248, 178, 28, 0.08);
}

.coverage-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(520px, 1.25fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.coverage-copy h3 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.coverage-subtitle,
.coverage-note {
  margin: 0;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.72;
}

.coverage-subtitle {
  margin-top: 18px;
}

.coverage-states {
  margin: 22px 0 14px;
  color: var(--color-white);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.coverage-note {
  margin-bottom: 18px;
}

.coverage-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

.coverage-legend span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.coverage-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.coverage-dot-active {
  background: linear-gradient(135deg, var(--color-orange), var(--color-yellow));
}

.coverage-dot-muted {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.coverage-map-shell {
  display: block;
}

.coverage-map-stage {
  position: relative;
  min-height: 500px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(9, 18, 30, 0.24);
}

.coverage-map {
  position: relative;
  width: 100%;
  height: 100%;
}

.brazil-map {
  width: 100%;
  height: auto;
  display: block;
}

.map-state {
  transform-box: fill-box;
  transform-origin: center;
  transition:
    transform 220ms ease,
    filter 220ms ease,
    opacity 220ms ease,
    fill 220ms ease,
    stroke 220ms ease;
}

.map-state--muted {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1.1;
}

.map-state--muted:hover {
  opacity: 0.88;
}

.map-state--active {
  cursor: pointer;
  fill: var(--map-accent);
  stroke: rgba(255, 255, 255, 0.58);
  stroke-width: 1.15;
}

.map-state--active:hover,
.map-state--active:focus-visible,
.map-state--active.is-selected {
  transform: translateY(-6px) scale(1.035);
  filter:
    drop-shadow(0 8px 12px rgba(0, 0, 0, 0.22))
    drop-shadow(0 0 14px currentColor);
}

.map-state--active.is-selected {
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 1.35;
}

.coverage-tooltip {
  position: absolute;
  z-index: 4;
  min-width: 180px;
  max-width: 220px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(23, 36, 52, 0.96);
  color: var(--color-white);
  box-shadow: 0 16px 28px rgba(5, 11, 20, 0.34);
  pointer-events: none;
}

.coverage-tooltip strong {
  font-size: 0.96rem;
}

.coverage-tooltip span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.coverage-tooltip-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.contact-section {
  background:
    radial-gradient(circle at right top, rgba(248, 178, 28, 0.12), transparent 20%),
    linear-gradient(180deg, #152434 0%, #172434 100%);
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 24px;
  align-items: center;
  padding: 38px;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-panel::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 26px rgba(255, 255, 255, 0.03),
    inset 0 0 0 56px rgba(255, 255, 255, 0.02);
}

.contact-copy,
.contact-visual {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-white);
}

.contact-copy p {
  margin: 0;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.contact-copy .button {
  margin-top: 26px;
}

.contact-note {
  margin-top: 16px !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

.contact-visual {
  min-height: 240px;
  display: grid;
  place-items: center;
}

.contact-whatsapp-mark {
  width: min(100%, 290px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 58%),
    linear-gradient(135deg, rgba(40, 207, 24, 0.22), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 26px rgba(255, 255, 255, 0.03),
    inset 0 0 0 58px rgba(255, 255, 255, 0.02);
}

.contact-whatsapp-mark span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 142px;
  border-radius: 50%;
  background: rgba(40, 207, 24, 0.14);
  color: #d8ffd2;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-footer a {
  color: inherit;
}

.transparency-heading {
  max-width: 860px;
}

#regras {
  background:
    radial-gradient(circle at right top, rgba(248, 178, 28, 0.1), transparent 18%),
    linear-gradient(180deg, #152434 0%, #172434 100%);
}

.transparency-heading h2 {
  color: var(--color-white);
}

.transparency-heading p:last-child {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.transparency-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.transparency-item {
  padding: 32px;
  color: var(--color-white);
}

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

.transparency-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-yellow);
}

.transparency-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.transparency-highlight {
  margin: 0 0 14px;
  color: var(--color-yellow);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
  line-height: 1.1;
}

.transparency-item h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  color: var(--color-white);
}

.transparency-item p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.transparency-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 0 6px;
  color: var(--color-white);
}

.transparency-footer h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.transparency-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.transparency-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 4px;
}

#regras {
  display: none;
}

.checkbox-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  margin: 16px 0 0;
}

.checkbox-field input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
}

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

.faq-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.faq-section .section-heading {
  max-width: 620px;
  margin-bottom: 26px;
}

.faq-section .section-kicker {
  margin-bottom: 8px;
}

.faq-section .section-heading h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.05;
}

.faq-section .section-heading p:last-child {
  margin-top: 12px;
}

.faq-item {
  padding: 0 24px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-weight: 800;
  color: var(--color-navy);
}

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

.faq-content {
  padding: 0 0 22px;
}

.clients-section {
  min-height: auto;
  padding: clamp(72px, 8vw, 110px) 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(248, 178, 28, 0.08), transparent 18%),
    linear-gradient(180deg, #f2f2f2 0%, #fafafa 100%);
}

.clients-section .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.clients-shell {
  min-height: 0;
  width: 100%;
  margin: 0;
}

.clients-showcase {
  position: relative;
  display: grid;
  gap: 18px;
}

.clients-heading {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  padding-inline: 20px;
  text-align: center;
}

.clients-heading h2 {
  max-width: 980px;
  margin: 18px auto 0;
  font-size: clamp(42px, 4.6vw, 68px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.clients-heading p:last-child {
  max-width: 760px;
  margin: 22px auto 0;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.clients-logos {
  margin-top: 18px;
  width: 100%;
  overflow: hidden;
}

.clients-rail {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.clients-viewport {
  overflow: hidden;
  min-width: 0;
  padding-inline: clamp(12px, 2vw, 24px);
}

.clients-viewport.is-dragging {
  cursor: grabbing;
}

.clients-track-wrap {
  display: flex;
  align-items: stretch;
  gap: 18px;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: max-content;
}

.clients-track.is-static {
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.client-logo-card {
  width: 240px;
  height: 126px;
  flex: 0 0 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 30px;
  border-radius: 24px;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition), filter var(--transition);
}

.client-logo-card:hover,
.client-logo-card:focus-within {
  transform: translateY(-3px);
  box-shadow: none;
}

.client-logo-card img,
.client-logo-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-card img {
  max-width: 185px;
  max-height: 74px;
  object-fit: contain;
  object-position: center;
}

.clients-showcase--grayscale .client-logo-card img {
  filter: grayscale(1);
  opacity: 0.72;
}

.clients-showcase--grayscale .client-logo-card:hover img,
.clients-showcase--grayscale .client-logo-card:focus-within img {
  filter: grayscale(0);
  opacity: 1;
}

.clients-showcase--static .clients-rail {
  grid-template-columns: 1fr;
}

.clients-showcase--static .clients-track-wrap {
  justify-content: center;
}

.clients-showcase--static .clients-viewport {
  overflow: visible;
}

.clients-track:has(> .client-logo-card:only-child) {
  position: relative;
  justify-content: center;
  min-width: 0;
  width: 100%;
  padding: 10px 0 4px;
}

.clients-track:has(> .client-logo-card:only-child)::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 180px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 178, 28, 0.12), transparent 70%);
  pointer-events: none;
}

.clients-track:has(> .client-logo-card:only-child) .client-logo-card {
  position: relative;
  z-index: 1;
}

.clients-showcase--scroll .clients-viewport,
.clients-showcase--marquee .clients-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  cursor: grab;
}

.clients-showcase--scroll .clients-viewport::-webkit-scrollbar,
.clients-showcase--marquee .clients-viewport::-webkit-scrollbar {
  display: none;
}

.clients-showcase--scroll .client-logo-card,
.clients-showcase--marquee .client-logo-card {
  scroll-snap-align: start;
}

.clients-showcase--marquee .clients-rail {
  grid-template-columns: 1fr;
}

.clients-showcase--marquee .clients-viewport {
  overflow: hidden;
}

.clients-showcase--marquee .clients-track-wrap {
  width: max-content;
  animation: clients-marquee 48s linear infinite;
}

.clients-showcase--marquee:hover .clients-track-wrap,
.clients-showcase--marquee:focus-within .clients-track-wrap,
.clients-showcase--marquee.is-paused .clients-track-wrap {
  animation-play-state: paused;
}

.clients-arrow,
.clients-pause-button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.clients-arrow {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(23, 36, 52, 0.08);
  color: var(--color-navy);
  transition: background var(--transition), transform var(--transition);
}

.clients-arrow:hover,
.clients-arrow:focus-visible {
  background: rgba(23, 36, 52, 0.14);
  transform: translateY(-1px);
}

.clients-arrow span {
  font-size: 1.45rem;
  line-height: 1;
}

.clients-more-message {
  margin: -8px 0 0;
  color: var(--color-gray-500);
  text-align: center;
}

@keyframes clients-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.about-section {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background:
    radial-gradient(circle at 15% 20%, rgba(248, 178, 28, 0.14), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(234, 91, 37, 0.16), transparent 22%),
    linear-gradient(135deg, #142235 0%, #16283d 46%, #1d3148 100%);
}

.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-section::before {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 28px;
  border: 1px solid rgba(248, 178, 28, 0.12);
  box-shadow:
    0 0 0 60px rgba(248, 178, 28, 0.04),
    0 0 0 120px rgba(40, 207, 24, 0.03);
}

.about-section::after {
  width: 220px;
  height: 220px;
  left: -90px;
  bottom: 56px;
  border: 1px solid rgba(234, 91, 37, 0.14);
}

.about-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
}

.about-intro {
  display: grid;
  gap: 24px;
  max-width: 760px;
}

.about-heading {
  display: grid;
  gap: 18px;
}

.about-kicker {
  color: #ffbd34;
}

.about-heading h2 {
  margin: 0;
  max-width: 12ch;
  color: var(--color-white);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.about-subtitle {
  max-width: 60ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.75;
}

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

.about-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.about-badge {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.about-diagram {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    rgba(12, 22, 35, 0.42);
  box-shadow: 0 32px 60px rgba(7, 14, 24, 0.3);
}

.about-diagram-track {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    rgba(248, 178, 28, 0.12) 0%,
    rgba(248, 178, 28, 0.88) 32%,
    rgba(234, 91, 37, 0.88) 50%,
    rgba(40, 207, 24, 0.88) 72%,
    rgba(40, 207, 24, 0.16) 100%
  );
  box-shadow:
    0 0 18px rgba(248, 178, 28, 0.24),
    0 0 28px rgba(40, 207, 24, 0.14);
}

.about-diagram-track::after {
  content: "";
  position: absolute;
  inset: -4px 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 35%,
    transparent 65%
  );
  animation: about-flow-glow 5.2s ease-in-out infinite;
}

.about-track-node {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.04);
}

.about-track-node-left {
  left: 0;
  background: var(--color-yellow);
}

.about-track-node-center {
  left: 50%;
  width: 18px;
  height: 18px;
  background: var(--color-orange);
  box-shadow:
    0 0 0 10px rgba(234, 91, 37, 0.12),
    0 0 24px rgba(234, 91, 37, 0.24);
}

.about-track-node-right {
  left: 100%;
  background: var(--color-green);
}

.about-diagram-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-flow-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 220px;
  padding: 30px 24px 26px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.about-flow-card.is-coop {
  background:
    radial-gradient(circle at 50% 12%, rgba(248, 178, 28, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(234, 91, 37, 0.13), rgba(255, 255, 255, 0.05));
  border-color: rgba(255, 189, 52, 0.22);
  transform: translateY(-10px);
}

.about-flow-icon,
.about-responsibility-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.about-flow-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.08);
}

.about-flow-card.is-plants .about-flow-icon {
  color: var(--color-yellow);
}

.about-flow-card.is-coop .about-flow-icon {
  color: #ff9b34;
  background: rgba(255, 255, 255, 0.12);
}

.about-flow-card.is-members .about-flow-icon {
  color: #7ee377;
}

.about-flow-icon svg,
.about-responsibility-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-flow-card h3,
.about-responsibility h3 {
  margin: 0;
  color: var(--color-white);
}

.about-flow-card h3 {
  font-size: 1.3rem;
}

.about-flow-card p,
.about-responsibility p,
.about-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

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

.about-responsibility {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-responsibility-icon {
  width: 46px;
  height: 46px;
  color: #ffb43b;
  background: rgba(255, 255, 255, 0.08);
}

.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(234, 91, 37, 0.18), rgba(248, 178, 28, 0.14));
  border: 1px solid rgba(255, 199, 103, 0.18);
}

.about-cta p {
  font-size: clamp(1.12rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: var(--color-white);
}

@keyframes about-flow-glow {
  0%,
  100% {
    transform: translateX(-18%);
    opacity: 0;
  }

  20%,
  80% {
    opacity: 1;
  }

  50% {
    transform: translateX(22%);
    opacity: 1;
  }
}

.site-footer {
  position: relative;
  background:
    radial-gradient(circle at 14% 18%, rgba(248, 178, 28, 0.08), transparent 18%),
    linear-gradient(180deg, #172434 0%, #162131 100%);
  color: rgba(255, 255, 255, 0.78);
  padding: 42px 0 24px;
}

.footer-grid {
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
  gap: 40px;
}

.footer-brand-block {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.footer-brand-block img {
  height: 60px;
  width: auto;
}

.footer-brand-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
}

.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-weight: 700;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.footer-whatsapp-link strong {
  color: #ffd18c;
}

.footer-whatsapp-link:hover,
.footer-whatsapp-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(234, 91, 37, 0.12);
  border-color: rgba(255, 194, 167, 0.26);
  box-shadow: 0 14px 30px rgba(7, 14, 24, 0.2);
}

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

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(2px);
}

.footer-bottom {
  grid-template-columns: 1fr auto;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  align-items: start;
  gap: 18px 28px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:first-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.footer-bottom p:first-child span:first-child {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.footer-bottom p:last-child {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

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

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

  .benefit-savings,
  .benefit-no-fee,
  .benefit-small {
    grid-column: span 1;
    min-height: 280px;
  }

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

  .audience-card:last-child {
    grid-column: 1 / -1;
  }

  .audience-band {
    grid-template-columns: 1fr;
  }

  .audience-band-cta {
    justify-items: start;
  }

  .audience-band-cta p {
    text-align: left;
  }

  .coverage-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .clients-rail {
    grid-template-columns: 1fr;
  }

  .clients-heading h2 {
    max-width: 14ch;
  }

  .coverage-copy h3 {
    max-width: 11ch;
  }

  .coverage-map-stage {
    min-height: auto;
  }

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

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

  .transparency-item:nth-child(3),
  .transparency-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .transparency-item:nth-child(3),
  .transparency-item:nth-child(4) {
    border-left: 0;
  }

  .transparency-item:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .transparency-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .calculator-layout,
  .split-layout,
  .about-layout,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .about-diagram-grid,
  .about-responsibilities {
    grid-template-columns: 1fr;
  }

  .about-flow-card.is-coop {
    transform: none;
  }

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

  .results-panel {
    position: static;
  }
}

@media (max-width: 1100px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    margin-left: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(23, 36, 52, 0.98);
    box-shadow: 0 24px 48px rgba(8, 16, 24, 0.34);
  }

  .main-nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .main-nav__links > a,
  .main-nav__trigger {
    justify-content: space-between;
    width: 100%;
    min-height: 46px;
    padding: 0 4px;
  }

  .main-nav__item {
    display: grid;
  }

  .main-nav__submenu {
    position: static;
    left: auto;
    min-width: 0;
    padding: 6px 0 0 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .main-nav__item.is-open .main-nav__submenu {
    display: grid;
  }

  .main-nav__submenu a {
    min-height: 38px;
    padding: 0 4px;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
  }

  .main-nav__submenu a:hover,
  .main-nav__submenu a:focus-visible {
    background: transparent;
    color: var(--color-white);
  }

  .main-nav__cta {
    display: none;
  }

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

  .form-grid,
  .audience-grid,
  .steps-grid,
  .rules-grid,
  .footer-nav {
    grid-template-columns: 1fr;
  }

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

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

  .coverage-band {
    padding: 30px 24px;
  }

  .client-logo-card {
    width: 210px;
    height: 112px;
    flex-basis: 210px;
    padding: 20px 22px;
  }

  .client-logo-card img {
    max-width: 168px;
    max-height: 68px;
  }

  .coverage-copy h3 {
    max-width: 12ch;
  }

  .coverage-map-stage {
    padding: 18px 12px;
  }

  .coverage-tooltip {
    display: none;
  }

  .about-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .about-heading h2 {
    max-width: 11ch;
  }

  .about-diagram {
    padding: 24px 20px;
  }

  .about-diagram-track {
    left: 50%;
    right: auto;
    top: 18%;
    bottom: 18%;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
    background: linear-gradient(
      180deg,
      rgba(248, 178, 28, 0.16) 0%,
      rgba(248, 178, 28, 0.88) 28%,
      rgba(234, 91, 37, 0.9) 52%,
      rgba(40, 207, 24, 0.88) 78%,
      rgba(40, 207, 24, 0.18) 100%
    );
  }

  .about-diagram-track::after {
    inset: 0 -4px;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(255, 255, 255, 0.45) 36%,
      transparent 68%
    );
  }

  .about-track-node-left,
  .about-track-node-center,
  .about-track-node-right {
    left: 50%;
  }

  .about-track-node-left {
    top: 0;
  }

  .about-track-node-center {
    top: 50%;
  }

  .about-track-node-right {
    top: 100%;
  }

  .benefits-heading h2 {
    max-width: 14ch;
  }

  .audience-heading h2 {
    max-width: 14ch;
  }

  .audience-heading h2 span {
    white-space: normal;
  }

  .hero {
    background-position: center;
  }

  .hero-title {
    font-size: clamp(44px, 8vw, 64px);
  }

  .benefits-heading h2 span {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .coverage-band {
    padding: 26px 18px;
  }

  .client-logo-card {
    width: 172px;
    height: 98px;
    flex-basis: 172px;
  }

  .client-logo-card img {
    max-width: 142px;
    max-height: 58px;
  }

  .coverage-states {
    font-size: 1.28rem;
  }

  .coverage-copy .button {
    width: min(100%, 320px);
  }

  .clients-arrow {
    display: none;
  }

  .about-copy,
  .about-cta,
  .about-responsibility {
    grid-template-columns: 1fr;
  }

  .about-badge {
    width: 100%;
    justify-content: center;
  }

  .header-inner {
    width: var(--container-width);
  }

  .brand img {
    height: 36px;
    max-width: 200px;
  }

  .hero {
    min-height: auto;
    padding: 88px 0 72px;
    background-position: 58% center;
  }

  .hero-content {
    width: min(100% - 24px, 1120px);
  }

  .hero-title {
    margin-top: 16px;
    font-size: clamp(38px, 11vw, 52px);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-benefits {
    gap: 10px;
  }

  .hero-benefit {
    width: 100%;
    max-width: 320px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button,
  .hero-actions .button-secondary {
    width: min(100%, 320px);
  }

  .benefit-card,
  .benefit-savings,
  .benefit-no-fee,
  .benefit-small {
    min-height: auto;
    padding: 28px;
  }

  .benefit-savings .benefit-metric {
    font-size: clamp(62px, 18vw, 92px);
  }

  .audience-card,
  .audience-band {
    padding: 28px;
  }

  .coverage-states {
    gap: 10px;
  }

  .coverage-states span {
    font-size: 1.5rem;
  }

  .coverage-states span:not(:last-child)::after {
    margin-left: 10px;
  }

  .audience-band-cta .button {
    width: min(100%, 320px);
  }

  .contact-panel {
    padding: 28px;
  }

  .contact-copy .button {
    width: min(100%, 320px);
  }

  .contact-visual {
    min-height: 180px;
  }

  .contact-whatsapp-mark {
    width: min(100%, 220px);
  }

  .contact-whatsapp-mark span {
    min-width: 112px;
    min-height: 112px;
    font-size: 1rem;
  }

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

  .transparency-item + .transparency-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .transparency-item:nth-child(even) {
    border-left: 0;
  }

  .transparency-footer {
    padding: 0;
  }

  .transparency-footer .button {
    width: min(100%, 320px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .map-state {
    transition: none;
  }

  .map-state--active:hover,
  .map-state--active:focus-visible,
  .map-state--active.is-selected {
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.investor-page {
  background:
    radial-gradient(circle at top right, rgba(248, 178, 28, 0.08), transparent 22%),
    linear-gradient(180deg, #f5f7fa 0%, #ffffff 28%, #f6f8fb 100%);
}

.investor-page .site-header {
  background: rgba(23, 36, 52, 0.94);
}

.investor-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(90px, 10vh, 140px) 0;
  color: var(--color-white);
  overflow: hidden;
  background-image: url("../assets/investor-hero-solar-farm.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.investor-hero::before,
.investor-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.investor-hero::before {
  background:
    linear-gradient(
      180deg,
      rgba(23, 36, 52, 0.62) 0%,
      rgba(23, 36, 52, 0.82) 100%
    );
}

.investor-hero::after {
  inset: auto 0 8%;
  width: min(680px, 58vw);
  height: 160px;
  left: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at center, rgba(248, 178, 28, 0.24), transparent 62%),
    radial-gradient(circle at 58% 44%, rgba(234, 91, 37, 0.2), transparent 54%);
  filter: blur(28px);
  opacity: 0.6;
}

.investor-hero__content,
.investor-final-cta-shell {
  position: relative;
  z-index: 1;
}

.investor-hero__content {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.investor-hero__label {
  margin: 0 0 22px;
  color: #f8b21c;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.investor-hero__title,
.investor-final-cta h2 {
  margin: 0;
  letter-spacing: -0.05em;
}

.investor-hero__title {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-size: clamp(58px, 6vw, 92px);
  line-height: 0.96;
  text-wrap: balance;
}

.investor-hero__description {
  max-width: 820px;
  margin: 26px auto 0;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.investor-hero__highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.investor-hero__highlight {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(23, 36, 52, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  font-weight: 600;
}

.investor-hero__highlight::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
  box-shadow: 0 0 0 4px rgba(248, 178, 28, 0.14);
}

.investor-hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.investor-hero__actions .button,
.investor-hero__actions .button-secondary {
  min-height: 50px;
  padding: 0 28px;
  font-size: clamp(15px, 1vw, 17px);
}

.investor-section-heading {
  max-width: 780px;
}

.investor-section-heading .section-kicker {
  margin-bottom: 14px;
  color: var(--color-orange);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.investor-section-accent,
.investor-section-note {
  color: var(--color-navy);
  font-weight: 700;
}

.investor-section-note {
  margin: 22px 0 0;
  text-align: center;
}

.investor-challenges {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(23, 36, 52, 0.04), rgba(23, 36, 52, 0.02)),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 36, 52, 0.08);
  box-shadow: var(--shadow-card);
}

.investor-challenges::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(248, 178, 28, 0.2),
    rgba(234, 91, 37, 0.44),
    rgba(28, 112, 78, 0.28)
  );
}

.investor-challenge-card,
.investor-step-card,
.investor-benefit-card,
.investor-profile-card,
.investor-indicator-card,
.investor-client-card,
.investor-checklist-panel {
  border-radius: 26px;
}

.investor-challenge-card {
  position: relative;
  z-index: 1;
  padding: 28px 24px 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(23, 36, 52, 0.06);
}

.investor-challenge-index,
.investor-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.investor-challenge-index {
  margin-bottom: 18px;
  background: rgba(248, 178, 28, 0.14);
  color: var(--color-orange);
}

.investor-challenge-card h3,
.investor-step-card h3,
.investor-benefit-card h3,
.investor-profile-card h3,
.investor-comparison-card h3,
.investor-flow-card h3 {
  margin: 0 0 10px;
  color: var(--color-navy);
}

.investor-challenge-card p,
.investor-step-card p,
.investor-benefit-card p,
.investor-profile-card p,
.investor-comparison-card li,
.investor-flow-card p,
.investor-checklist-panel p,
.investor-final-cta p {
  margin: 0;
  color: var(--color-gray-500);
  line-height: 1.7;
}

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

.investor-comparison-card {
  padding: 32px;
  border-radius: 30px;
}

.investor-comparison-card-muted {
  background: rgba(242, 242, 242, 0.92);
  border: 1px solid rgba(23, 36, 52, 0.08);
}

.investor-comparison-card-strong {
  background:
    radial-gradient(circle at top right, rgba(248, 178, 28, 0.14), transparent 24%),
    linear-gradient(160deg, #172434 0%, #1a2d43 100%);
  color: var(--color-white);
  box-shadow: 0 24px 46px rgba(10, 22, 34, 0.24);
}

.investor-comparison-card-strong h3,
.investor-comparison-card-strong li {
  color: var(--color-white);
}

.investor-list,
.investor-checklist-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.investor-list li,
.investor-checklist-list li {
  position: relative;
  padding-left: 20px;
}

.investor-list li::before,
.investor-checklist-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-orange);
}

.investor-list-strong li::before {
  background: var(--color-green);
  box-shadow: 0 0 0 4px rgba(40, 207, 24, 0.16);
}

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

.investor-step-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 36, 52, 0.08);
  box-shadow: var(--shadow-card);
}

.investor-step-number {
  margin-bottom: 18px;
  background: rgba(23, 36, 52, 0.08);
  color: var(--color-navy);
}

.investor-benefits {
  padding: clamp(90px, 9vw, 130px) 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(40, 207, 24, 0.07), transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(248, 178, 28, 0.08), transparent 35%),
    #172434;
}

.investor-benefits__container {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.investor-benefits__header {
  max-width: 960px;
  margin-bottom: 0;
}

.investor-benefits__kicker {
  color: var(--color-orange);
}

.investor-benefits__header .investor-benefits__title {
  width: 100%;
  max-width: 1120px;
  margin: 18px auto 0;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  opacity: 1;
  background: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  font-size: clamp(46px, 4.5vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-align: center;
  text-wrap: balance;
}

.investor-benefits__title span {
  display: block;
  white-space: nowrap;
}

.investor-benefits__header .investor-benefits__description {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.74);
  opacity: 1;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.55;
  text-align: center;
  text-wrap: balance;
}

.investor-benefits-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.investor-benefit-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.investor-benefit-card:hover {
  transform: translateY(-4px);
}

.investor-benefit-card h3 {
  margin: 0 0 12px;
}

.investor-benefit-card p {
  margin: 0;
}

.investor-benefit--featured {
  grid-column: span 7;
  min-height: 290px;
  padding: 44px;
  display: grid;
  align-content: space-between;
  background:
    radial-gradient(circle at 90% 10%, rgba(248, 178, 28, 0.24), transparent 38%),
    linear-gradient(135deg, #223448 0%, #15443d 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
}

.investor-benefit--featured::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -38px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 0 22px rgba(255, 255, 255, 0.04),
    inset 0 0 0 52px rgba(255, 255, 255, 0.03);
}

.investor-benefit--featured h3,
.investor-benefit--featured p {
  color: var(--color-white);
}

.investor-benefit--featured h3 {
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.1;
}

.investor-benefit--featured p {
  font-size: 17px;
  line-height: 1.55;
}

.investor-benefit__visual {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.investor-benefit__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(248, 178, 28, 0.14);
  color: #ea5b25;
  margin-bottom: 24px;
  transition: background var(--transition), color var(--transition);
}

.investor-benefit__icon svg,
.investor-coverage-strip__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.investor-benefit__icon--featured {
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #ffd18c;
  width: 56px;
  height: 56px;
}

.investor-benefit__content {
  position: relative;
  z-index: 1;
}

.investor-benefit__indicators {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 20px;
}

.investor-benefit__indicators::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(248, 178, 28, 0.3),
    rgba(234, 91, 37, 0.38),
    rgba(255, 255, 255, 0.14)
  );
}

.investor-benefit__indicator {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.92rem;
  font-weight: 700;
}

.investor-benefit__indicator::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
}

.investor-benefit--service {
  grid-column: span 5;
  min-height: 290px;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(248, 178, 28, 0.22), transparent 24%),
    linear-gradient(160deg, #f6d893 0%, #f4eee3 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  color: var(--color-navy);
}

.investor-benefit--service {
  display: flex;
  flex-direction: column;
}

.investor-benefit__eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(23, 36, 52, 0.08);
  color: var(--color-navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  margin-top: auto;
  padding-top: 34px;
}

.contact-flow::before,
.contact-flow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contact-flow::before {
  width: 120px;
  height: 120px;
  right: -28px;
  bottom: -34px;
  border: 1px solid rgba(23, 36, 52, 0.08);
  box-shadow:
    inset 0 0 0 18px rgba(255, 255, 255, 0.12),
    inset 0 0 0 40px rgba(255, 255, 255, 0.08);
}

.contact-flow::after {
  width: 74px;
  height: 74px;
  left: -10px;
  top: 18px;
  border: 1px solid rgba(23, 36, 52, 0.07);
}

.contact-flow__track {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 62px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(23, 36, 52, 0.12),
    rgba(23, 36, 52, 0.34),
    rgba(23, 36, 52, 0.12)
  );
}

.contact-flow__item {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.contact-flow__item strong {
  color: var(--color-navy);
  font-size: 0.9rem;
}

.contact-flow__item--coop strong {
  color: #183f3a;
}

.contact-flow__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-navy);
  box-shadow: 0 8px 18px rgba(23, 36, 52, 0.08);
}

.contact-flow__item--coop .contact-flow__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #24354a, #183f3a);
  color: #ffd18c;
  box-shadow: 0 12px 24px rgba(23, 36, 52, 0.16);
}

.contact-flow__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-flow__caption {
  display: inline-block;
  margin-top: 14px;
  color: rgba(23, 36, 52, 0.7);
  font-size: 0.92rem;
  font-weight: 700;
}

.investor-benefit--small {
  grid-column: span 4;
  min-height: 210px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid rgba(23, 36, 52, 0.1);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  color: var(--color-navy);
}

.investor-benefit--small:hover {
  border-color: rgba(248, 178, 28, 0.26);
}

.investor-benefit--small h3 {
  font-size: 21px;
  line-height: 1.2;
}

.investor-benefit--small p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(23, 36, 52, 0.7);
}

.investor-benefit--small:hover .investor-benefit__icon {
  background: rgba(248, 178, 28, 0.22);
  color: var(--color-orange);
}

.investor-coverage-strip {
  margin-top: 20px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.investor-coverage-strip__icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(248, 178, 28, 0.12);
  color: #f8b21c;
}

.investor-coverage-strip__content {
  flex: 1 1 auto;
  display: grid;
  gap: 10px;
}

.investor-coverage-strip__content strong {
  color: var(--color-white);
  font-size: 18px;
}

.investor-coverage-strip__states {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.investor-coverage-strip__states span {
  color: #ffd18c;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.investor-coverage-strip__states span:not(:last-child)::after {
  content: "•";
  margin-left: 14px;
  color: rgba(248, 178, 28, 0.7);
}

.investor-coverage-strip__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.investor-coverage-strip__link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-weight: 700;
}

.investor-coverage-strip__link:hover,
.investor-coverage-strip__link:focus-visible {
  color: #ffd18c;
  border-color: rgba(255, 209, 140, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.investor-flow-shell {
  --flow-shell-pad: 34px;
  --flow-gap: 20px;
  --flow-card-center-offset: calc((100% - (var(--flow-shell-pad) * 2) - (var(--flow-gap) * 2)) / 6);
  position: relative;
  padding: var(--flow-shell-pad);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(248, 178, 28, 0.14), transparent 28%),
    linear-gradient(135deg, #142235 0%, #172434 48%, #1d3148 100%);
  box-shadow: 0 32px 60px rgba(7, 14, 24, 0.22);
}

.investor-flow-track {
  position: absolute;
  left: calc(var(--flow-shell-pad) + var(--flow-card-center-offset));
  right: calc(var(--flow-shell-pad) + var(--flow-card-center-offset));
  top: 76px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(248, 178, 28, 0.96) 0%,
    rgba(234, 91, 37, 0.94) 50%,
    rgba(40, 207, 24, 0.94) 100%
  );
  z-index: 1;
}

.investor-flow-track::after {
  content: "";
  position: absolute;
  inset: -6px 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  opacity: 0.42;
  animation: about-flow-glow 5.4s ease-in-out infinite;
}

.investor-flow-node {
  display: none;
}

.investor-flow-node-left {
  background: var(--color-yellow);
}

.investor-flow-node-center {
  left: 50%;
  background: var(--color-orange);
}

.investor-flow-node-right {
  background: var(--color-green);
}

.investor-flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  z-index: 3;
}

.investor-flow-card {
  min-height: 220px;
  padding: 84px 28px 32px;
  position: relative;
  display: grid;
  align-content: start;
  justify-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.investor-flow-card::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(21, 34, 52, 0.94);
}

.investor-flow-card h3,
.investor-flow-card p {
  color: var(--color-white);
}

.investor-flow-card h3 {
  margin: 0;
}

.investor-flow-card p {
  max-width: 20ch;
}

.investor-flow-card:first-child::before {
  background: var(--color-yellow);
}

.investor-flow-card-center::before {
  background: var(--color-orange);
}

.investor-flow-card:last-child::before {
  background: var(--color-green);
}

.investor-flow-card-center {
  background:
    radial-gradient(circle at top center, rgba(248, 178, 28, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 209, 140, 0.22);
}

.investor-entry-paths {
  position: relative;
  background:
    radial-gradient(circle at top center, rgba(248, 178, 28, 0.08), transparent 24%),
    linear-gradient(180deg, #f7f5f1 0%, #fdfcf9 100%);
}

.investor-entry-paths__heading {
  max-width: 72ch;
}

.investor-entry-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.investor-entry-card {
  height: 100%;
  padding: 28px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 36, 52, 0.08);
  box-shadow: 0 22px 42px rgba(14, 25, 37, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.investor-entry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 48px rgba(14, 25, 37, 0.12);
}

.investor-entry-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(248, 178, 28, 0.12);
  color: var(--color-yellow-dark);
}

.investor-entry-card__icon svg {
  width: 24px;
  height: 24px;
}

.investor-entry-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(23, 36, 52, 0.05);
  color: var(--color-navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.investor-entry-card h3 {
  margin: 0;
  color: var(--color-navy);
  font-size: 1.75rem;
  line-height: 1.05;
}

.investor-entry-card p {
  margin: 0;
  color: var(--color-gray-500);
  line-height: 1.72;
}

.investor-entry-card__cta {
  width: 100%;
  justify-content: center;
}

.investor-entry-card--yellow {
  border-top: 3px solid rgba(248, 178, 28, 0.9);
}

.investor-entry-card--yellow .investor-entry-card__icon,
.investor-entry-card--yellow .investor-entry-card__tag {
  background: rgba(248, 178, 28, 0.14);
}

.investor-entry-card--yellow:hover {
  border-color: rgba(248, 178, 28, 0.32);
}

.investor-entry-card--orange {
  border-top: 3px solid rgba(234, 91, 37, 0.9);
}

.investor-entry-card--orange .investor-entry-card__icon,
.investor-entry-card--orange .investor-entry-card__tag {
  background: rgba(234, 91, 37, 0.12);
  color: var(--color-orange-dark);
}

.investor-entry-card--orange:hover {
  border-color: rgba(234, 91, 37, 0.28);
}

.investor-entry-card--green {
  border-top: 3px solid rgba(40, 207, 24, 0.82);
}

.investor-entry-card--green .investor-entry-card__icon,
.investor-entry-card--green .investor-entry-card__tag {
  background: rgba(40, 207, 24, 0.1);
  color: #1f7d14;
}

.investor-entry-card--green:hover {
  border-color: rgba(40, 207, 24, 0.28);
}

.investor-entry-card--featured {
  background:
    radial-gradient(circle at top right, rgba(40, 207, 24, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fbfcf8 100%);
  border-color: rgba(40, 207, 24, 0.16);
  box-shadow: 0 26px 48px rgba(14, 25, 37, 0.1);
}

.investor-entry-band {
  margin-top: 28px;
  padding: 30px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at top center, rgba(248, 178, 28, 0.1), transparent 32%),
    linear-gradient(135deg, rgba(23, 36, 52, 0.97) 0%, rgba(29, 49, 72, 0.98) 100%);
  box-shadow: 0 28px 54px rgba(10, 22, 34, 0.16);
}

.investor-entry-band__copy {
  display: grid;
  gap: 16px;
}

.investor-entry-band h3 {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
}

.investor-entry-band p {
  margin: 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.78);
}

.investor-entry-band__flow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.investor-entry-band__flow span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-weight: 700;
}

.investor-entry-band__flow span:not(:last-child)::after {
  content: "→";
  margin-left: 18px;
  color: rgba(255, 209, 140, 0.92);
}

.investor-entry-band__cta {
  white-space: nowrap;
}

.investor-entry-paths__note {
  margin: 16px 0 0;
  text-align: center;
  color: var(--color-gray-500);
  font-size: 0.95rem;
}

.investor-profiles-grid,
.investor-indicators-grid,
.investor-client-logos {
  display: grid;
  gap: 18px;
}

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

.investor-profile-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 36, 52, 0.08);
  box-shadow: var(--shadow-card);
}

.investor-checklist-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.investor-checklist-copy {
  display: grid;
  gap: 22px;
}

.investor-checklist-panel {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(248, 178, 28, 0.14), transparent 28%),
    linear-gradient(160deg, #172434 0%, #1a2d43 100%);
  color: var(--color-white);
  box-shadow: 0 24px 46px rgba(10, 22, 34, 0.22);
}

.investor-checklist-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.investor-credibility-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
}

.investor-credibility-header span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(23, 36, 52, 0.06);
  color: var(--color-navy);
  font-weight: 700;
}

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

.investor-indicator-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 36, 52, 0.08);
}

.investor-indicator-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--color-gray-500);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.investor-indicator-card strong {
  color: var(--color-navy);
  font-size: 1.2rem;
  line-height: 1.4;
}

.investor-client-logos {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.investor-client-card {
  min-height: 112px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 36, 52, 0.08);
}

.investor-client-card img {
  max-width: 160px;
  max-height: 54px;
  object-fit: contain;
}

.investor-optional-section[hidden] {
  display: none;
}

.investor-final-cta {
  position: relative;
  color: var(--color-white);
  background:
    radial-gradient(circle at 84% 22%, rgba(248, 178, 28, 0.14), transparent 18%),
    linear-gradient(135deg, #142235 0%, #172434 48%, #1d3148 100%);
}

.investor-final-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.investor-final-cta h2 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.investor-final-cta p {
  max-width: 58ch;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.investor-final-actions {
  display: grid;
  gap: 14px;
}

.investor-final-cta .button-secondary {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1080px) {
  .investor-challenges,
  .investor-steps,
  .investor-profiles-grid,
  .investor-indicators-grid,
  .investor-client-logos,
  .investor-comparison-grid,
  .investor-checklist-layout,
  .investor-final-cta-shell,
  .investor-entry-paths__grid,
  .investor-entry-band {
    grid-template-columns: 1fr;
  }

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

  .investor-benefit--featured {
    grid-column: 1 / -1;
  }

  .investor-benefit--service,
  .investor-benefit--small {
    grid-column: span 1;
  }

  .investor-benefit--small:last-child {
    grid-column: 1 / -1;
  }

  .investor-coverage-strip {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .investor-flow-track {
    left: 45px;
    right: auto;
    top: 60px;
    width: 2px;
    height: calc(100% - 120px);
    background: linear-gradient(
      180deg,
      rgba(248, 178, 28, 0.96) 0%,
      rgba(234, 91, 37, 0.94) 50%,
      rgba(40, 207, 24, 0.94) 100%
    );
  }

  .investor-flow-track::after {
    inset: 0 -6px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  }

  .investor-flow-node {
    display: none;
  }

  .investor-flow-card {
    min-height: 0;
    padding: 32px 28px 32px 74px;
    justify-items: start;
    text-align: left;
  }

  .investor-flow-card::before {
    top: 36px;
    left: 45px;
    width: 13px;
    height: 13px;
    transform: translate(-50%, -50%);
  }

  .investor-flow-card p {
    max-width: none;
  }

  .investor-flow-card-center {
    transform: none;
  }

  .investor-entry-band__cta {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .investor-hero {
    padding: 84px 0 72px;
    background-position: 58% center;
  }

  .investor-hero__title {
    font-size: clamp(44px, 8vw, 68px);
  }

  .investor-challenges::before {
    display: none;
  }

  .investor-flow-shell {
    padding: 24px;
  }

  .investor-flow-track {
    left: 34px;
    top: 52px;
    height: calc(100% - 104px);
  }

  .investor-flow-card {
    padding: 28px 24px 28px 64px;
    border-radius: 24px;
  }

  .investor-flow-card::before {
    top: 34px;
    left: 34px;
  }

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

  .investor-entry-band {
    padding: 26px 24px;
  }

  .investor-entry-band__flow {
    gap: 10px 14px;
  }

  .investor-entry-band__flow span {
    min-height: 40px;
  }

  .investor-benefits__title span {
    white-space: normal;
  }

  .investor-benefit--service {
    grid-column: 1 / -1;
  }

  .investor-benefit--small:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .investor-hero {
    padding: 76px 0 64px;
    background-position: 63% center;
  }

  .investor-hero__title {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 0.98;
  }

  .investor-hero__description {
    font-size: 1rem;
  }

  .investor-hero__highlights {
    gap: 10px;
  }

  .investor-hero__highlight,
  .investor-hero__actions .button,
  .investor-hero__actions .button-secondary,
  .investor-final-actions .button {
    width: 100%;
  }

  .investor-challenges,
  .investor-comparison-card,
  .investor-step-card,
  .investor-benefit-card,
  .investor-profile-card,
  .investor-checklist-panel,
  .investor-indicator-card,
  .investor-client-card {
    padding: 24px;
  }

  .investor-credibility-header {
    align-items: flex-start;
  }

  .investor-benefits-grid {
    grid-template-columns: 1fr;
  }

  .investor-benefit--featured,
  .investor-benefit--service,
  .investor-benefit--small,
  .investor-benefit--small:last-child {
    grid-column: 1 / -1;
  }

  .investor-coverage-strip {
    padding: 22px 24px;
  }

  .investor-coverage-strip__states span:not(:last-child)::after {
    margin-left: 10px;
  }

  .investor-entry-card {
    padding: 24px;
    border-radius: 24px;
  }

  .investor-entry-card h3 {
    font-size: 1.5rem;
  }

  .investor-entry-band__flow {
    flex-direction: column;
    align-items: stretch;
  }

  .investor-entry-band__flow span {
    justify-content: center;
  }

  .investor-entry-band__flow span:not(:last-child)::after {
    content: "↓";
    margin: 10px 0 0;
  }
}

/* Investor page restructure */
.investor-page .container {
  max-width: 1180px;
}

.investor-page .section {
  padding: 96px 0;
}

.investor-page .section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.investor-page .section-heading p:last-child {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.investor-page .site-header {
  background: rgba(23, 36, 52, 0.94);
}

.investor-hero {
  min-height: 88vh;
  padding: 112px 0 88px;
}

.investor-hero__content {
  max-width: 920px;
  gap: 22px;
}

.investor-hero__title {
  max-width: 15ch;
}

.investor-hero__description {
  max-width: 720px;
}

.investor-hero__label {
  white-space: normal;
  line-height: 1.35;
}

.investor-hero__title span {
  display: block;
}

.investor-hero__highlights {
  display: none;
}

.investor-entry-paths {
  background:
    radial-gradient(circle at top center, rgba(248, 178, 28, 0.08), transparent 24%),
    linear-gradient(180deg, #f6f4ee 0%, #fcfbf8 100%);
}

.investor-entry-paths__grid,
.investor-role-grid,
.investor-process-grid,
.investor-client-context {
  display: grid;
  gap: 20px;
}

.investor-entry-paths__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.investor-entry-card {
  height: 100%;
  padding: 28px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 36, 52, 0.09);
  box-shadow: 0 22px 42px rgba(14, 25, 37, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.investor-entry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 52px rgba(14, 25, 37, 0.12);
}

.investor-entry-card__icon,
.investor-role-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
}

.investor-entry-card__icon {
  background: rgba(248, 178, 28, 0.12);
  color: #b67308;
}

.investor-entry-card__icon svg {
  width: 24px;
  height: 24px;
}

.investor-entry-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(23, 36, 52, 0.05);
  color: var(--color-navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.investor-entry-card h3,
.investor-ecosystem__card h3,
.investor-role-card h3,
.investor-process-card h3,
.investor-usinas-cta h3,
.investor-client-context h3 {
  margin: 0;
  color: var(--color-navy);
}

.investor-entry-card h3 {
  font-size: 1.6rem;
  line-height: 1.08;
}

.investor-entry-card p,
.investor-ecosystem__card p,
.investor-role-card p,
.investor-process-card p,
.investor-client-context p,
.investor-usinas-cta p,
.investor-initial-info__note,
.investor-process__note,
.investor-ecosystem__note {
  margin: 0;
  color: var(--color-gray-500);
  line-height: 1.72;
}

.investor-entry-card__cta,
.investor-initial-info__actions .button {
  width: 100%;
  justify-content: center;
}

.investor-entry-card--yellow {
  border-top: 3px solid rgba(248, 178, 28, 0.92);
}

.investor-entry-card--orange {
  border-top: 3px solid rgba(234, 91, 37, 0.9);
}

.investor-entry-card--green {
  border-top: 3px solid rgba(40, 207, 24, 0.84);
}

.investor-entry-card--orange .investor-entry-card__icon,
.investor-entry-card--orange .investor-entry-card__tag {
  background: rgba(234, 91, 37, 0.12);
  color: #b34c1d;
}

.investor-entry-card--green .investor-entry-card__icon,
.investor-entry-card--green .investor-entry-card__tag {
  background: rgba(40, 207, 24, 0.1);
  color: #237f18;
}

.investor-entry-card--featured {
  background:
    radial-gradient(circle at top right, rgba(40, 207, 24, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f9fcf6 100%);
}

.investor-ecosystem {
  color: var(--color-white);
  background:
    radial-gradient(circle at top center, rgba(248, 178, 28, 0.12), transparent 26%),
    linear-gradient(135deg, #142235 0%, #172434 48%, #1d3148 100%);
}

.investor-ecosystem .section-heading h2,
.investor-ecosystem .section-heading p {
  color: var(--color-white);
}

.investor-ecosystem .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.investor-ecosystem__shell {
  position: relative;
  padding: 24px 0 0;
}

.investor-ecosystem__track {
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(248, 178, 28, 0.96), rgba(234, 91, 37, 0.94), rgba(42, 198, 99, 0.94));
}

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

.investor-ecosystem__card {
  position: relative;
  min-height: 220px;
  padding: 80px 24px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.investor-ecosystem__card h3,
.investor-ecosystem__card p {
  color: var(--color-white);
}

.investor-ecosystem__node {
  position: absolute;
  top: 38px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(21, 34, 52, 0.94);
}

.investor-ecosystem__card--yellow .investor-ecosystem__node {
  background: var(--color-yellow);
}

.investor-ecosystem__card--orange .investor-ecosystem__node {
  background: var(--color-orange);
}

.investor-ecosystem__card--blue .investor-ecosystem__node {
  background: #6db8ff;
}

.investor-ecosystem__card--green .investor-ecosystem__node {
  background: #2ac663;
}

.investor-ecosystem__note {
  max-width: 720px;
  margin: 22px auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.76);
}

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

.investor-role-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 36, 52, 0.08);
  box-shadow: 0 18px 36px rgba(10, 22, 34, 0.08);
}

.investor-role-card--featured {
  grid-column: 1 / -1;
  min-height: 0;
  background:
    radial-gradient(circle at top right, rgba(248, 178, 28, 0.1), transparent 28%),
    linear-gradient(135deg, #20344d 0%, #1f4d46 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.investor-role-card--featured h3,
.investor-role-card--featured p {
  color: var(--color-white);
}

.investor-process {
  background: #f7f5f0;
}

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

.investor-process-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 36, 52, 0.08);
  box-shadow: 0 16px 30px rgba(14, 25, 37, 0.06);
}

.investor-process-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(23, 36, 52, 0.06);
  color: var(--color-gray-500);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.investor-process__note {
  max-width: 760px;
  margin: 20px auto 0;
  text-align: center;
}

.investor-initial-info {
  background: linear-gradient(180deg, #ffffff 0%, #f8f7f2 100%);
}

.investor-initial-info__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.investor-initial-info__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  background: rgba(23, 36, 52, 0.05);
  color: var(--color-navy);
  font-weight: 700;
}

.investor-initial-info__note {
  max-width: 680px;
  margin: 20px auto 0;
  text-align: center;
}

.investor-initial-info__actions {
  max-width: 320px;
  margin: 28px auto 0;
}

.investor-credibility {
  background: #f3f2ec;
}

.investor-credibility-header {
  justify-content: center;
}

.investor-credibility-brand {
  padding: 18px 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(23, 36, 52, 0.08);
}

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

.investor-client-context {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: start;
  margin-top: 28px;
}

.investor-usinas-cta {
  padding: 26px;
  border-radius: 28px;
  background: rgba(23, 36, 52, 0.94);
  color: var(--color-white);
}

.investor-usinas-cta h3,
.investor-usinas-cta p {
  color: var(--color-white);
}

.investor-usinas-cta p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.investor-usinas-cta .button-secondary {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.investor-client-logos {
  margin-top: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.investor-trust {
  background:
    radial-gradient(circle at top center, rgba(248, 178, 28, 0.06), transparent 22%),
    linear-gradient(180deg, #f7f5ef 0%, #fdfcf9 100%);
}

.investor-trust .section-heading h2,
.investor-trust__clients-heading h2 {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.investor-trust .section-heading p:last-child,
.investor-trust__clients-heading p:last-child {
  max-width: 680px;
}

.investor-trust-strip {
  margin: 0 auto 44px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border-radius: 28px;
  background: linear-gradient(135deg, #162537 0%, #1a2b40 58%, #1f354d 100%);
  box-shadow: 0 20px 44px rgba(12, 22, 34, 0.12);
}

.investor-trust-strip__item {
  min-height: 72px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-white);
}

.investor-trust-strip__item strong {
  font-size: 1rem;
  line-height: 1.45;
}

.investor-trust-strip__icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.investor-trust-strip__icon svg {
  width: 20px;
  height: 20px;
}

.investor-trust-strip__item--yellow .investor-trust-strip__icon {
  color: var(--color-yellow);
}

.investor-trust-strip__item--orange .investor-trust-strip__icon {
  color: var(--color-orange);
}

.investor-trust-strip__item--green .investor-trust-strip__icon {
  color: #2ac663;
}

.investor-trust__clients-heading {
  margin-top: 0;
  margin-bottom: 28px;
}

.investor-client-logos {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.investor-final-cta-shell {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.investor-final-cta__content {
  width: 100%;
  display: grid;
  justify-items: center;
  text-align: center;
}

.investor-final-cta__content h2 {
  max-width: 24ch;
}

.investor-final-cta__content h2 span {
  display: block;
}

.investor-final-cta__content p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.investor-final-actions {
  width: 100%;
  max-width: 420px;
}

.investor-page .button:focus-visible,
.investor-page .button-secondary:focus-visible,
.investor-page a:focus-visible,
.investor-page summary:focus-visible {
  outline: 3px solid rgba(248, 178, 28, 0.88);
  outline-offset: 3px;
}

.investor-client-card {
  min-height: 138px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(23, 36, 52, 0.08);
  box-shadow: 0 10px 24px rgba(14, 25, 37, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.investor-client-card:hover {
  transform: translateY(-3px);
  border-color: rgba(234, 91, 37, 0.22);
  box-shadow: 0 16px 28px rgba(14, 25, 37, 0.08);
}

.investor-client-card img {
  width: 100%;
  max-width: 148px;
  max-height: 54px;
  object-fit: contain;
}

.investor-usinas-banner {
  background: linear-gradient(180deg, #fdfcf9 0%, #f6f3ec 100%);
}

.investor-usinas-banner__shell {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 360px;
  padding: 52px 40px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(18, 31, 46, 0.72), rgba(18, 31, 46, 0.86)),
    radial-gradient(circle at 82% 18%, rgba(248, 178, 28, 0.12), transparent 18%),
    url("../assets/investor-hero-solar-farm.png") center/cover no-repeat;
  box-shadow: 0 24px 48px rgba(12, 22, 34, 0.14);
}

.investor-usinas-banner__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.investor-usinas-banner__content .section-kicker {
  color: var(--color-white);
}

.investor-usinas-banner__content h2 {
  margin: 0;
  max-width: 14ch;
  color: var(--color-white);
  font-size: clamp(2.6rem, 4.4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.investor-usinas-banner__content p:not(.section-kicker) {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.investor-usinas-banner__actions {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.investor-usinas-banner__link {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .investor-entry-card,
  .investor-benefit-card,
  .button,
  .button-secondary {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .investor-page .section {
    padding: 88px 0;
  }

  .investor-entry-paths__grid,
  .investor-role-grid,
  .investor-process-grid,
  .investor-client-context,
  .investor-indicators-grid,
  .investor-client-logos {
    grid-template-columns: 1fr;
  }

  .investor-trust-strip {
    grid-template-columns: 1fr;
  }

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

  .investor-ecosystem__track {
    display: none;
  }

  .investor-ecosystem__card {
    min-height: 0;
    padding-top: 74px;
  }
}

@media (max-width: 820px) {
  .investor-hero {
    min-height: 0;
    padding: 96px 0 72px;
  }

  .investor-hero__title {
    max-width: 14ch;
    font-size: clamp(42px, 10vw, 64px);
  }

  .investor-ecosystem__grid {
    grid-template-columns: 1fr;
  }

  .investor-ecosystem__shell {
    padding-top: 0;
  }

  .investor-ecosystem__grid::before {
    content: "";
    position: absolute;
  }

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

@media (max-width: 640px) {
  .investor-page .section {
    padding: 72px 0;
  }

  .investor-hero {
    padding: 88px 0 64px;
  }

  .investor-hero__title {
    max-width: 9.5ch;
    font-size: clamp(32px, 10vw, 44px);
    line-height: 0.94;
  }

  .investor-hero__description,
  .investor-page .section-heading p:last-child,
  .investor-ecosystem__note,
  .investor-process__note,
  .investor-initial-info__note {
    font-size: 0.98rem;
  }

  .investor-hero__label {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .investor-entry-card,
  .investor-role-card,
  .investor-process-card,
  .investor-usinas-cta {
    padding: 24px;
    border-radius: 24px;
  }

  .investor-initial-info__chips {
    justify-content: stretch;
  }

  .investor-initial-info__chips span {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
  }

  .investor-ecosystem__card {
    text-align: left;
    padding: 28px 24px 28px 70px;
  }

  .investor-ecosystem__card .investor-ecosystem__node {
    top: 32px;
    left: 32px;
    transform: none;
  }

  .investor-ecosystem__grid {
    position: relative;
    gap: 14px;
  }

  .investor-ecosystem__grid::before {
    content: "";
    position: absolute;
    top: 32px;
    bottom: 32px;
    left: 38px;
    width: 2px;
    background: linear-gradient(180deg, rgba(248, 178, 28, 0.96), rgba(234, 91, 37, 0.94), rgba(42, 198, 99, 0.94));
  }

  .investor-client-card,
  .investor-indicator-card {
    padding: 22px;
  }

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

  .investor-usinas-banner__shell {
    min-height: 0;
    padding: 40px 22px;
    border-radius: 26px;
  }

  .investor-usinas-banner__content h2 {
    max-width: 11ch;
    font-size: clamp(2rem, 9vw, 2.5rem);
  }

  .investor-final-actions .button,
  .investor-entry-card__cta,
  .investor-hero__actions .button,
  .investor-hero__actions .button-secondary,
  .investor-usinas-cta .button-secondary,
  .investor-usinas-banner__actions .button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .investor-hero__title {
    max-width: 8.6ch;
    font-size: 24px;
    line-height: 0.96;
    overflow-wrap: anywhere;
  }

  .investor-hero__description {
    font-size: 0.94rem;
  }

  .investor-hero__content {
    padding-inline: 20px;
  }
}
