﻿:root {
  color-scheme: light;
  --carbon: #111735;
  --graphite: #242b55;
  --steel: #5c6688;
  --line: #dfe5f5;
  --paper: #ffffff;
  --surface: #ffffff;
  --mist: #f5f7ff;
  --electric: #2a3392;
  --electric-dark: #202873;
  --efficiency: #16a36d;
  --energy: #ff7d28;
  --danger: #c53b3b;
  --success: #15784d;
  --shadow: 0 18px 50px rgba(8, 11, 15, 0.14);
  --soft-shadow: 0 10px 30px rgba(8, 11, 15, 0.08);
  --radius: 8px;
  --max: 1180px;
  --header: 76px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--carbon);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(244, 186, 56, 0.35);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--carbon);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header);
  border-bottom: 1px solid rgba(42, 51, 146, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: var(--graphite);
  backdrop-filter: blur(18px);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 34px rgba(42, 51, 146, 0.11);
}

.header-inner {
  width: min(100% - 32px, var(--max));
  min-height: var(--header);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 144px;
}

.brand img {
  width: 148px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  position: relative;
  border-radius: 999px;
  padding: 10px 13px;
  color: rgba(36, 43, 85, 0.78);
  font-size: 0.92rem;
  font-weight: 650;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  color: var(--electric-dark);
  background: rgba(42, 51, 146, 0.08);
}

.nav-menu .nav-cta {
  margin-left: 8px;
  background: var(--energy);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 125, 40, 0.22);
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  background: #ff9552;
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(42, 51, 146, 0.16);
  border-radius: 999px;
  background: rgba(42, 51, 146, 0.07);
  color: var(--electric-dark);
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.nav-open .nav-toggle span {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span::before {
  transform: translateY(0) rotate(90deg);
}

.nav-open .nav-toggle span::after {
  transform: translateY(-2px) rotate(90deg);
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.section.compact {
  padding: clamp(46px, 6vw, 78px) 0;
}

.section.dark {
  background: var(--carbon);
  color: #fff;
}

.section.mist {
  background: var(--mist);
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--electric-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.dark .eyebrow {
  color: var(--energy);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
.hero-title {
  max-width: 930px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 5.9rem);
  line-height: 0.96;
  font-weight: 850;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  font-weight: 820;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.22rem, 2vw, 1.72rem);
  line-height: 1.16;
  font-weight: 780;
  letter-spacing: 0;
}

h4 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 780;
}

.lead {
  max-width: 720px;
  color: rgba(8, 11, 15, 0.72);
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
  line-height: 1.62;
}

.dark .lead,
.hero-copy {
  color: rgba(255, 255, 255, 0.78);
}

.muted {
  color: rgba(8, 11, 15, 0.66);
}

.dark .muted {
  color: rgba(255, 255, 255, 0.66);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(570px, 82svh, 780px);
  margin-top: calc(var(--header) * -1);
  padding: calc(var(--header) + clamp(58px, 8vw, 98px)) 0 clamp(54px, 7vw, 84px);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  content: "";
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 11, 15, 0.9), rgba(8, 11, 15, 0.62) 48%, rgba(8, 11, 15, 0.35)),
    linear-gradient(180deg, rgba(8, 11, 15, 0.35), rgba(8, 11, 15, 0.82));
  content: "";
}

.hero-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 400px);
  gap: clamp(36px, 7vw, 84px);
  align-items: end;
}

.hero-content {
  max-width: 900px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--efficiency);
  box-shadow: 0 0 0 6px rgba(32, 184, 111, 0.18);
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 780;
  line-height: 1.1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--energy);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 125, 40, 0.24);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: #ff9552;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.btn.dark {
  background: var(--carbon);
  color: #fff;
}

.btn.dark:hover,
.btn.dark:focus-visible {
  background: var(--graphite);
}

.btn.ghost {
  background: transparent;
  color: var(--carbon);
  border-color: var(--line);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.hero-proof {
  display: grid;
  gap: 12px;
  width: 100%;
}

.diagnostic-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 11, 15, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.diagnostic-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px;
}

.panel-title {
  margin: 0;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 780;
}

.panel-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--efficiency);
  font-size: 0.78rem;
  font-weight: 760;
}

.panel-state::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.diagnostic-panel-body {
  padding: 18px;
}

.metric-stack {
  display: grid;
  gap: 12px;
}

.metric-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.metric-line strong {
  color: #fff;
  font-size: 1.08rem;
}

.meter {
  overflow: hidden;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.meter span {
  display: block;
  height: 100%;
  width: var(--value);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--electric), var(--efficiency), var(--energy));
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-proof {
  min-height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.mini-proof strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: clamp(1.04rem, 2vw, 1.32rem);
  line-height: 1.1;
}

.mini-proof span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.35;
}

.ticker {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.ticker-inner {
  width: min(100% - 32px, var(--max));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--steel);
  font-weight: 700;
}

.ticker-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: var(--graphite);
  font-size: 0.85rem;
  font-weight: 720;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.card.pad {
  padding: clamp(20px, 3vw, 30px);
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  padding: 28px;
}

.feature-card::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(var(--electric), var(--efficiency), var(--energy));
  content: "";
}

.feature-card p {
  color: rgba(8, 11, 15, 0.66);
}

.icon-badge {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(0, 143, 232, 0.1);
  color: var(--electric-dark);
}

.icon-badge svg {
  width: 22px;
  height: 22px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.split-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-media.tall img {
  aspect-ratio: 3 / 4;
}

.media-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(8, 11, 15, 0.72);
  color: #fff;
  backdrop-filter: blur(16px);
}

.media-caption strong {
  display: block;
  font-size: 0.95rem;
}

.media-caption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.check-list,
.clean-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.clean-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(8, 11, 15, 0.72);
}

.dark .check-list li,
.dark .clean-list li {
  color: rgba(255, 255, 255, 0.74);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--efficiency);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.55);
  content: "";
}

.clean-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 14px;
  height: 2px;
  background: var(--energy);
  content: "";
}

.process {
  counter-reset: step;
}

.process-step {
  position: relative;
  min-height: 220px;
  padding: 28px;
}

.process-step::before {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--carbon);
  color: #fff;
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-size: 0.8rem;
  font-weight: 820;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.stat {
  min-height: 140px;
  padding: 24px;
  background: #fff;
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.stat span {
  color: var(--steel);
  font-size: 0.92rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--carbon);
  color: #fff;
}

.cta-band::before {
  position: absolute;
  inset: 0;
  background-image: var(--cta-image);
  background-position: center;
  background-size: cover;
  opacity: 0.32;
  content: "";
}

.cta-band::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 11, 15, 0.94), rgba(8, 11, 15, 0.64));
  content: "";
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(32px, 6vw, 64px);
}

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 420px;
  margin-top: calc(var(--header) * -1);
  padding: calc(var(--header) + clamp(54px, 7vw, 94px)) 0 clamp(42px, 6vw, 76px);
  color: #fff;
  overflow: hidden;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  content: "";
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 11, 15, 0.88), rgba(8, 11, 15, 0.56)),
    linear-gradient(180deg, rgba(8, 11, 15, 0.18), rgba(8, 11, 15, 0.78));
  content: "";
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: #fff;
}

.analysis-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 48px);
  align-items: start;
}

.form-panel,
.result-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.form-panel {
  padding: clamp(22px, 4vw, 34px);
}

.result-panel {
  position: sticky;
  top: calc(var(--header) + 18px);
  overflow: hidden;
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 20px;
  background: var(--carbon);
  color: #fff;
}

.result-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.result-body {
  padding: 24px;
}

.saving-range {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.saving-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--paper);
}

.saving-box span {
  display: block;
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 720;
}

.saving-box strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  line-height: 1.05;
}

.opportunity-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.opportunity-list li {
  border-left: 3px solid var(--electric);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 10px 12px;
  background: rgba(0, 143, 232, 0.08);
  color: rgba(8, 11, 15, 0.74);
  font-size: 0.92rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 750;
}

.field small {
  color: var(--steel);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd9d6;
  border-radius: var(--radius);
  background: #fff;
  color: var(--carbon);
  padding: 12px 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--electric);
  box-shadow: 0 0 0 4px rgba(0, 143, 232, 0.14);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  min-height: 18px;
  color: var(--danger);
  font-size: 0.82rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 16px;
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--mist);
  color: var(--graphite);
  font-weight: 700;
}

.form-status[hidden] {
  display: none;
}

.form-status.success {
  background: rgba(32, 184, 111, 0.12);
  color: var(--success);
}

.form-status.error {
  background: rgba(197, 59, 59, 0.1);
  color: var(--danger);
}

.disclaimer {
  margin-top: 18px;
  border-left: 3px solid var(--energy);
  padding: 12px 14px;
  background: rgba(244, 186, 56, 0.12);
  color: rgba(8, 11, 15, 0.72);
  font-size: 0.92rem;
}

.sector-card {
  min-height: 250px;
  overflow: hidden;
}

.sector-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.sector-card div {
  padding: 22px;
}

.sector-card p {
  color: rgba(8, 11, 15, 0.66);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.timeline-item strong {
  color: var(--electric-dark);
}

.quote-band {
  border-left: 4px solid var(--energy);
  padding: clamp(22px, 4vw, 36px);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.quote-band p {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.28;
  font-weight: 760;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 780;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: rgba(8, 11, 15, 0.68);
}

.article-list {
  display: grid;
  gap: 18px;
}

.article-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.article-row time,
.article-row span {
  color: var(--steel);
  font-size: 0.86rem;
  font-weight: 720;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: clamp(1.45rem, 2.6vw, 2.4rem);
}

.legal-content p,
.legal-content li {
  color: rgba(8, 11, 15, 0.72);
}

.login-box {
  max-width: 520px;
  margin: 0 auto;
}


.auth-page {
  min-height: 100svh;
  background:
    linear-gradient(135deg, rgba(42, 51, 146, 0.07), rgba(255, 255, 255, 0.72) 44%, rgba(255, 125, 40, 0.1)),
    #fff;
  color: var(--carbon);
}

.auth-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
  border-bottom: 1px solid var(--line);
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 34px rgba(42, 51, 146, 0.07);
}

.auth-brand img {
  display: block;
  width: clamp(138px, 16vw, 174px);
  height: auto;
}

.auth-topbar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--energy);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(255, 125, 40, 0.22);
}

.auth-topbar-link:hover,
.auth-topbar-link:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.auth-main {
  display: grid;
  place-items: center;
  min-height: calc(100svh - 84px);
  padding: clamp(28px, 6vw, 72px) 16px;
}

.auth-card {
  position: relative;
  width: min(100%, 460px);
  overflow: hidden;
  border: 1px solid rgba(42, 51, 146, 0.12);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(42, 51, 146, 0.14);
}

.auth-card-wide {
  width: min(100%, 660px);
}

.auth-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--electric), var(--energy));
  content: "";
}

.auth-card-logo {
  display: block;
  width: 148px;
  height: auto;
  margin-bottom: 24px;
}

.auth-card .eyebrow {
  margin-bottom: 10px;
}

.auth-card h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  line-height: 0.95;
}

.auth-copy {
  max-width: 440px;
  margin: 14px 0 0;
  color: rgba(8, 11, 15, 0.66);
  font-size: 1rem;
}

.auth-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.auth-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.auth-card .field {
  gap: 7px;
}

.auth-card .field label {
  font-size: 0.84rem;
}

.auth-card .field input,
.auth-card .field select {
  min-height: 50px;
  border-radius: 8px;
  background: #fbfcff;
}

.auth-fieldset {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: #f8faff;
}

.auth-fieldset legend {
  padding: 0 6px;
  color: var(--graphite);
  font-size: 0.84rem;
  font-weight: 800;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.checkbox-card {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 10px;
  background: #fff;
  color: rgba(17, 23, 53, 0.75);
  font-size: 0.9rem;
  font-weight: 700;
}

.checkbox-card input {
  width: 16px;
  min-height: 16px;
  height: 16px;
  padding: 0;
  accent-color: var(--electric);
}

.auth-submit {
  width: 100%;
  justify-content: center;
  min-height: 50px;
  margin-top: 2px;
}

.auth-switch {
  margin: 18px 0 0;
  text-align: center;
  color: rgba(8, 11, 15, 0.66);
  font-weight: 650;
}

.auth-switch a {
  color: var(--electric);
  font-weight: 850;
}

.auth-card .form-status {
  margin: 18px 0 0;
  border-radius: 8px;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .auth-topbar {
    min-height: 76px;
    padding-inline: 16px;
  }

  .auth-main {
    min-height: calc(100svh - 76px);
    align-items: start;
    padding-top: 28px;
  }

  .auth-card,
  .auth-card-wide {
    width: 100%;
  }

  .auth-form-grid,
  .equipment-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background: var(--carbon);
  color: #fff;
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 78px) 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: clamp(24px, 5vw, 54px);
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #fff;
}

.footer-grid h2,
.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1060px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header) 0 auto 0;
    display: grid;
    max-height: calc(100svh - var(--header));
    overflow: auto;
    border-top: 1px solid rgba(42, 51, 146, 0.12);
    background: rgba(255, 255, 255, 0.98);
    padding: 18px 16px 24px;
    transform: translateY(-120%);
    transition: transform 0.24s ease;
  }

  .nav-open .nav-menu {
    transform: translateY(0);
  }

  .nav-menu a {
    border-radius: var(--radius);
    padding: 14px 16px;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .hero-inner,
  .analysis-shell,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    max-width: 520px;
  }

  .result-panel {
    position: static;
  }

  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header: 70px;
  }

  .brand img {
    width: 132px;
  }

  .section,
  .section.compact {
    padding: 54px 0;
  }

  .hero {
    min-height: auto;
    padding-bottom: 48px;
  }

  .hero-inner {
    align-items: start;
  }

  .hero-mini-grid,
  .grid.two,
  .grid.three,
  .grid.four,
  .stat-band,
  .form-grid,
  .saving-range,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ticker-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 0;
  }

  .timeline-item,
  .article-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cta-content {
    padding: 28px;
  }

  .button-row,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}



.story-slider {
  background: #fff;
}

.home-slider {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.home-slider > .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.home-slider .slider-shell {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}

.home-slider .story-slide {
  min-height: clamp(590px, 78svh, 820px);
}

.slider-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--carbon);
  box-shadow: var(--shadow);
}

.slide-viewport {
  overflow: hidden;
}

.slide-track {
  display: flex;
  transform: translateX(calc(var(--active-slide, 0) * -100%));
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-slide {
  position: relative;
  isolation: isolate;
  flex: 0 0 100%;
  min-height: clamp(500px, 66vw, 680px);
  display: grid;
  align-items: end;
  color: #fff;
}

.story-slide::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 23, 53, 0.9), rgba(42, 51, 146, 0.66) 50%, rgba(17, 23, 53, 0.18)),
    linear-gradient(180deg, rgba(17, 23, 53, 0.05), rgba(17, 23, 53, 0.86));
  content: "";
}

.story-slide img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  width: min(100% - 32px, 940px);
  padding: clamp(30px, 6vw, 62px);
}

.home-slider .slide-content {
  width: min(100% - 40px, 980px);
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
  padding: clamp(46px, 7vw, 88px) 0;
}

.slide-content .eyebrow {
  color: var(--energy);
}

.slide-content h2 {
  max-width: 780px;
  color: #fff;
}

.slide-content p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.slide-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.slide-proof-row span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.slider-controls {
  position: absolute;
  right: clamp(18px, 4vw, 34px);
  bottom: clamp(18px, 4vw, 34px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(9, 11, 24, 0.58);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-button:hover,
.slider-button:focus-visible {
  background: var(--energy);
  color: var(--carbon);
  transform: translateY(-2px);
}

.slider-button svg {
  width: 18px;
  height: 18px;
}

.slider-dots {
  display: flex;
  gap: 7px;
  margin: 0 4px;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  padding: 0;
}

.slider-dot[aria-current="true"] {
  width: 24px;
  background: var(--energy);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-page {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.portfolio-page img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  object-position: top center;
}

.portfolio-page div {
  padding: 18px;
}

.brand-accent-card {
  border-top: 4px solid var(--energy);
  background: linear-gradient(180deg, #fff, #f7f8ff);
}

@media (max-width: 760px) {
  .slider-controls {
    position: static;
    justify-content: center;
    padding: 16px;
    background: var(--carbon);
  }

  .slide-content {
    padding: 28px 16px;
  }

  .home-slider .slide-content {
    width: min(100% - 32px, 720px);
    margin-left: 16px;
    padding: 42px 0 30px;
  }

  .home-slider .story-slide {
    min-height: 660px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* Reserved client workspace */
.nav-user-chip {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(42, 51, 146, 0.16);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(42, 51, 146, 0.08);
  color: var(--electric-dark);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.workspace-hero {
  min-height: 380px;
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.workspace-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.profile-card {
  position: sticky;
  top: calc(var(--header) + 18px);
  padding: clamp(22px, 3vw, 30px);
}

.profile-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
}

.profile-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.profile-list div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.profile-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.profile-list dt {
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-list dd {
  margin: 4px 0 0;
  color: var(--carbon);
  font-weight: 760;
  line-height: 1.4;
}

.profile-actions,
.profile-save-row {
  margin-top: 22px;
}

.workspace-main .section-heading {
  margin-bottom: 24px;
}

.workspace-analysis {
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.95fr);
}

.readonly-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.readonly-summary span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(42, 51, 146, 0.14);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(42, 51, 146, 0.07);
  color: var(--graphite);
  font-size: 0.85rem;
  font-weight: 780;
}

.narrow-container {
  width: min(100% - 32px, 880px);
}

.compact-profile-hero {
  min-height: 350px;
}

.form-status.success {
  margin-bottom: 22px;
  background: rgba(33, 174, 107, 0.12);
  color: #126b3a;
}

.form-status.error {
  background: rgba(197, 59, 59, 0.1);
  color: #c53b3b;
}

@media (max-width: 1080px) {
  .workspace-grid,
  .workspace-analysis {
    grid-template-columns: 1fr;
  }

  .profile-card,
  .result-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav-user-chip {
    width: 100%;
    justify-content: center;
  }
}



.user-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.user-menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(42, 51, 146, 0.18);
  border-radius: 999px;
  background: rgba(42, 51, 146, 0.08);
  color: var(--electric-dark);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.user-menu-toggle:hover,
.user-menu-toggle:focus-visible,
.user-menu.is-open .user-menu-toggle {
  border-color: rgba(255, 112, 34, 0.42);
  background: rgba(255, 112, 34, 0.12);
  transform: translateY(-1px);
}

.user-menu-toggle svg {
  width: 21px;
  height: 21px;
}

.user-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 40;
  display: grid;
  width: min(260px, calc(100vw - 32px));
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.user-menu.is-open .user-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.user-menu-panel strong {
  color: var(--carbon);
  font-size: 0.98rem;
}

.user-menu-panel span {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 0.84rem;
}

.nav-menu .user-menu-panel a {
  display: flex;
  min-height: 40px;
  align-items: center;
  border-radius: 6px;
  padding: 0 10px;
  color: var(--graphite);
  font-weight: 800;
}

.nav-menu .user-menu-panel a:hover,
.nav-menu .user-menu-panel a:focus-visible {
  background: rgba(42, 51, 146, 0.08);
  color: var(--electric-dark);
}

.workspace-board {
  display: grid;
  gap: clamp(22px, 4vw, 36px);
}

.submission-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.upload-only-panel {
  display: grid;
  gap: 20px;
}

.upload-dropzone {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px dashed rgba(42, 51, 146, 0.26);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 26px);
  background: linear-gradient(135deg, rgba(42, 51, 146, 0.06), rgba(255, 112, 34, 0.06));
}

.upload-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--electric-dark);
  color: #fff;
}

.upload-icon svg,
.invoice-file-icon svg {
  width: 25px;
  height: 25px;
}

.history-card {
  padding: clamp(20px, 3vw, 28px);
}

.history-header {
  display: flex;
  gap: 16px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.history-header h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.history-count {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}

.empty-history {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--mist);
}

.empty-history strong {
  color: var(--carbon);
}

.empty-history p {
  margin: 6px 0 0;
  color: var(--muted);
}

.invoice-history-list {
  display: grid;
  gap: 12px;
}

.invoice-history-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.invoice-file-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(42, 51, 146, 0.08);
  color: var(--electric-dark);
}

.invoice-history-item h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.98rem;
}

.invoice-history-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.status-pill {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 11px;
  background: rgba(255, 112, 34, 0.12);
  color: #b24a0c;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .submission-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .user-menu {
    width: 100%;
    justify-content: center;
  }

  .user-menu-panel {
    position: static;
    width: 100%;
    margin-top: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .user-menu.is-open .user-menu-panel {
    display: grid;
  }

  .upload-dropzone,
  .invoice-history-item {
    grid-template-columns: 1fr;
  }

  .status-pill {
    justify-self: start;
  }
}


/* Direct contact and admin dashboard */
.contact-hero {
  min-height: 360px;
}

.contact-direct-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
}

.contact-direct-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 34px);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.contact-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--electric-dark);
  color: #fff;
}

.contact-icon svg {
  width: 25px;
  height: 25px;
}

.contact-direct-card h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
}

.contact-lines {
  display: grid;
  gap: 8px;
}

.contact-lines a {
  color: var(--electric-dark);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-lines a:hover,
.contact-lines a:focus-visible {
  color: var(--orange);
}

.compact-cta {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
}

.admin-hero {
  min-height: 340px;
}

.admin-shell {
  display: grid;
  gap: 24px;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-stat {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.admin-stat span {
  display: block;
  color: var(--steel);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-stat strong {
  display: block;
  margin-top: 6px;
  color: var(--carbon);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.admin-panel {
  padding: clamp(18px, 3vw, 28px);
}

.admin-panel-header {
  display: flex;
  gap: 18px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.admin-panel-header h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  background: #fff;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  background: rgba(42, 51, 146, 0.07);
  color: var(--electric-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-table td {
  color: var(--graphite);
  font-size: 0.9rem;
}

.admin-table td strong {
  display: block;
  color: var(--carbon);
  font-weight: 900;
}

.admin-table td span:not(.status-pill) {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 860px) {
  .contact-direct-grid,
  .admin-stat-grid {
    grid-template-columns: 1fr;
  }

  .compact-cta,
  .admin-panel-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Admin dashboard refinement */
.admin-hero {
  min-height: clamp(250px, 32vw, 330px);
}

.admin-section {
  padding-top: 0;
}

.admin-shell {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
  margin-top: clamp(-72px, -6vw, -36px);
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.admin-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 116px;
  border: 1px solid rgba(42, 51, 146, 0.14);
  border-top: 4px solid var(--electric);
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(180deg, #fff, #f8faff);
  box-shadow: 0 22px 54px rgba(17, 23, 53, 0.11);
}

.admin-stat.accent {
  border-top-color: var(--energy);
}

.admin-stat.soft {
  border-top-color: #42b883;
}

.admin-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(42, 51, 146, 0.09);
  color: var(--electric-dark);
}

.admin-stat.accent .admin-stat-icon {
  background: rgba(255, 125, 40, 0.12);
  color: var(--energy-dark);
}

.admin-stat.soft .admin-stat-icon {
  background: rgba(66, 184, 131, 0.13);
  color: #087f5b;
}

.admin-stat-icon svg {
  width: 24px;
  height: 24px;
}

.admin-stat span:not(.admin-stat-icon),
.admin-stat small {
  display: block;
  color: rgba(17, 23, 53, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.admin-stat strong {
  display: block;
  margin: 4px 0 3px;
  color: var(--carbon);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.admin-stat small {
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: none;
}

.admin-panel {
  overflow: hidden;
  border: 1px solid rgba(42, 51, 146, 0.13);
  border-radius: 8px;
  padding: 0;
  background: #fff;
  box-shadow: 0 22px 60px rgba(17, 23, 53, 0.1);
}

.admin-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: clamp(18px, 3vw, 26px);
  background: linear-gradient(180deg, #fff, #f8faff);
}

.admin-panel-header .eyebrow {
  margin-bottom: 8px;
}

.admin-panel-header h2 {
  margin: 0;
  color: var(--carbon);
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1;
}

.admin-panel-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid rgba(42, 51, 146, 0.16);
  border-radius: 999px;
  padding: 0 14px;
  background: #fff;
  color: var(--electric-dark);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 0;
  border-radius: 0;
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid rgba(42, 51, 146, 0.11);
  padding: 14px 18px;
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  background: #fff;
  color: rgba(17, 23, 53, 0.56);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-table td {
  color: var(--graphite);
  font-size: 0.93rem;
}

.admin-summary-row:hover td {
  background: #fbfcff;
}

.admin-table td strong {
  display: block;
  color: var(--carbon);
  font-weight: 900;
}

.admin-table td span:not(.status-pill):not(.admin-avatar) {
  display: block;
  margin-top: 4px;
  color: rgba(17, 23, 53, 0.55);
  font-size: 0.82rem;
  font-weight: 650;
}

.admin-file-name {
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-account-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.admin-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(42, 51, 146, 0.11);
  color: var(--electric-dark);
  font-weight: 950;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.status-pill.status-pending {
  background: rgba(255, 125, 40, 0.14);
  color: #a84505;
}

.status-pill.status-info {
  background: rgba(42, 51, 146, 0.12);
  color: var(--electric-dark);
}

.status-pill.status-success {
  background: rgba(66, 184, 131, 0.16);
  color: #087f5b;
}

.status-pill.status-danger {
  background: rgba(197, 59, 59, 0.12);
  color: #a32929;
}

.admin-actions {
  width: 1%;
  text-align: right;
  white-space: nowrap;
}

.admin-detail-toggle {
  min-height: 38px;
  border: 1px solid rgba(42, 51, 146, 0.16);
  border-radius: 8px;
  padding: 0 13px;
  background: #fff;
  color: var(--electric-dark);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
}

.admin-detail-toggle:hover,
.admin-detail-toggle:focus-visible,
.admin-detail-toggle[aria-expanded="true"] {
  border-color: rgba(42, 51, 146, 0.34);
  background: rgba(42, 51, 146, 0.08);
  outline: none;
}

.admin-detail-row td {
  padding: 0 18px 18px;
  background: #fff;
}

.admin-detail-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border: 1px solid rgba(42, 51, 146, 0.12);
  border-radius: 8px;
  padding: 16px;
  background: #f8faff;
}

.admin-detail-item {
  min-width: 0;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.admin-detail-item.wide {
  grid-column: 1 / -1;
}

.admin-detail-item span {
  display: block;
  margin-bottom: 5px;
  color: rgba(17, 23, 53, 0.5);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-detail-item strong {
  color: var(--carbon);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.admin-panel .empty-history {
  margin: 18px;
}

.invoice-response-note {
  margin-top: 7px;
  color: rgba(17, 23, 53, 0.68);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.invoice-response-note strong {
  color: var(--electric-dark);
}

.admin-response-box {
  margin-top: 14px;
  border: 1px solid rgba(42, 51, 146, 0.12);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.admin-response-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.admin-response-heading span {
  display: block;
  margin-bottom: 5px;
  color: rgba(17, 23, 53, 0.5);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-response-heading strong {
  display: block;
  color: var(--carbon);
  font-size: 1.08rem;
}

.admin-response-heading small {
  max-width: 260px;
  color: rgba(17, 23, 53, 0.62);
  font-weight: 750;
  line-height: 1.4;
  text-align: right;
}

.admin-response-form {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.85fr) auto;
  gap: 14px;
  align-items: end;
}

.admin-response-form .field.full {
  grid-column: auto;
  margin: 0;
}

.admin-response-form textarea {
  min-height: 92px;
}

.admin-response-form .btn {
  align-self: end;
  min-height: 52px;
  white-space: nowrap;
}

.admin-response-alert {
  margin: 0;
  border-left: 4px solid var(--energy);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 125, 40, 0.1);
  color: var(--carbon);
  font-weight: 850;
}

@media (max-width: 920px) {
  .admin-shell {
    margin-top: -28px;
  }

  .admin-stat-grid,
  .admin-detail-card,
  .admin-response-form {
    grid-template-columns: 1fr;
  }

  .admin-response-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-response-heading small {
    max-width: none;
    text-align: left;
  }

  .admin-panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-table {
    min-width: 680px;
  }
}
/* Refined direct contact page */
.refined-contact-hero {
  min-height: clamp(390px, 48vw, 560px);
}

.refined-contact-hero .hero-title {
  max-width: 760px;
}

.refined-contact-hero .lead {
  max-width: 660px;
}

.refined-contact-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn.light,
.btn.ghost.light {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn.ghost.light:hover,
.btn.ghost.light:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.contact-simple-section {
  padding-top: clamp(44px, 7vw, 88px);
  background:
    linear-gradient(180deg, #fff 0%, #f8faff 100%);
}

.contact-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.contact-method-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  overflow: hidden;
  border: 1px solid rgba(42, 51, 146, 0.14);
  border-top: 4px solid var(--electric);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 36px);
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 23, 53, 0.1);
}

.contact-method-card::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 125, 40, 0.22);
  border-radius: 50%;
  content: "";
}

.contact-method-card:nth-child(2) {
  border-top-color: var(--energy);
}

.contact-icon.alt {
  background: var(--energy);
}

.contact-method-card h2 {
  margin: 0 0 16px;
  color: var(--carbon);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1;
}

.contact-method-card .eyebrow {
  margin-bottom: 10px;
}

.contact-method-card .contact-lines {
  gap: 10px;
}

.contact-method-card .contact-lines a {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  border-bottom: 2px solid rgba(255, 125, 40, 0.28);
  color: var(--electric-dark);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.contact-action-band {
  padding-top: 0;
  background: #f8faff;
}

.contact-action-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(42, 51, 146, 0.14);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  box-shadow: 0 22px 60px rgba(17, 23, 53, 0.09);
}

.contact-action-card h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.contact-action-card p:not(.eyebrow) {
  margin: 8px 0 0;
  color: rgba(17, 23, 53, 0.64);
  font-weight: 650;
}

@media (max-width: 820px) {
  .contact-simple-grid {
    grid-template-columns: 1fr;
  }

  .contact-method-card {
    grid-template-columns: 1fr;
  }

  .contact-action-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-action-card .btn {
    width: 100%;
    justify-content: center;
  }
}
/* 2026 homepage restructure */
.home-restructure {
  --electric: #082b96;
  --electric-dark: #061f75;
  --energy: #ff6500;
  --carbon: #07133b;
  --graphite: #17245a;
  --mist: #f7f9ff;
}

.home-restructure .site-header {
  border-bottom-color: rgba(8, 43, 150, 0.12);
}

.home-restructure .nav-menu {
  gap: 10px;
}

.home-restructure .nav-menu a {
  min-height: 44px;
  padding-inline: 16px;
}

.poster-home-slider {
  padding: 0;
  background: #fff;
}

.poster-home-slider > .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.poster-slider-shell {
  border-radius: 0;
  background: #eef3ff;
  box-shadow: none;
}

.poster-slide {
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: clamp(560px, calc(100svh - var(--header)), 860px);
  overflow: hidden;
  padding: clamp(12px, 2.4vw, 30px);
  background: #f7f9ff;
}

.poster-slide::before {
  position: absolute;
  inset: -26px;
  z-index: -3;
  background-image: var(--slide-image);
  background-position: center;
  background-size: cover;
  content: "";
  filter: blur(24px);
  opacity: 0.42;
  transform: scale(1.05);
}

.poster-slide::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.22) 32%, rgba(8, 43, 150, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(7, 19, 59, 0.16));
}

.poster-slide img {
  position: relative;
  inset: auto;
  z-index: 0;
  width: min(100%, 1536px);
  height: auto;
  max-height: min(78svh, 820px);
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(7, 19, 59, 0.18);
}

.poster-slider-controls {
  right: clamp(14px, 3vw, 30px);
  bottom: clamp(14px, 3vw, 30px);
}

.poster-slider-controls .slider-button,
.poster-slider-controls .slider-dots {
  box-shadow: 0 12px 26px rgba(7, 19, 59, 0.18);
}

.home-intro-strip {
  padding: 0;
  background: var(--electric);
  color: #fff;
}

.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-block: clamp(18px, 3vw, 28px);
}

.intro-strip-inner p {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
}

.steps-home-section {
  background: #fff;
}

.steps-home-section .section-heading {
  max-width: 920px;
}

.steps-home-section .section-heading h2 {
  color: var(--electric);
}

.steps-home-section .section-heading p {
  max-width: 760px;
  margin-top: 12px;
  color: rgba(7, 19, 59, 0.68);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
}

.steps-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  margin-top: 36px;
}

.steps-image {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(8, 43, 150, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 19, 59, 0.12);
}

.steps-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.steps-card-grid {
  display: grid;
  gap: 14px;
}

.lead-step-card {
  position: relative;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(8, 43, 150, 0.14);
  border-left: 5px solid var(--energy);
  border-radius: 8px;
  padding: 20px 20px 20px 76px;
  background: linear-gradient(180deg, #fff, #f8faff);
  box-shadow: 0 14px 38px rgba(7, 19, 59, 0.08);
}

.lead-step-card span {
  position: absolute;
  left: 20px;
  top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--energy);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 950;
}

.lead-step-card h3 {
  margin: 0;
  color: var(--electric);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.lead-step-card p {
  margin: 0;
  color: rgba(7, 19, 59, 0.68);
  font-weight: 650;
}

.time-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 740px);
  margin: 34px auto 0;
  border: 1px solid rgba(255, 101, 0, 0.28);
  border-radius: 8px;
  padding: clamp(16px, 3vw, 22px);
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 19, 59, 0.1);
  text-align: center;
}

.time-banner span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 3px solid var(--energy);
  border-radius: 50%;
  color: var(--energy);
}

.time-banner svg {
  width: 24px;
  height: 24px;
}

.time-banner strong {
  color: var(--electric);
  font-size: clamp(1.55rem, 4vw, 2.7rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.time-banner p {
  margin: 0;
  color: var(--electric);
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  font-weight: 900;
  text-transform: uppercase;
}

.report-value-section {
  background: linear-gradient(180deg, #f7f9ff, #fff);
}

.report-value-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.report-value-grid .section-heading {
  margin-bottom: 0;
}

.report-value-grid .section-heading h2 {
  color: var(--carbon);
}

.value-list {
  display: grid;
  gap: 14px;
}

.value-list article {
  border: 1px solid rgba(8, 43, 150, 0.14);
  border-radius: 8px;
  padding: 18px 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 19, 59, 0.07);
}

.value-list strong {
  display: block;
  color: var(--electric);
  font-size: 1.02rem;
  font-weight: 950;
}

.value-list span {
  display: block;
  margin-top: 4px;
  color: rgba(7, 19, 59, 0.68);
  font-weight: 650;
}

.final-home-cta {
  padding-top: 0;
  background: #fff;
}

.final-home-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  border-radius: 8px;
  padding: clamp(26px, 5vw, 46px);
  background:
    linear-gradient(90deg, rgba(8, 43, 150, 0.94), rgba(8, 43, 150, 0.78)),
    url('../../home-slide-2.jpg') center / cover;
  color: #fff;
  box-shadow: 0 24px 70px rgba(7, 19, 59, 0.18);
}

.final-home-card .eyebrow,
.final-home-card h2,
.final-home-card p {
  color: #fff;
}

.final-home-card h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.final-home-card p:not(.eyebrow) {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
}

.footer-grid-simple {
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(160px, 0.65fr));
}

@media (max-width: 980px) {
  .poster-slide {
    min-height: 620px;
  }

  .poster-slide img {
    max-height: 560px;
  }

  .steps-showcase,
  .report-value-grid,
  .footer-grid-simple {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .home-restructure .nav-menu a {
    min-height: 50px;
  }

  .poster-slide {
    min-height: 520px;
    padding: 10px;
  }

  .poster-slide img {
    max-height: 460px;
  }

  .poster-slider-controls {
    position: static;
    justify-content: center;
    padding: 14px;
    background: var(--electric);
  }

  .intro-strip-inner,
  .time-banner,
  .final-home-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro-strip-inner .btn,
  .final-home-card .btn {
    width: 100%;
    justify-content: center;
  }

  .lead-step-card {
    padding-left: 66px;
  }

  .time-banner {
    align-items: center;
  }
}
/* 20260724 full-width banner and consulting section */
.home-restructure .nav-menu .nav-cta {
  background: var(--energy);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 101, 0, 0.24);
}

.home-restructure .nav-menu .nav-cta:hover,
.home-restructure .nav-menu .nav-cta:focus-visible {
  background: #ff7d28;
  color: #fff;
}

.poster-home-slider,
.poster-home-slider .container,
.poster-home-slider .slider-shell,
.poster-home-slider .slide-viewport,
.poster-home-slider .slide-track {
  width: 100%;
}

.home-slider .poster-slide,
.poster-slide {
  display: block;
  min-height: 0;
  padding: 0;
  background: #fff;
}

.poster-slide::before,
.poster-slide::after {
  display: none;
}

.poster-slide img {
  position: relative;
  inset: auto;
  z-index: 0;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  box-shadow: none;
}

.poster-slider-controls {
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
}

.how-consulting-section {
  background:
    linear-gradient(180deg, #fff 0%, #f7f9ff 48%, #fff 100%);
}

.how-consulting-section .section-heading {
  max-width: 940px;
}

.how-consulting-section .section-heading h2 {
  color: var(--electric);
}

.how-consulting-section .section-heading p {
  max-width: 760px;
  margin-top: 12px;
  color: rgba(7, 19, 59, 0.68);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
}

.consulting-intro-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  border: 1px solid rgba(8, 43, 150, 0.14);
  border-top: 5px solid var(--energy);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 19, 59, 0.1);
}

.consulting-intro-card h3,
.consulting-card h3,
.consulting-panel h3,
.report-flow h3,
.consulting-timeline h3,
.trust-note h3 {
  margin: 0;
  color: var(--carbon);
  line-height: 1.08;
}

.consulting-intro-card h3 {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.consulting-intro-card p,
.consulting-card p,
.consulting-panel p,
.consulting-timeline p,
.trust-note p {
  margin: 12px 0 0;
  color: rgba(7, 19, 59, 0.68);
  font-weight: 650;
}

.consulting-intro-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.consulting-intro-card li {
  border: 1px solid rgba(8, 43, 150, 0.12);
  border-radius: 8px;
  padding: 13px 16px;
  background: #f8faff;
  color: var(--electric);
  font-weight: 950;
}

.consulting-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.consulting-grid.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.consulting-grid.three-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.consulting-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8, 43, 150, 0.14);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 30px);
  background: #fff;
  box-shadow: 0 18px 52px rgba(7, 19, 59, 0.08);
}

.consulting-card::after {
  position: absolute;
  inset: auto -28px -36px auto;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(255, 101, 0, 0.2);
  border-radius: 50%;
  content: "";
}

.consulting-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--energy);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.consulting-card h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
}

.consulting-card.compact {
  display: grid;
  gap: 12px;
}

.consulting-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 101, 0, 0.12);
  color: var(--energy);
}

.consulting-icon svg {
  width: 24px;
  height: 24px;
}

.consulting-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  margin-top: 22px;
  border-radius: 8px;
  padding: clamp(24px, 4vw, 40px);
  background:
    linear-gradient(90deg, rgba(8, 43, 150, 0.96), rgba(8, 43, 150, 0.82)),
    url('../../home-slide-1.jpg') center / cover;
  color: #fff;
  box-shadow: 0 24px 70px rgba(7, 19, 59, 0.16);
}

.consulting-panel .eyebrow,
.consulting-panel h3,
.consulting-panel p {
  color: #fff;
}

.consulting-panel h3 {
  font-size: clamp(1.55rem, 3vw, 2.55rem);
}

.consulting-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.factor-list,
.report-flow-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.factor-list span,
.report-flow-list span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 850;
}

.report-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  margin-top: 22px;
  border: 1px solid rgba(255, 101, 0, 0.22);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 40px);
  background: #fff;
  box-shadow: 0 18px 52px rgba(7, 19, 59, 0.08);
}

.report-flow h3 {
  color: var(--electric);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.report-flow-list span {
  border-color: rgba(8, 43, 150, 0.14);
  background: #f8faff;
  color: var(--electric);
}

.consulting-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.consulting-timeline article {
  border: 1px solid rgba(8, 43, 150, 0.14);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px);
  background: linear-gradient(180deg, #fff, #f8faff);
}

.consulting-timeline span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--energy);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-note {
  margin-top: 22px;
  border-left: 5px solid var(--electric);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
  background: #fff;
  box-shadow: 0 14px 36px rgba(7, 19, 59, 0.07);
}

.trust-note h3 {
  color: var(--electric);
  font-size: clamp(1.25rem, 2.3vw, 1.9rem);
}

@media (max-width: 980px) {
  .consulting-intro-card,
  .consulting-grid.two-columns,
  .consulting-grid.three-columns,
  .consulting-panel,
  .report-flow,
  .consulting-timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .poster-slide img {
    width: 100%;
    min-height: 380px;
    object-fit: cover;
    object-position: center;
  }

  .home-restructure .nav-menu .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .consulting-intro-card,
  .consulting-card,
  .consulting-panel,
  .report-flow,
  .consulting-timeline article,
  .trust-note {
    padding: 18px;
  }
}
/* 20260724 dedicated Como funciona page and root slide banners */
.poster-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 8 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.how-page-hero {
  min-height: clamp(420px, 48vw, 640px);
}

.how-page-hero::after {
  background:
    linear-gradient(90deg, rgba(8, 43, 150, 0.92), rgba(8, 43, 150, 0.62) 46%, rgba(8, 11, 15, 0.34)),
    linear-gradient(180deg, rgba(8, 11, 15, 0.12), rgba(8, 11, 15, 0.72));
}

.how-page .how-consulting-section {
  padding-top: clamp(54px, 8vw, 96px);
}

@media (max-width: 720px) {
  .poster-slide img {
    min-height: clamp(360px, 72vw, 470px);
  }

  .how-page-hero {
    min-height: 500px;
  }
}
/* 20260724 restore previous slider background with recent slide images */
.poster-home-slider {
  background: linear-gradient(90deg, #f7f9ff 0%, #edf2ff 52%, #f8fbff 100%);
}

.poster-slider-shell {
  background: #eef3ff;
}

.home-slider .poster-slide,
.poster-slide {
  position: relative;
  display: grid;
  min-height: clamp(540px, calc(100svh - var(--header)), 780px);
  align-items: center;
  justify-items: center;
  overflow: hidden;
  padding: clamp(14px, 2.4vw, 30px);
  background: #f7f9ff;
}

.poster-slide::before {
  position: absolute;
  inset: -28px;
  z-index: -3;
  display: block;
  background-image: var(--slide-image);
  background-position: center;
  background-size: cover;
  content: "";
  filter: blur(24px);
  opacity: 0.5;
  transform: scale(1.06);
}

.poster-slide::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.2) 34%, rgba(8, 43, 150, 0.1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(7, 19, 59, 0.16));
  content: "";
}

.poster-slide img {
  position: relative;
  inset: auto;
  z-index: 0;
  display: block;
  width: min(100%, 1500px);
  aspect-ratio: 8 / 3;
  height: auto;
  max-height: min(76svh, 700px);
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 28px 80px rgba(7, 19, 59, 0.18);
}

@media (max-width: 720px) {
  .home-slider .poster-slide,
  .poster-slide {
    min-height: clamp(360px, 70vw, 520px);
    padding: 10px;
  }

  .poster-slide img {
    width: 100%;
    min-height: 0;
    max-height: none;
    object-fit: contain;
  }

  .poster-slider-controls {
    position: static;
    justify-content: center;
    padding: 14px;
    background: var(--electric);
  }
}
/* 20260724 seamless full-width slider images */
.poster-home-slider,
.poster-slider-shell {
  background: #f4f7ff;
}

.home-slider .poster-slide,
.poster-slide {
  display: block;
  min-height: 0;
  padding: 0;
  background: #f4f7ff;
}

.poster-slide::before,
.poster-slide::after {
  display: none;
}

.poster-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 8 / 3;
  height: auto;
  max-height: none;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
}

@media (max-width: 720px) {
  .home-slider .poster-slide,
  .poster-slide {
    min-height: 0;
    padding: 0;
  }

  .poster-slide img {
    min-height: clamp(340px, 72vw, 460px);
    object-fit: cover;
  }
}
/* 20260724 photographic editorial home slider */
.poster-home-slider,
.poster-slider-shell {
  background: #07133b;
}

.home-slider .poster-slide,
.poster-slide.brand-message-slide {
  position: relative;
  display: grid;
  min-height: clamp(620px, calc(100svh - var(--header)), 820px);
  align-items: center;
  overflow: hidden;
  padding: clamp(42px, 7vw, 82px) 0;
  background-image: var(--slide-image);
  background-position: var(--slide-position, center);
  background-size: cover;
  color: #fff;
}

.poster-slide.brand-message-slide::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  background-image: var(--slide-image);
  background-position: var(--slide-position, center);
  background-size: cover;
  content: "";
}

.poster-slide.brand-message-slide::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 31%, rgba(255, 255, 255, 0.2) 58%, rgba(7, 19, 59, 0.5) 100%),
    linear-gradient(180deg, rgba(7, 19, 59, 0.06), rgba(7, 19, 59, 0.42));
  content: "";
}

.steps-message-slide::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 42%, rgba(255, 255, 255, 0.3) 68%, rgba(7, 19, 59, 0.52) 100%),
    linear-gradient(180deg, rgba(7, 19, 59, 0.05), rgba(7, 19, 59, 0.46));
}

.poster-slide.brand-message-slide > img {
  display: none;
}

.home-slide-content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  max-width: 760px;
  color: var(--electric);
}

.home-slide-content.narrow {
  max-width: 700px;
}

.home-slide-content.wide {
  max-width: 1080px;
}

.slide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--electric);
  font-size: clamp(0.84rem, 1.2vw, 0.95rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slide-kicker::before {
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: var(--energy);
  content: "";
}

.home-slide-content h1,
.home-slide-content h2 {
  max-width: 820px;
  margin: 0;
  color: var(--electric);
  font-size: clamp(2.55rem, 6vw, 5.7rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.home-slide-content h1 span,
.home-slide-content h2 span {
  color: var(--energy);
}

.slide-lead {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(7, 19, 59, 0.78);
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  font-weight: 700;
}

.slide-bullet-list {
  display: grid;
  gap: 12px;
  margin: clamp(20px, 3vw, 34px) 0 0;
  padding: 0;
  color: var(--electric);
  list-style: none;
}

.slide-bullet-list li {
  position: relative;
  min-height: 38px;
  padding-left: 52px;
  font-size: clamp(1.1rem, 2.4vw, 1.75rem);
  font-weight: 820;
}

.slide-bullet-list li::before {
  position: absolute;
  left: 0;
  top: 0.08em;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--energy);
  border-radius: 50%;
  color: var(--energy);
  content: "!";
  font-size: 1rem;
  font-weight: 950;
}

.slide-bullet-list li:first-child::before {
  content: "$";
}

.slide-bullet-list li:last-child::before {
  content: "MT";
  font-size: 0.68rem;
}

.slide-closer {
  margin: clamp(18px, 3vw, 30px) 0 0;
  color: var(--energy);
  font-size: clamp(1.15rem, 2.2vw, 1.85rem);
  font-weight: 950;
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(20px, 3vw, 30px);
}

.slide-actions .btn.secondary {
  border-color: rgba(8, 43, 150, 0.22);
  background: rgba(255, 255, 255, 0.78);
  color: var(--electric);
}

.slide-feature-list {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin-top: clamp(22px, 3vw, 34px);
}

.slide-feature-list span {
  border-left: 4px solid var(--energy);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--electric);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(7, 19, 59, 0.08);
}

.slide-step-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(22px, 3vw, 34px);
}

.slide-step-row article {
  position: relative;
  min-height: 178px;
  border: 1px solid rgba(8, 43, 150, 0.14);
  border-radius: 8px;
  padding: 46px 18px 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--electric);
  box-shadow: 0 18px 42px rgba(7, 19, 59, 0.1);
}

.slide-step-row span {
  position: absolute;
  top: -22px;
  left: 18px;
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--energy);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 950;
}

.slide-step-row strong {
  display: block;
  color: var(--electric);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.slide-step-row p {
  margin: 10px 0 0;
  color: rgba(7, 19, 59, 0.7);
  font-weight: 650;
}

.slide-deadline {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin-top: 18px;
  border: 1px solid rgba(255, 101, 0, 0.28);
  border-radius: 8px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--electric);
  box-shadow: 0 18px 42px rgba(7, 19, 59, 0.1);
}

.slide-deadline strong {
  color: var(--energy);
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-weight: 950;
  text-transform: uppercase;
}

.slide-deadline span {
  font-weight: 900;
  text-transform: uppercase;
}

@media (min-width: 981px) {
  .home-slide-content {
    margin-left: max(32px, calc((100vw - var(--max)) / 2));
    margin-right: auto;
  }
}

@media (max-width: 980px) {
  .home-slider .poster-slide,
  .poster-slide.brand-message-slide {
    min-height: auto;
    padding: 70px 0 82px;
  }

  .poster-slide.brand-message-slide::after,
  .steps-message-slide::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
      linear-gradient(180deg, rgba(7, 19, 59, 0.1), rgba(7, 19, 59, 0.38));
  }

  .slide-step-row {
    grid-template-columns: 1fr;
  }

  .slide-step-row article {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .home-slider .poster-slide,
  .poster-slide.brand-message-slide {
    min-height: auto;
    padding: 54px 0 74px;
    background-position: center;
  }

  .home-slide-content h1,
  .home-slide-content h2 {
    font-size: clamp(2.1rem, 12vw, 3.4rem);
  }

  .slide-bullet-list li {
    padding-left: 46px;
  }

  .slide-actions .btn {
    width: 100%;
  }
}
/* 20260724 restore legacy dark hero slider */
.legacy-home-slider {
  padding: 0;
  background: #fff;
}

.legacy-home-slider > .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.legacy-slider-shell {
  width: 100%;
  border-radius: 0;
  background: #07133b;
  box-shadow: none;
}

.legacy-hero-slide {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(610px, 78svh, 820px);
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.legacy-hero-slide::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  background:
    linear-gradient(90deg, rgba(7, 19, 59, 0.92), rgba(42, 51, 146, 0.72) 46%, rgba(7, 19, 59, 0.22) 100%),
    linear-gradient(180deg, rgba(7, 19, 59, 0.1), rgba(7, 19, 59, 0.88));
  content: "";
}

.legacy-hero-slide img {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04);
}

.legacy-hero-slide .slide-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 840px);
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
  padding: clamp(46px, 7vw, 88px) 0;
}

.legacy-hero-slide .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--energy);
  font-size: clamp(0.86rem, 1.3vw, 1rem);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.legacy-hero-slide .eyebrow::before {
  width: 32px;
  height: 2px;
  background: var(--energy);
  content: "";
}

.legacy-hero-slide h1,
.legacy-hero-slide h2 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.7rem, 5.3vw, 5.25rem);
  line-height: 0.98;
}

.legacy-hero-slide p:not(.eyebrow) {
  max-width: 700px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
}

.legacy-hero-slide .slide-proof-row {
  margin-top: 26px;
}

.legacy-hero-slide .slide-proof-row span {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 850;
}

.legacy-hero-slide .slide-button-row {
  margin-top: 12px;
}

.legacy-hero-slide .btn.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.legacy-hero-slide .btn.secondary:hover,
.legacy-hero-slide .btn.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.legacy-slider-controls {
  right: clamp(18px, 4vw, 34px);
  bottom: clamp(18px, 4vw, 34px);
}

@media (max-width: 980px) {
  .legacy-hero-slide {
    min-height: 640px;
  }

  .legacy-hero-slide .slide-content {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  .legacy-hero-slide {
    min-height: 620px;
  }

  .legacy-hero-slide::after {
    background:
      linear-gradient(90deg, rgba(7, 19, 59, 0.94), rgba(42, 51, 146, 0.8)),
      linear-gradient(180deg, rgba(7, 19, 59, 0.25), rgba(7, 19, 59, 0.9));
  }

  .legacy-hero-slide .slide-content {
    width: min(100% - 32px, 840px);
    padding: 54px 0 88px;
  }

  .legacy-hero-slide h1,
  .legacy-hero-slide h2 {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
  }

  .legacy-slider-controls {
    right: 16px;
    bottom: 16px;
  }
}
/* 20260724 soft text-only marketing slider */
.soft-info-slider {
  padding: 0;
  background: linear-gradient(180deg, #fff, #f6f8ff);
}

.soft-info-slider > .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.soft-slider-shell {
  width: 100%;
  border-radius: 0;
  background: #f6f8ff;
  box-shadow: none;
}

.soft-info-slider .slide-track {
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.soft-info-slide {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(620px, 78svh, 820px);
  align-items: center;
  overflow: hidden;
  padding: clamp(46px, 7vw, 88px) 0;
  background: #f7f9ff;
  color: var(--electric);
}

.soft-info-slide::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  background-image: var(--slide-image);
  background-position: var(--slide-position, center);
  background-size: cover;
  content: "";
  opacity: 0.34;
  filter: saturate(0.96) contrast(0.96);
}

.soft-info-slide::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 46%, rgba(255, 255, 255, 0.62) 76%, rgba(255, 255, 255, 0.35) 100%),
    radial-gradient(circle at 12% 18%, rgba(255, 101, 0, 0.14), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(8, 43, 150, 0.12), transparent 32%);
  content: "";
}

.soft-info-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max));
  max-width: 920px;
  margin: 0 auto;
  color: var(--electric);
}

.soft-info-content.compact {
  max-width: 990px;
}

.soft-info-content.wide {
  max-width: 1180px;
}

.soft-info-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--electric);
  font-size: clamp(0.82rem, 1.2vw, 0.95rem);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.soft-info-content .eyebrow::before {
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--energy);
  content: "";
}

.soft-info-content h1,
.soft-info-content h2 {
  max-width: 930px;
  margin: 0;
  color: var(--electric);
  font-size: clamp(2.65rem, 6vw, 5.5rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.soft-info-content h1 span,
.soft-info-content h2 span {
  color: var(--energy);
}

.soft-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(7, 19, 59, 0.74);
  font-size: clamp(1rem, 1.7vw, 1.24rem);
  font-weight: 700;
}

.soft-signal-list,
.soft-credit-row {
  display: grid;
  gap: 12px;
  margin-top: clamp(22px, 3vw, 34px);
}

.soft-signal-list span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 44px;
  color: var(--electric);
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: 840;
}

.soft-signal-list span::before {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 2px solid var(--energy);
  border-radius: 50%;
  color: var(--energy);
  content: "!";
  font-size: 1rem;
  font-weight: 950;
}

.soft-signal-list span:first-child::before {
  content: "$";
}

.soft-signal-list span:last-child::before {
  content: "MT";
  font-size: 0.68rem;
}

.soft-highlight {
  margin: clamp(18px, 3vw, 28px) 0 0;
  color: var(--energy);
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  font-weight: 950;
}

.soft-credit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.soft-credit-row span {
  border-left: 3px solid var(--energy);
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--electric);
  font-size: 0.9rem;
  font-weight: 850;
}

.soft-feature-grid,
.soft-step-grid {
  display: grid;
  gap: 14px;
  margin-top: clamp(24px, 3.4vw, 38px);
}

.soft-feature-grid {
  max-width: 780px;
}

.soft-feature-grid article,
.soft-step-grid article {
  border: 1px solid rgba(8, 43, 150, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(7, 19, 59, 0.09);
}

.soft-feature-grid article {
  padding: 18px 20px;
  border-left: 5px solid var(--energy);
}

.soft-feature-grid strong,
.soft-step-grid strong {
  display: block;
  color: var(--electric);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.soft-feature-grid p,
.soft-step-grid p {
  margin: 8px 0 0;
  color: rgba(7, 19, 59, 0.68);
  font-weight: 650;
}

.soft-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1060px;
  padding-top: 24px;
}

.soft-step-grid article {
  position: relative;
  min-height: 188px;
  padding: 50px 20px 20px;
}

.soft-step-grid span {
  position: absolute;
  top: -25px;
  left: 20px;
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--energy);
  color: #fff;
  font-size: 1.9rem;
  font-weight: 950;
}

.soft-deadline {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin-top: 18px;
  border: 1px solid rgba(255, 101, 0, 0.28);
  border-radius: 8px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--electric);
  box-shadow: 0 18px 46px rgba(7, 19, 59, 0.09);
}

.soft-deadline strong {
  color: var(--energy);
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-weight: 950;
  text-transform: uppercase;
}

.soft-deadline span {
  font-weight: 900;
  text-transform: uppercase;
}

.soft-info-content .slide-button-row {
  margin-top: clamp(20px, 3vw, 30px);
}

.soft-info-content .btn.ghost {
  border-color: rgba(8, 43, 150, 0.18);
  background: rgba(255, 255, 255, 0.7);
  color: var(--electric);
}

.soft-slider-controls {
  right: clamp(18px, 4vw, 34px);
  bottom: clamp(18px, 4vw, 34px);
}

.soft-slider-controls .slider-button,
.soft-slider-controls .slider-dots {
  box-shadow: 0 16px 36px rgba(7, 19, 59, 0.16);
}

@media (max-width: 980px) {
  .soft-info-slide {
    min-height: auto;
    padding: 66px 0 92px;
  }

  .soft-info-slide::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.86)),
      radial-gradient(circle at 10% 12%, rgba(255, 101, 0, 0.14), transparent 32%);
  }

  .soft-step-grid {
    grid-template-columns: 1fr;
  }

  .soft-step-grid article {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .soft-info-content {
    width: min(100% - 32px, var(--max));
  }

  .soft-info-content h1,
  .soft-info-content h2 {
    font-size: clamp(2.1rem, 11vw, 3.35rem);
  }

  .soft-signal-list span {
    width: auto;
  }

  .soft-info-content .btn {
    width: 100%;
  }

  .soft-slider-controls {
    right: 16px;
    bottom: 16px;
  }
}
/* 20260724 keep photographic background visible on soft slider */
.soft-info-slide {
  background: #07133b;
}

.soft-info-slide::before {
  opacity: 1;
  filter: saturate(1.04) contrast(1.02);
}

.soft-info-slide::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.74) 42%, rgba(255, 255, 255, 0.18) 70%, rgba(7, 19, 59, 0.34) 100%),
    linear-gradient(180deg, rgba(7, 19, 59, 0.04), rgba(7, 19, 59, 0.28));
}

.soft-info-content {
  width: min(100% - 40px, var(--max));
  max-width: 880px;
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
  margin-right: auto;
}

.soft-info-content.compact {
  max-width: 920px;
}

.soft-info-content.wide {
  max-width: 1160px;
}

.soft-signal-list span,
.soft-credit-row span,
.soft-feature-grid article,
.soft-step-grid article,
.soft-deadline,
.soft-info-content .btn.ghost {
  backdrop-filter: blur(14px);
}

@media (max-width: 980px) {
  .soft-info-slide::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.7)),
      linear-gradient(180deg, rgba(7, 19, 59, 0.08), rgba(7, 19, 59, 0.32));
  }

  .soft-info-content {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  .soft-info-slide::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.76)),
      linear-gradient(180deg, rgba(7, 19, 59, 0.08), rgba(7, 19, 59, 0.34));
  }
}
/* 20260724 lead process section from client banner */
.lead-process-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 54%, #fff5ee 100%);
}

.lead-process-section > .container {
  position: relative;
}

.lead-process-heading {
  max-width: 1120px;
  margin: 0 auto clamp(28px, 5vw, 48px);
  text-align: center;
}

.lead-process-heading .eyebrow {
  justify-content: center;
  color: var(--electric);
}

.lead-process-heading .eyebrow::before,
.lead-process-heading .eyebrow::after {
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: var(--energy);
  content: "";
}

.lead-process-heading h2 {
  margin: 0;
  color: var(--electric);
  font-size: clamp(3rem, 7vw, 6.1rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.lead-process-heading p:not(.eyebrow) {
  margin: 12px auto 0;
  color: var(--energy);
  font-size: clamp(1.25rem, 3vw, 2.15rem);
  font-weight: 950;
  line-height: 1.08;
  text-transform: uppercase;
}

.lead-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.lead-process-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 330px;
  border: 1px solid rgba(8, 43, 150, 0.14);
  border-radius: 8px;
  padding: 64px clamp(18px, 2.5vw, 30px) 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(7, 19, 59, 0.11);
  text-align: center;
}

.lead-process-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--electric), var(--energy));
  content: "";
}

.lead-process-card .step-number {
  position: absolute;
  top: -34px;
  left: 50%;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 6px solid #fff;
  border-radius: 50%;
  background: var(--energy);
  box-shadow: 0 18px 34px rgba(255, 101, 0, 0.28);
  color: #fff;
  font-size: 2.15rem;
  font-weight: 950;
  transform: translateX(-50%);
}

.step-icon {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  color: var(--electric);
}

.step-icon svg,
.lead-time-banner svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.lead-process-card h3 {
  max-width: 290px;
  margin: 0;
  color: var(--electric);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.lead-process-card p {
  max-width: 320px;
  margin: 0;
  color: rgba(7, 19, 59, 0.74);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  font-weight: 650;
  line-height: 1.55;
}

.lead-time-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 24px);
  width: min(100%, 760px);
  margin: clamp(28px, 5vw, 46px) auto 0;
  border: 1px solid rgba(8, 43, 150, 0.14);
  border-radius: 8px;
  padding: clamp(16px, 3vw, 24px) clamp(20px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 54px rgba(7, 19, 59, 0.1);
  text-align: left;
}

.lead-time-banner .time-icon {
  display: grid;
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  place-items: center;
  color: var(--energy);
}

.lead-time-banner strong {
  display: block;
  color: var(--electric);
  font-size: clamp(1.65rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
}

.lead-time-banner strong em {
  color: var(--energy);
  font-style: normal;
}

.lead-time-banner p {
  margin: 4px 0 0;
  color: var(--electric);
  font-size: clamp(0.95rem, 1.8vw, 1.18rem);
  font-weight: 900;
  text-transform: uppercase;
}

.lead-process-actions {
  justify-content: center;
  margin-top: 26px;
}

.lead-process-actions .btn.ghost {
  border-color: rgba(8, 43, 150, 0.18);
  background: #fff;
  color: var(--electric);
}

@media (max-width: 980px) {
  .lead-process-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .lead-process-card {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .lead-process-heading h2 {
    font-size: clamp(2.45rem, 14vw, 3.6rem);
  }

  .lead-process-heading p:not(.eyebrow) {
    font-size: clamp(1.05rem, 6vw, 1.55rem);
  }

  .lead-time-banner,
  .lead-process-actions {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .lead-time-banner .time-icon {
    margin: 0 auto;
  }

  .lead-process-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* 20260727 footer logo clarity and full Como funciona content */
.footer-logo {
  display: block;
  width: min(210px, 100%);
  height: auto;
  margin-bottom: 18px;
}

.consulting-card .consulting-list,
.consulting-card .consulting-check-list,
.consulting-timeline .consulting-list,
.trust-note .consulting-list {
  margin-top: 14px;
}

.consulting-list,
.consulting-check-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.consulting-list.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.consulting-list li,
.consulting-check-list li {
  position: relative;
  color: rgba(7, 19, 59, 0.76);
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.45;
}

.consulting-list li {
  padding-left: 18px;
}

.consulting-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--energy);
  content: "";
}

.consulting-check-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.consulting-check-list li span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 43, 150, 0.1);
  color: var(--electric);
  font-size: 0.72rem;
  line-height: 1;
}

.panel-copy-wide,
.report-flow-note {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 18px;
}

.report-flow-note {
  border-top-color: rgba(8, 43, 150, 0.12);
}

.report-flow-note p {
  margin-top: 8px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.trust-grid .trust-note {
  margin-top: 0;
}

.legal-list li {
  font-size: 0.94rem;
}

@media (max-width: 980px) {
  .consulting-list.two-up,
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* 20260727 footer full bleed fix */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.site-footer {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--carbon) !important;
  box-shadow: 0 0 0 100vmax var(--carbon);
  clip-path: inset(0 -100vmax);
}

.site-footer::before {
  position: absolute;
  inset: 0 -32px;
  z-index: 0;
  background: var(--carbon);
  content: "";
}

.site-footer .footer-inner {
  position: relative;
  z-index: 1;
}

/* 20260727 upload admin download link */
.admin-download-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(8, 43, 150, 0.16);
  border-radius: 8px;
  padding: 6px 12px;
  background: #fff;
  color: var(--electric);
  font-weight: 900;
}

.admin-download-link:hover,
.admin-download-link:focus-visible {
  border-color: rgba(255, 101, 0, 0.36);
  color: var(--energy);
}

/* 20260727 clean guide layout for Como funciona */
.how-guide-section {
  background: linear-gradient(180deg, #fff 0%, #f7f9ff 48%, #fff 100%);
  padding: 76px 0 92px;
}

.how-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.how-index {
  position: sticky;
  top: 108px;
  border: 1px solid rgba(8, 43, 150, 0.14);
  border-left: 5px solid var(--energy);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(7, 19, 59, 0.08);
}

.how-index h2 {
  margin: 6px 0 0;
  color: var(--carbon);
  font-size: 1.45rem;
  line-height: 1.08;
}

.how-index-list {
  display: grid;
  margin-top: 20px;
}

.how-index-list a {
  display: block;
  border-top: 1px solid rgba(8, 43, 150, 0.1);
  padding: 12px 0;
  color: rgba(7, 19, 59, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.24;
  text-transform: uppercase;
}

.how-index-list a:hover,
.how-index-list a:focus-visible {
  color: var(--energy);
}

.guide-content {
  min-width: 0;
}

.guide-section {
  scroll-margin-top: 120px;
  border-bottom: 1px solid rgba(8, 43, 150, 0.12);
  padding: 0 0 46px;
  margin-bottom: 46px;
}

.guide-section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.guide-section-header {
  max-width: 900px;
  margin-bottom: 20px;
}

.guide-number {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--energy);
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1;
}

.guide-section h2 {
  max-width: 980px;
  margin: 0;
  color: var(--electric);
  font-size: 2.55rem;
  line-height: 1.04;
  text-transform: uppercase;
}

.guide-section h3 {
  max-width: 860px;
  margin: 26px 0 0;
  color: var(--carbon);
  font-size: 1.35rem;
  line-height: 1.18;
}

.guide-section p {
  max-width: 900px;
  margin: 14px 0 0;
  color: rgba(7, 19, 59, 0.72);
  font-size: 1.04rem;
  font-weight: 620;
  line-height: 1.72;
}

.guide-note {
  max-width: 900px;
  margin-top: 24px;
  border-left: 5px solid var(--energy);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  background: #fff7ef;
}

.guide-note p {
  margin: 0;
  color: var(--carbon);
  font-weight: 850;
}

.guide-list {
  display: grid;
  gap: 10px;
  max-width: 960px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.guide-list.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 32px;
}

.guide-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(7, 19, 59, 0.78);
  font-size: 1rem;
  font-weight: 720;
  line-height: 1.52;
}

.guide-list li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--energy);
  content: "";
}

.how-guide-section + .final-home-cta {
  padding-top: 0;
}

@media (max-width: 1020px) {
  .how-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .how-index {
    position: static;
  }

  .how-index-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
  }
}

@media (max-width: 720px) {
  .how-guide-section {
    padding: 42px 0 62px;
  }

  .how-layout {
    gap: 34px;
  }

  .how-index {
    padding: 18px;
  }

  .how-index-list {
    grid-template-columns: 1fr;
  }

  .how-index-list a {
    font-size: 0.78rem;
  }

  .guide-section {
    margin-bottom: 34px;
    padding-bottom: 34px;
  }

  .guide-section h2 {
    font-size: 1.78rem;
    line-height: 1.1;
  }

  .guide-section h3 {
    font-size: 1.18rem;
  }

  .guide-section p,
  .guide-list li {
    font-size: 0.98rem;
  }

  .guide-list.two-columns {
    grid-template-columns: 1fr;
  }

  .guide-note {
    padding: 16px 18px;
  }
}

/* 20260728 wikipedia-style Como funciona */
.how-wiki-layout {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.how-wiki-index {
  position: static;
  max-width: 760px;
  margin: 0 0 44px;
  border: 1px solid rgba(8, 43, 150, 0.16);
  border-left: 5px solid var(--energy);
  border-radius: 8px;
  padding: 24px 28px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(7, 19, 59, 0.07);
}

.how-wiki-index h2 {
  margin: 6px 0 0;
  color: var(--carbon);
  font-size: 1.35rem;
  line-height: 1.1;
}

.how-wiki-index-list {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0 0 0 22px;
}

.how-wiki-index-list li {
  padding: 8px 0;
  color: var(--energy);
  font-weight: 900;
}

.how-wiki-index-list a {
  border: 0;
  padding: 0;
  color: var(--electric);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.how-wiki-index-list a:hover,
.how-wiki-index-list a:focus-visible {
  color: var(--energy);
}

.how-article {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.how-article .guide-section {
  display: block !important;
  min-height: 0;
  scroll-margin-top: 116px;
  border-bottom: 1px solid rgba(8, 43, 150, 0.14);
  margin: 0 0 44px;
  padding: 0 0 44px;
  animation: none;
}

.how-article .guide-section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.how-article .guide-section-header {
  margin-bottom: 18px;
}

.how-article .guide-number {
  color: var(--energy);
}

.how-article .guide-section h2 {
  margin: 0;
  color: var(--electric);
  font-size: 2rem;
  line-height: 1.12;
  text-transform: uppercase;
}

.how-article .guide-section h3 {
  margin-top: 24px;
  color: var(--carbon);
  font-size: 1.2rem;
  line-height: 1.25;
}

.how-article .guide-section p {
  max-width: 900px;
  color: rgba(7, 19, 59, 0.75);
}

.how-article .guide-list {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin-top: 16px;
}

@media (max-width: 720px) {
  .how-wiki-index {
    margin-bottom: 34px;
    padding: 20px;
  }

  .how-wiki-index-list a {
    font-size: 0.86rem;
  }

  .how-article .guide-section {
    margin-bottom: 34px;
    padding-bottom: 34px;
  }

  .how-article .guide-section h2 {
    font-size: 1.55rem;
  }
}

/* 20260728 Como funciona hero photo background */
.how-page-hero {
  background-color: #07133b;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.how-page-hero::before {
  display: none;
}

.how-page-hero::after {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 59, 0.86) 0%, rgba(42, 51, 146, 0.48) 48%, rgba(7, 19, 59, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 19, 59, 0.04) 0%, rgba(7, 19, 59, 0.7) 100%);
}

.how-page-hero .container {
  position: relative;
  z-index: 1;
  text-shadow: 0 16px 42px rgba(7, 19, 59, 0.38);
}

@media (max-width: 720px) {
  .how-page-hero {
    background-position: 44% center;
  }

  .how-page-hero::after {
    background:
      linear-gradient(90deg, rgba(7, 19, 59, 0.88), rgba(42, 51, 146, 0.54), rgba(7, 19, 59, 0.22)),
      linear-gradient(180deg, rgba(7, 19, 59, 0.04), rgba(7, 19, 59, 0.72));
  }
}

/* 20260728 floating left index Como funciona */
.how-guide-section > .container {
  width: min(100% - 40px, 1240px);
}

.how-wiki-layout {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  width: 100%;
}

.how-article {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.how-wiki-index {
  grid-column: 1;
  grid-row: 1;
  position: sticky;
  top: calc(var(--header) + 24px);
  align-self: start;
  max-width: none;
  max-height: calc(100svh - var(--header) - 48px);
  margin: 0;
  overflow: auto;
  border: 1px solid rgba(8, 43, 150, 0.16);
  border-top: 5px solid var(--energy);
  border-left: 1px solid rgba(8, 43, 150, 0.16);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(7, 19, 59, 0.12);
}

.how-wiki-index::-webkit-scrollbar {
  width: 8px;
}

.how-wiki-index::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(8, 43, 150, 0.22);
}

.how-wiki-index h2 {
  font-size: 1.12rem;
}

.how-wiki-index-list {
  margin-top: 14px;
  padding-left: 20px;
}

.how-wiki-index-list li {
  padding: 6px 0;
}

.how-wiki-index-list a {
  font-size: 0.8rem;
  line-height: 1.28;
}

@media (max-width: 1020px) {
  .how-guide-section > .container {
    width: min(100% - 32px, var(--max));
  }

  .how-wiki-layout {
    grid-template-columns: 1fr;
  }

  .how-wiki-index,
  .how-article {
    grid-column: 1;
    grid-row: auto;
  }

  .how-wiki-index {
    position: static;
    max-height: none;
    margin-bottom: 34px;
    padding: 20px;
  }

  .how-wiki-index-list a {
    font-size: 0.86rem;
  }
}

/* 20260728 partner referral dashboard */
.admin-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-stat.partner-card {
  background: linear-gradient(135deg, rgba(42, 51, 146, 0.1), rgba(255, 125, 40, 0.12)), #fff;
}

.admin-partner-panel,
.admin-activity-panel,
.partner-invite-card {
  overflow: hidden;
}

.admin-helper-text {
  max-width: 880px;
  margin: 4px 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.admin-partner-form {
  margin: 8px 0 28px;
  border: 1px solid rgba(8, 43, 150, 0.12);
  border-radius: 8px;
  padding: clamp(16px, 2.5vw, 24px);
  background: linear-gradient(135deg, rgba(42, 51, 146, 0.04), rgba(255, 125, 40, 0.05));
}

.admin-mini-form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.admin-mini-submit {
  align-self: end;
}

.admin-mini-submit .btn {
  width: 100%;
}

.partner-admin-table {
  margin-top: 8px;
}

.partner-section .admin-shell,
.partner-shell {
  display: grid;
  gap: 24px;
}

.partner-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.partner-link-box {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(8, 43, 150, 0.12);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: #f8faff;
}

.partner-link-box label {
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 850;
}

.partner-copy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.partner-copy-row input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd9d6;
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  color: var(--carbon);
  font-weight: 750;
}

.partner-link-box p {
  margin: 0;
  color: rgba(7, 19, 59, 0.66);
  font-weight: 650;
}

.partner-request-list {
  max-height: 560px;
  overflow: auto;
  padding-right: 6px;
}

.activity-list {
  display: grid;
  gap: 12px;
}

.activity-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(8, 43, 150, 0.12);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.activity-dot {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border: 3px solid rgba(255, 125, 40, 0.22);
  border-radius: 999px;
  background: var(--energy);
  box-shadow: 0 0 0 6px rgba(42, 51, 146, 0.06);
}

.activity-item strong {
  display: block;
  color: var(--carbon);
  font-weight: 900;
  line-height: 1.2;
}

.activity-item p {
  margin: 5px 0 0;
  color: rgba(7, 19, 59, 0.68);
  font-size: 0.94rem;
  font-weight: 650;
}

.activity-item p span {
  color: rgba(7, 19, 59, 0.52);
}

.activity-item time {
  color: var(--steel);
  font-size: 0.84rem;
  font-weight: 780;
  white-space: nowrap;
}

.admin-activity-list {
  max-height: 680px;
  overflow: auto;
  padding-right: 6px;
}

@media (max-width: 1120px) {
  .admin-stat-grid,
  .partner-stat-grid,
  .admin-mini-form-grid,
  .partner-dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .admin-stat-grid,
  .partner-stat-grid,
  .admin-mini-form-grid,
  .partner-dashboard-grid,
  .partner-copy-row,
  .activity-item {
    grid-template-columns: 1fr;
  }

  .activity-dot {
    display: none;
  }

  .activity-item time {
    white-space: normal;
  }

  .partner-copy-row .btn {
    width: 100%;
  }
}

.partner-status-form {
  margin: 0;
}

.partner-status-form .admin-detail-toggle {
  white-space: nowrap;
}
/* Self-service partner activation */
.partner-self-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
  margin-bottom: 26px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 125, 40, 0.24);
  border-top: 4px solid var(--orange);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 125, 40, 0.07));
}

.partner-self-card.active {
  border-top-color: #1f9d62;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(31, 157, 98, 0.08));
}

.partner-self-card.blocked {
  border-top-color: #c83d3d;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(200, 61, 61, 0.07));
}

.partner-self-card h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.08;
}

.partner-self-card p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.partner-self-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.partner-self-code {
  display: inline-flex;
  max-width: min(100%, 760px);
  margin-top: 14px;
  padding: 10px 13px;
  border: 1px solid rgba(8, 43, 150, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .partner-self-card {
    grid-template-columns: 1fr;
  }

  .partner-self-actions,
  .partner-self-actions .btn {
    width: 100%;
    justify-content: stretch;
  }

  .partner-self-actions .btn,
  .partner-self-actions button {
    width: 100%;
  }
}
/* 20260805 home slider with root s1/s2/s3 images */
.image-only-home-slider {
  padding: 0;
  background: #fff;
}

.image-only-home-slider > .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.image-slider-shell {
  width: 100%;
  border-radius: 0;
  background: #eef2ff;
  box-shadow: none;
}

.image-hero-slide {
  position: relative;
  display: block;
  min-height: clamp(460px, 76svh, 820px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #07133b;
}

.image-hero-slide::after {
  display: none;
}

.image-hero-slide img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.image-slider-controls {
  right: clamp(18px, 4vw, 34px);
  bottom: clamp(18px, 4vw, 34px);
}

@media (max-width: 720px) {
  .image-hero-slide {
    min-height: 420px;
    aspect-ratio: 4 / 5;
  }

  .image-hero-slide img {
    object-position: center;
  }

  .image-slider-controls {
    right: 16px;
    bottom: 16px;
  }
}
/* 20260805 creative conversion hero */
.conversion-home-slider {
  padding: 0;
  background: #07133b;
}

.conversion-home-slider > .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.conversion-slider-shell {
  width: 100%;
  border-radius: 0;
  background: #07133b;
  box-shadow: none;
}

.conversion-slide {
  position: relative;
  display: grid;
  min-height: clamp(650px, calc(100svh - var(--header)), 820px);
  align-items: stretch;
  overflow: hidden;
  background: #07133b;
  color: #fff;
}

.conversion-slide::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: var(--bg-image);
  background-position: center;
  background-size: cover;
  content: "";
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.01);
}

.conversion-slide::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 101, 0, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(7, 19, 59, 0.96) 0%, rgba(8, 43, 150, 0.86) 45%, rgba(7, 19, 59, 0.44) 100%),
    linear-gradient(180deg, rgba(7, 19, 59, 0.08), rgba(7, 19, 59, 0.88));
  content: "";
}

.conversion-slide-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 92px) 0 clamp(82px, 9vw, 118px);
}

.conversion-copy {
  display: grid;
  gap: 18px;
  align-content: center;
  max-width: 780px;
}

.conversion-copy .slide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0;
  color: var(--energy);
  font-size: clamp(0.86rem, 1.15vw, 0.98rem);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.conversion-copy .slide-kicker::before {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--energy);
  content: "";
}

.conversion-copy h1,
.conversion-copy h2 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.7rem, 5.4vw, 5.45rem);
  line-height: 0.96;
}

.conversion-lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 650;
  line-height: 1.7;
}

.conversion-badges,
.conversion-steps,
.conversion-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.conversion-badges span,
.conversion-steps span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 9px 15px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.conversion-steps b {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--energy);
  color: #fff;
  font-size: 0.86rem;
}

.conversion-metrics span {
  min-width: 150px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.conversion-metrics strong,
.conversion-metrics em {
  display: block;
}

.conversion-metrics strong {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 950;
}

.conversion-metrics em {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  font-weight: 650;
}

.conversion-actions {
  margin-top: 6px;
}

.conversion-actions .btn.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.conversion-actions .btn.secondary:hover,
.conversion-actions .btn.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.conversion-visual {
  position: relative;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: clamp(10px, 1.5vw, 16px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.conversion-visual::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 101, 0, 0.5), rgba(255, 255, 255, 0.12), rgba(8, 43, 150, 0.42));
  content: "";
  opacity: 0.55;
}

.conversion-visual img {
  position: relative;
  inset: auto;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

.floating-note,
.report-chip,
.deadline-pill {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(7, 19, 59, 0.82);
  color: #fff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.floating-note.top {
  top: -22px;
  right: 22px;
}

.floating-note.bottom {
  bottom: -22px;
  left: 22px;
}

.floating-note strong,
.report-chip strong,
.deadline-pill strong {
  display: block;
  color: #fff;
  font-weight: 950;
  line-height: 1;
}

.floating-note span,
.report-chip span,
.deadline-pill span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.report-chip {
  right: -18px;
  bottom: 22px;
  border-color: rgba(47, 201, 109, 0.34);
}

.report-chip strong {
  color: #69e39a;
}

.deadline-pill {
  right: 22px;
  bottom: -22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.deadline-pill strong {
  color: var(--energy);
  font-size: 2rem;
}

.conversion-slider-controls {
  right: clamp(18px, 4vw, 34px);
  bottom: clamp(18px, 4vw, 34px);
}

.conversion-slider-controls .slider-button,
.conversion-slider-controls .slider-dots {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

@media (max-width: 1040px) {
  .conversion-slide-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 46px;
  }

  .conversion-copy {
    max-width: 860px;
  }

  .conversion-visual {
    width: min(100%, 680px);
  }
}

@media (max-width: 720px) {
  .conversion-slide {
    min-height: 0;
  }

  .conversion-slide-inner {
    width: min(100% - 32px, var(--max));
    padding: 36px 0 86px;
  }

  .conversion-copy h1,
  .conversion-copy h2 {
    font-size: clamp(2.18rem, 12vw, 3.35rem);
  }

  .conversion-lead {
    font-size: 0.98rem;
  }

  .conversion-actions .btn,
  .conversion-actions {
    width: 100%;
  }

  .conversion-actions .btn {
    justify-content: center;
  }

  .conversion-visual {
    display: none;
  }

  .conversion-slider-controls {
    right: 16px;
    bottom: 16px;
  }
}
/* 20260805 polished home hero */
.polished-home-slider {
  position: relative;
  background: #07133b;
}

.polished-home-slider .conversion-slider-shell {
  min-height: clamp(620px, calc(100svh - var(--header)), 790px);
  overflow: hidden;
  border-radius: 0;
}

.polished-home-slider .slide-viewport,
.polished-home-slider .slide-track,
.polished-home-slider .conversion-slide {
  min-height: inherit;
}

.polished-home-slider .conversion-slide {
  isolation: isolate;
  min-height: inherit;
}

.polished-home-slider .conversion-slide::before {
  z-index: -2;
  opacity: 0.86;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.03);
}

.polished-home-slider .conversion-slide:nth-child(1)::before {
  background-position: 52% 50%;
}

.polished-home-slider .conversion-slide:nth-child(2)::before {
  background-position: 58% 50%;
}

.polished-home-slider .conversion-slide:nth-child(3)::before {
  background-position: 50% 48%;
}

.polished-home-slider .conversion-slide::after {
  z-index: -1;
  background:
    radial-gradient(circle at 74% 30%, rgba(255, 101, 0, 0.2), transparent 31%),
    linear-gradient(90deg, rgba(6, 15, 46, 0.97) 0%, rgba(8, 43, 150, 0.9) 44%, rgba(6, 15, 46, 0.42) 100%),
    linear-gradient(180deg, rgba(6, 15, 46, 0.16), rgba(6, 15, 46, 0.82));
}

.polished-home-slider .conversion-slide-inner {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(28px, 5vw, 74px);
  width: min(100% - 48px, 1180px);
  min-height: inherit;
  padding: clamp(56px, 7vw, 92px) 0 clamp(92px, 8vw, 118px);
}

.polished-home-slider .conversion-copy {
  max-width: 770px;
}

.polished-home-slider .conversion-copy h1,
.polished-home-slider .conversion-copy h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(3rem, 6.2vw, 6rem);
  line-height: 0.94;
  text-wrap: balance;
}

.polished-home-slider .conversion-lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.68;
}

.polished-home-slider .conversion-badges span,
.polished-home-slider .conversion-steps span {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.polished-home-slider .conversion-metrics span {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.11);
}

.hero-insight-panel {
  position: relative;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-top: 4px solid var(--energy);
  border-radius: 8px;
  padding: clamp(24px, 2.8vw, 34px);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
}

.hero-insight-panel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  content: "";
}

.hero-insight-panel .panel-label {
  margin: 0 0 14px;
  color: var(--energy);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-insight-panel > strong {
  display: block;
  color: #fff;
  font-size: clamp(1.38rem, 2.2vw, 2rem);
  font-weight: 950;
  line-height: 1.14;
}

.hero-insight-panel ul,
.hero-insight-panel ol {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-insight-panel ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 850;
}

.hero-insight-panel ul li::before {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--energy);
  box-shadow: 0 0 0 5px rgba(255, 101, 0, 0.16);
  content: "";
}

.hero-insight-panel .panel-note {
  display: block;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.analysis-panel {
  display: grid;
  gap: 14px;
}

.analysis-panel .panel-row {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 16px;
  background: rgba(7, 19, 59, 0.38);
}

.analysis-panel .panel-row span {
  display: block;
  color: var(--energy);
  font-size: 0.82rem;
  font-weight: 950;
}

.analysis-panel .panel-row strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 950;
}

.analysis-panel .panel-row p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
}

.timeline-panel ol li {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 14px;
}

.timeline-panel ol li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.timeline-panel ol span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--energy);
  color: #fff;
  font-weight: 950;
}

.timeline-panel ol strong,
.timeline-panel ol em {
  display: block;
}

.timeline-panel ol strong {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 950;
}

.timeline-panel ol em {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-weight: 650;
}

.polished-home-slider .conversion-slider-controls {
  right: clamp(20px, 4vw, 42px);
  bottom: clamp(18px, 3vw, 30px);
}

@media (max-width: 980px) {
  .polished-home-slider .conversion-slide-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 46px;
  }

  .hero-insight-panel {
    max-width: 640px;
  }
}

@media (max-width: 720px) {
  .polished-home-slider .conversion-slider-shell,
  .polished-home-slider .slide-viewport,
  .polished-home-slider .slide-track,
  .polished-home-slider .conversion-slide {
    min-height: 0;
  }

  .polished-home-slider .conversion-slide::after {
    background:
      linear-gradient(90deg, rgba(6, 15, 46, 0.96), rgba(8, 43, 150, 0.76)),
      linear-gradient(180deg, rgba(6, 15, 46, 0.22), rgba(6, 15, 46, 0.9));
  }

  .polished-home-slider .conversion-slide-inner {
    width: min(100% - 32px, var(--max));
    gap: 26px;
    padding: 38px 0 92px;
  }

  .polished-home-slider .conversion-copy h1,
  .polished-home-slider .conversion-copy h2 {
    font-size: clamp(2.35rem, 13vw, 3.6rem);
  }

  .hero-insight-panel {
    padding: 22px;
  }

  .polished-home-slider .conversion-slider-controls {
    right: 16px;
    bottom: 16px;
  }
}
/* 20260807 return to s1/s2/s3 home slides */
.image-only-home-slider {
  padding: 0;
  background: #fff;
}

.image-only-home-slider > .container,
.image-only-home-slider .image-slider-shell,
.image-only-home-slider .slide-viewport,
.image-only-home-slider .slide-track {
  width: 100%;
  max-width: none;
  margin: 0;
}

.image-only-home-slider .image-slider-shell {
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.image-only-home-slider .image-hero-slide {
  display: block;
  min-height: 0;
  aspect-ratio: 1600 / 582;
  background: #fff;
  overflow: hidden;
}

.image-only-home-slider .image-hero-slide::after {
  display: none;
}

.image-only-home-slider .image-hero-slide img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.image-only-home-slider .image-slider-controls {
  right: clamp(18px, 4vw, 34px);
  bottom: clamp(18px, 4vw, 34px);
}

@media (max-width: 760px) {
  .image-only-home-slider .image-hero-slide {
    aspect-ratio: 1600 / 582;
  }

  .image-only-home-slider .image-slider-controls {
    right: 14px;
    bottom: 14px;
  }
}
/* 20260807 home and how page slide split */
.home-photo-slider .home-photo-slide {
  aspect-ratio: 1600 / 650;
  min-height: clamp(320px, 42vw, 650px);
}

.home-photo-slider .home-photo-slide img {
  object-fit: cover;
  object-position: center;
}

.how-image-slider {
  padding: clamp(20px, 3vw, 34px) 0 clamp(8px, 2vw, 18px);
  background: linear-gradient(180deg, #f4f7ff 0%, #fff 100%);
}

.how-image-slider > .container {
  width: min(100% - 32px, 1180px);
  max-width: 1180px;
  margin: 0 auto;
}

.how-image-slider .image-slider-shell {
  overflow: hidden;
  border: 1px solid rgba(8, 43, 150, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(8, 43, 150, 0.12);
}

.how-image-slider .how-info-slide {
  aspect-ratio: 1600 / 582;
  min-height: 0;
}

.how-image-slider .how-info-slide img {
  object-fit: cover;
  object-position: center;
}

.how-image-slider .image-slider-controls {
  right: 18px;
  bottom: 18px;
}

@media (max-width: 760px) {
  .home-photo-slider .home-photo-slide {
    aspect-ratio: 1600 / 728;
    min-height: 0;
  }

  .how-image-slider {
    padding-top: 16px;
  }

  .how-image-slider > .container {
    width: min(100% - 20px, 1180px);
  }

  .how-image-slider .image-slider-shell {
    border-radius: 6px;
  }

  .how-image-slider .image-slider-controls {
    right: 12px;
    bottom: 12px;
  }
}
/* 20260807 how page slide replaces hero */
.how-page .how-image-slider:first-child,
.how-page main > .how-image-slider:first-child {
  padding-top: 0;
  background: #fff;
}

.how-page main > .how-image-slider:first-child > .container {
  width: 100%;
  max-width: none;
}

.how-page main > .how-image-slider:first-child .image-slider-shell {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.how-page main > .how-image-slider:first-child .how-info-slide {
  aspect-ratio: 1600 / 582;
}
/* 20260807 keep designed slide banners uncropped */
.image-only-home-slider .image-hero-slide,
.home-photo-slider .home-photo-slide,
.how-image-slider .how-info-slide {
  min-height: 0 !important;
  height: auto !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

.home-photo-slider .home-photo-slide {
  aspect-ratio: 1600 / 728 !important;
}

.how-image-slider .how-info-slide {
  aspect-ratio: 1600 / 582 !important;
}

.image-only-home-slider .image-hero-slide img,
.home-photo-slider .home-photo-slide img,
.how-image-slider .how-info-slide img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  display: block;
  object-fit: contain !important;
  object-position: center !important;
}

.image-only-home-slider .slide-track {
  align-items: stretch;
}

.image-only-home-slider .image-slider-controls {
  z-index: 5;
}

@media (max-width: 760px) {
  .image-only-home-slider .image-slider-controls {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }
}
/* 20260807 cleaner client platform without intro blocks */
.platform-page main > .section:first-child {
  padding-top: clamp(36px, 6vw, 76px);
  background: linear-gradient(180deg, #f5f7ff 0%, #fff 52%);
}

.platform-page .workspace-board > .section-heading {
  max-width: 820px;
}

.platform-page .workspace-board > .section-heading h2 {
  max-width: 720px;
}

.platform-page .submission-grid {
  align-items: stretch;
}

.platform-page .upload-only-panel,
.platform-page .history-card {
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(8, 43, 150, 0.08);
}

@media (max-width: 760px) {
  .platform-page main > .section:first-child {
    padding-top: 28px;
  }
}