:root {
  --orange: #ff6a00;
  --orange-strong: #e85f00;
  --orange-soft: rgba(255, 106, 0, 0.12);
  --green: #00c46a;
  --green-soft: rgba(0, 196, 106, 0.12);
  --blue: #0057ff;
  --blue-soft: rgba(0, 87, 255, 0.1);
  --accent: #06b6d4;

  --bg: #f7f8fb;
  --bg-alt: #edf1f6;
  --surface: #ffffff;
  --text: #121826;
  --text-primary: #121826;
  --text-secondary: #334155;
  --muted: #5a6778;
  --border: #d8dfeb;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --fs-eyebrow: 0.78rem;
  --fs-nav: 1rem;
  --fs-button: 0.98rem;
  --fs-body: clamp(15px, 1.05vw, 17px);
  --fs-body-sm: clamp(14px, 0.92vw, 15px);
  --fs-lead: clamp(16px, 1.3vw, 18px);
  --fs-card-title: clamp(20px, 2vw, 24px);
  --fs-section-title: clamp(32px, 4.2vw, 42px);
  --fs-page-title: clamp(36px, 4.8vw, 48px);
  --fs-hero-title: clamp(44px, 5.6vw, 62px);
  --fs-footer-label: 0.82rem;
  --fs-footer-body: 0.96rem;

  --shadow-sm: 0 12px 30px -24px rgba(18, 24, 38, 0.32);
  --shadow-md: 0 28px 60px -36px rgba(18, 24, 38, 0.35);
}

:root.light-theme {
  --bg: #0c1018;
  --bg-alt: #141b2a;
  --surface: #121927;
  --text: #eef2fb;
  --text-primary: #eef2fb;
  --text-secondary: #cbd5e1;
  --muted: #b4bed3;
  --border: #283348;
  --accent: #22d3ee;

  --orange-soft: rgba(255, 106, 0, 0.2);
  --green-soft: rgba(0, 196, 106, 0.2);
  --blue-soft: rgba(0, 87, 255, 0.24);

  --shadow-sm: 0 18px 35px -24px rgba(0, 0, 0, 0.68);
  --shadow-md: 0 28px 60px -30px rgba(0, 0, 0, 0.75);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.72;
  overflow-x: clip;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
}

.site-header.scrolled {
  background: color-mix(in srgb, var(--bg) 96%, transparent);
}

.nav-wrap {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.02rem;
}

.brand-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 1.35rem;
}

.main-nav a {
  color: var(--muted);
  font-size: var(--fs-nav);
  font-weight: 500;
  transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.7rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.bulb-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.bulb-icon.active {
  filter: drop-shadow(0 0 8px var(--blue-soft));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-button);
  font-weight: 600;
  border: 1px solid transparent;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.05);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 16px 30px -18px
    color-mix(in srgb, var(--orange) 70%, transparent);
}

.btn-primary:hover {
  background: var(--orange-strong);
}

.btn-secondary {
  background: transparent;
  color: var(--blue);
  border-color: color-mix(in srgb, var(--blue) 48%, var(--border));
}

.btn-secondary:hover {
  background: var(--blue-soft);
}

/* Type System */
.eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-content h1 {
  font-size: var(--fs-hero-title);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 12ch;
  margin-bottom: 14px;
}

.section-head h2,
.promo-banner-inner h2 {
  font-size: var(--fs-section-title);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.page-intro h1 {
  font-size: var(--fs-page-title);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.feature-card h2,
.feature-card h3,
.project-card h2,
.process-card h3 {
  font-size: var(--fs-card-title);
  font-weight: 650;
  line-height: 1.25;
}

.system-card h3,
.feature-card h2,
.feature-card h3,
.project-card h2,
.process-card h3 {
  margin-bottom: 0.45rem;
}

.icon-title {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  line-height: 1.2;
}

.icon-title-inline {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.6rem;
  white-space: nowrap;
}

.icon-title-inline > span:last-child {
  display: inline;
  white-space: nowrap;
}

.icon-title-inline .title-icon {
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
}

.title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  flex: 0 0 2.9rem;
  border-radius: 0.9rem;
  color: var(--orange);
  background: color-mix(in srgb, var(--orange-soft) 72%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--orange) 18%, var(--border));
}

.title-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.eyebrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
}

.eyebrow-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.65;
}

.contact-form input,
.contact-form textarea {
  font-size: var(--fs-body-sm);
  line-height: 1.6;
}

.footer-contact-title,
.site-footer-pro .footer-note,
.site-footer-pro .footer-bottom-bar p,
.site-footer-pro .footer-legal-links a {
  font-size: var(--fs-footer-label);
}

/* Section rhythm */
.section {
  padding: clamp(80px, 10vw, 120px) 0;
}

.page-intro {
  padding: clamp(96px, 11vw, 130px) 0 44px;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: clamp(20px, 4vw, 40px);
  padding: clamp(88px, 11vw, 126px) 0;
}

.section-head {
  margin-bottom: clamp(20px, 3vw, 34px);
}

.section-cta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Surfaces and cards */
.system-card,
.feature-card,
.project-card,
.wide-card,
.process-card,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.wide-card p,
.feature-card p,
.project-card p,
.process-card p {
  font-size: var(--fs-body);
  line-height: 1.7;
}

.system-card h3 + p,
.feature-card h2 + p,
.feature-card h3 + p,
.project-card h2 + p,
.process-card h3 + p {
  margin-top: 0.25rem;
}

.wide-card p + p,
.feature-card p + p,
.project-card p + p,
.process-card p + p,
.system-card p + p {
  margin-top: 0.8rem;
}

.feature-card li,
.project-card li {
  font-size: var(--fs-body-sm);
  line-height: 1.62;
}

.system-card p {
  font-size: var(--fs-body-sm);
  line-height: 1.65;
}

.promo-banner p {
  font-size: var(--fs-body-sm);
  line-height: 1.65;
}

.result-note {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid color-mix(in srgb, var(--border) 82%, transparent);
}

.result-note strong {
  color: var(--text);
}

.system-card,
.process-card {
  padding: clamp(18px, 2.5vw, 24px);
}

.feature-card,
.project-card,
.wide-card {
  padding: clamp(22px, 3vw, 30px);
}

.system-card:hover,
.feature-card:hover,
.project-card:hover,
.wide-card:hover,
.process-card:hover,
.contact-form:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--blue) 32%, var(--border));
  box-shadow: var(--shadow-md);
}

.card-grid {
  display: grid;
  gap: clamp(16px, 2.4vw, 24px);
}

.card-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-strip {
  background: linear-gradient(
    155deg,
    color-mix(in srgb, var(--blue-soft) 55%, var(--surface)) 0%,
    var(--surface) 64%
  );
  border: 1px solid color-mix(in srgb, var(--blue) 20%, var(--border));
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: clamp(22px, 3vw, 34px);
}

.trust-strip-header {
  margin-bottom: 16px;
}

.trust-strip-header h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.2;
}

.trust-logo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.client-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 10px 14px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.client-logo-pill:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--blue) 42%, var(--border));
  box-shadow: var(--shadow-sm);
}

.trust-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.trust-outcome-card {
  border: 1px solid color-mix(in srgb, var(--border) 84%, transparent);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border-radius: 12px;
  padding: 14px 16px;
}

.trust-metric {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--blue);
}

.trust-label {
  margin-top: 6px;
  font-size: var(--fs-body-sm);
  color: var(--muted);
  line-height: 1.6;
}

.trust-quote {
  margin-top: 16px;
  border-left: 4px solid var(--orange);
  background: color-mix(in srgb, var(--orange-soft) 48%, var(--surface));
  border-radius: 10px;
  padding: 14px 16px;
  font-size: var(--fs-body-sm);
  line-height: 1.7;
  color: var(--text);
}

.trust-quote footer {
  margin-top: 9px;
  font-size: 0.88rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--text) 82%, var(--muted));
}

.hero-system-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.system-card:nth-child(3) {
  grid-column: span 2;
}

.feature-card ul,
.project-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.feature-card li,
.project-card li {
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}

.feature-card li::before,
.project-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
}

.project-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.project-card a:hover {
  border-color: var(--blue);
}

.projects-case-studies {
  background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--blue-soft) 40%, transparent) 100%);
  border-radius: 20px;
  padding-left: clamp(18px, 3vw, 30px);
  padding-right: clamp(18px, 3vw, 30px);
}

.case-study-grid {
  display: grid;
  gap: clamp(18px, 2.6vw, 26px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-study-card {
  background: linear-gradient(150deg, color-mix(in srgb, var(--surface) 96%, transparent) 0%, color-mix(in srgb, var(--blue-soft) 24%, var(--surface)) 100%);
  border: 1px solid color-mix(in srgb, var(--blue) 24%, var(--border));
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: clamp(18px, 2.4vw, 24px);
  display: grid;
  gap: 14px;
  min-width: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--orange) 42%, var(--border));
  box-shadow: var(--shadow-md);
}

.case-study-head {
  display: grid;
  gap: 6px;
}

.case-study-head h3 {
  margin: 0;
}

.case-study-type {
  font-size: 0.84rem;
  color: color-mix(in srgb, var(--blue) 66%, var(--muted));
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.case-study-body {
  display: grid;
  gap: 12px;
}

.case-block {
  display: grid;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.case-block h4 {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--text) 72%, var(--muted));
}

.case-block p {
  margin: 0;
  font-size: var(--fs-body-sm);
  line-height: 1.65;
  color: var(--muted);
}

.case-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.case-block li {
  position: relative;
  padding-left: 14px;
  font-size: var(--fs-body-sm);
  line-height: 1.55;
  color: var(--text);
}

.case-block li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.case-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-kpis span {
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--blue) 72%, var(--text));
  border: 1px solid color-mix(in srgb, var(--blue) 28%, var(--border));
  background: color-mix(in srgb, var(--blue-soft) 50%, var(--surface));
  border-radius: 999px;
  padding: 6px 10px;
}

.case-study-footer {
  display: grid;
  gap: 10px;
  border-top: 1px solid color-mix(in srgb, var(--border) 86%, transparent);
  padding-top: 12px;
}

.case-study-footer p {
  margin: 0;
  font-size: var(--fs-body-sm);
  color: var(--muted);
  line-height: 1.62;
}

.case-study-footer strong {
  color: var(--text);
}

.case-study-footer a {
  display: inline-flex;
  width: fit-content;
  color: var(--blue);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.case-study-footer a:hover {
  border-color: var(--blue);
  transform: translateX(2px);
}

/* Distinct section identities */
.hero-section {
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    700px 360px at 80% 25%,
    var(--blue-soft),
    transparent 70%
  );
  z-index: -1;
}

.package-section {
  background: linear-gradient(180deg, transparent 0%, var(--orange-soft) 100%);
  border-radius: 20px;
  padding-left: clamp(18px, 3vw, 30px);
  padding-right: clamp(18px, 3vw, 30px);
}

.package-grid .feature-card:first-child {
  grid-column: span 2;
  border-color: color-mix(in srgb, var(--orange) 40%, var(--border));
}

.trust-section {
  background: linear-gradient(180deg, transparent 0%, var(--green-soft) 100%);
  border-radius: 20px;
  padding-left: clamp(18px, 3vw, 30px);
  padding-right: clamp(18px, 3vw, 30px);
}

.benefit-grid .benefit-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: clamp(190px, 20vw, 230px);
  background: var(--surface);
  border-radius: 0;
  border-color: color-mix(in srgb, var(--green) 35%, var(--border));
  box-shadow: none;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.benefit-grid {
  gap: 0;
  overflow: hidden;
  border-radius: 14px;
}

.benefit-grid .benefit-card:hover {
  background: color-mix(in srgb, var(--green-soft) 70%, var(--surface));
  transform: none;
  box-shadow: none;
}

@media (min-width: 1081px) {
  .benefit-grid .benefit-card:first-child {
    border-top-left-radius: 14px;
  }

  .benefit-grid .benefit-card:nth-child(3) {
    border-top-right-radius: 14px;
  }

  .benefit-grid .benefit-card:nth-child(4) {
    border-bottom-left-radius: 14px;
  }

  .benefit-grid .benefit-card:last-child {
    border-bottom-right-radius: 14px;
  }
}

.benefit-grid .benefit-card h3 {
  color: color-mix(in srgb, var(--green) 72%, var(--text));
}

.comparison-section {
  position: relative;
}

.comparison-grid .feature-card:nth-child(2) {
  border-color: color-mix(in srgb, var(--orange) 50%, var(--border));
  background: color-mix(in srgb, var(--orange-soft) 35%, var(--surface));
}

.tech-section {
  background: linear-gradient(180deg, transparent 0%, var(--blue-soft) 100%);
  border-radius: 20px;
  padding-left: clamp(18px, 3vw, 30px);
  padding-right: clamp(18px, 3vw, 30px);
}

.process-card {
  border-top: 3px solid color-mix(in srgb, var(--blue) 70%, var(--border));
}

.process-card span {
  color: var(--blue);
  font-weight: 700;
}

.trust-soft-section {
  background: linear-gradient(180deg, transparent 0%, var(--green-soft) 95%);
  border-radius: 20px;
  padding-left: clamp(18px, 3vw, 30px);
  padding-right: clamp(18px, 3vw, 30px);
}

.pricing-section {
  background: linear-gradient(180deg, transparent 0%, var(--orange-soft) 92%);
  border-radius: 20px;
  padding-left: clamp(18px, 3vw, 30px);
  padding-right: clamp(18px, 3vw, 30px);
  overflow-x: hidden;
}

.pricing-section .card-grid-3 .feature-card:last-child {
  border-color: color-mix(in srgb, var(--orange) 52%, var(--border));
  box-shadow: 0 28px 52px -34px
    color-mix(in srgb, var(--orange) 35%, transparent);
}

.pricing-section .card-grid-3 {
  position: relative;
  overflow: hidden;
}

.pricing-section .feature-card {
  position: relative;
  transition: none;
}

.pricing-section .delivery-highlight {
  margin-top: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid color-mix(in srgb, var(--orange) 34%, var(--border));
  background: color-mix(in srgb, var(--orange-soft) 65%, var(--surface));
  border-radius: 10px;
  color: var(--text);
  font-size: var(--fs-body-sm);
  line-height: 1.55;
}

.pricing-section .delivery-highlight strong {
  color: color-mix(in srgb, var(--orange) 70%, var(--text));
}

.pricing-section .delivery-meta {
  display: inline-block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.pricing-section .delivery-context-note {
  margin-top: 1.15rem;
  text-align: center;
  color: var(--muted);
  font-size: var(--fs-body-sm);
}

.final-cta-section .wide-card {
  background: color-mix(in srgb, var(--blue-soft) 35%, var(--surface));
}

.form-section {
  background: color-mix(in srgb, var(--blue-soft) 20%, var(--surface));
  border-radius: 20px;
  padding-left: clamp(18px, 3vw, 30px);
  padding-right: clamp(18px, 3vw, 30px);
}

/* Banner strips */
.promo-banner {
  width: 100%;
  padding: clamp(56px, 8vw, 92px) 0;
}

.banner-orange {
  background: linear-gradient(120deg, #ff7f2a 0%, #ff6a00 42%, #d95a00 100%);
}

.banner-blue {
  background: linear-gradient(120deg, #1f6dff 0%, #0057ff 55%, #003eb8 100%);
}

.promo-banner-alt {
  background: linear-gradient(120deg, #0058ff 0%, #0048d4 100%);
}

.promo-banner-inner {
  text-align: center;
  max-width: 920px;
}

.promo-banner-inner h2 {
  color: #ffffff;
}

.promo-banner-inner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 72ch;
  margin: 0 auto;
}

.promo-btn {
  margin-top: 22px;
  background: #ffffff;
  color: #101828;
}

.promo-btn:hover {
  background: #f3f5fb;
}

/* Form */
.contact-form {
  display: grid;
  gap: 12px;
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 30px);
}

.contact-form label {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  padding: 14px 16px;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
}

.form-status {
  color: var(--muted);
  min-height: 1.5em;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}

.footer-grid {
  padding: 2.5rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-grid p,
.footer-links a {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a:hover {
  color: var(--text);
}

.site-footer.site-footer-pro {
  margin-top: 0;
  background: #0a0f1c;
  border-top: 1px solid #1a2742;
  padding: clamp(56px, 8vw, 90px) 0 24px;
}

.site-footer-pro .footer-top-contact {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.site-footer-pro .footer-contact-block {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #2a3858;
  background: #131d33;
  color: #eef3ff;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.site-footer-pro .footer-contact-block:hover {
  transform: translateY(-4px);
  border-color: #3d4f79;
  background: #162241;
}

.site-footer-pro .footer-contact-title {
  color: #95a5ca;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer-pro .footer-contact-value {
  font-size: var(--fs-footer-body);
  color: #f8fbff;
}

.site-footer-pro .footer-brand-panel {
  border-bottom: 1px solid #223355;
  padding-bottom: 22px;
  margin-bottom: 24px;
}

.site-footer-pro .footer-brand-panel h3 {
  color: #ffffff;
  font-size: clamp(28px, 3.6vw, 36px);
  margin-bottom: 6px;
}

.site-footer-pro .footer-brand-panel p {
  font-size: var(--fs-body-sm);
  color: #c6d4f5;
}

.site-footer-pro .footer-brand-panel .footer-subtext {
  display: block;
  margin-top: 7px;
  font-size: var(--fs-footer-body);
  line-height: 1.55;
  color: rgba(198, 212, 245, 0.78);
}

.site-footer-pro .footer-brand-panel .business-identity {
  color: rgba(224, 234, 255, 0.88);
}

.site-footer-pro .footer-brand-subline {
  margin-top: 5px;
  font-size: var(--fs-footer-body);
  color: #98abd3;
}

.business-identity {
  line-height: 1.65;
}

.trust-note {
  margin-top: 14px;
  font-size: var(--fs-body-sm);
  line-height: 1.65;
  color: var(--muted);
}

.site-footer-pro .footer-mega-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid #223355;
}

.site-footer-pro .footer-column h4 {
  color: #ffffff;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.site-footer-pro .footer-column ul {
  list-style: none;
  display: grid;
  gap: 6px;
}

.site-footer-pro .footer-column a {
  color: #bed0f5;
  font-size: var(--fs-footer-body);
  border-bottom: 1px solid transparent;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.site-footer-pro .footer-column a:hover {
  color: #ffffff;
  border-color: color-mix(in srgb, var(--orange) 55%, transparent);
}

.site-footer-pro .footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
}

.site-footer-pro .footer-bottom-bar p {
  color: #9eb0d7;
}

.site-footer-pro .footer-legal-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer-pro .footer-legal-links a {
  color: #bdd0f9;
}

.site-footer-pro .footer-note {
  margin-top: 8px;
  color: #7f91bc;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.65, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.65, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1080px) {
  .section-grid {
    grid-template-columns: 1fr;
  }

  .case-study-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-grid .feature-card:first-child {
    grid-column: auto;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .site-footer-pro .footer-top-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer-pro .footer-mega-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-logo-row,
  .trust-outcomes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(1240px, calc(100% - 1.35rem));
  }

  .site-header,
  .site-header.scrolled {
    backdrop-filter: none;
    background: color-mix(in srgb, var(--bg) 96%, transparent);
  }

  .nav-wrap {
    grid-template-columns: 1fr auto auto auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn-primary {
    display: inline-flex;
    position: fixed;
    left: 50%;
    right: auto;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
    width: min(calc(100vw - 24px), 360px);
    justify-content: center;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 18px 34px -18px rgba(0, 0, 0, 0.45);
    transform: translateX(-50%);
    z-index: 1200;
  }

  .header-actions .btn-primary:hover,
  .header-actions .btn-primary:focus-visible,
  .header-actions .btn-primary:active {
    transform: translateX(-50%);
  }

  body {
    padding-bottom: 88px;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    display: grid;
    gap: 0;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .main-nav a {
    padding: 13px 16px;
    border-top: 1px solid var(--border);
  }

  .main-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .card-grid-2,
  .card-grid-3,
  .hero-system-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .case-study-grid {
    grid-template-columns: 1fr;
  }

  .system-card:nth-child(3) {
    grid-column: auto;
  }

  .section {
    padding: 82px 0;
  }

  .system-flow {
    overflow-x: auto;
    padding: 16px;
    gap: 4px;
  }

  .flow-item {
    min-width: auto;
    flex-shrink: 0;
    padding: 10px 12px;
    font-size: 11px;
  }

  .flow-arrow {
    margin: 0 4px;
    font-size: 14px;
  }
}

.premium-banner {
    width: 100%;
    padding: clamp(56px, 10vw, 120px) 0;
    border-radius: 24px;
    margin: clamp(32px, 6vw, 64px) 0;
    overflow: hidden;
    position: relative;
}

/* ─────────────────────── BANNER 1: System Flow ─────────────────────── */
.banner-system {
    background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--orange) 5%, var(--surface)) 0%,
      color-mix(in srgb, var(--orange) 2%, var(--surface)) 100%
    );
    border: 1px solid color-mix(in srgb, var(--orange) 15%, transparent);
    box-shadow: 0 20px 60px color-mix(in srgb, var(--orange) 8%, transparent);
}

.premium-banner-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(32px, 6vw, 64px);
    align-items: center;
    width: 100%;
}

.banner-text-block {
    display: grid;
    gap: clamp(16px, 3vw, 24px);
    min-width: 0;
    width: 100%;
}

.banner-text-block .eyebrow {
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
}

.banner-text-block h2 {
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.2;
    color: var(--text-primary);
    font-weight: 800;
}

.pain-statement {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--muted);
    line-height: 1.6;
    max-width: 72ch;
}

.system-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    padding: 24px;
    background: color-mix(in srgb, var(--orange) 5%, var(--surface));
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--orange) 12%, transparent);
    margin: 20px 0;
    flex-direction: row;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    text-align: center;
    transition: all 0.3s ease;
    min-width: fit-content;
}

.flow-item.highlight {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
    border-color: var(--orange);
    color: #111827;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--orange) 12%, transparent);
}

.flow-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px color-mix(in srgb, var(--orange) 15%, transparent);
}

.flow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--orange);
}

.flow-icon svg {
  width: 24px;
  height: 24px;
}

.flow-label {
  color: #334155;
    font-size: 11px;
}

.flow-arrow {
    color: var(--muted);
    font-size: 16px;
    font-weight: 700;
    margin: 0 6px;
}

.system-explanation {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    background: color-mix(in srgb, var(--blue) 3%, var(--surface));
    padding: 16px;
    border-left: 4px solid var(--blue);
    border-radius: 8px;
    margin: 16px 0;
}

.banner-text-block .btn {
    width: fit-content;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px color-mix(in srgb, var(--accent) 20%, transparent);
}

.banner-text-block .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 28%, transparent);
}

.trust-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex: 0 0 14px;
}

.trust-icon svg {
  width: 14px;
  height: 14px;
}

.banner-visual-block {
    position: relative;
    perspective: 1000px;
    width: 100%;
    min-width: 0;
}

.dashboard-mockup {
    background: linear-gradient(
      135deg,
      var(--surface) 0%,
      color-mix(in srgb, var(--blue) 3%, var(--surface)) 100%
    );
    border: 1.5px solid color-mix(in srgb, var(--orange) 20%, var(--border));
    border-radius: 18px;
    padding: 24px;
    box-shadow:
      0 20px 40px color-mix(in srgb, var(--text-primary) 8%, transparent),
      inset 0 1px 2px rgba(255, 255, 255, 0.08);
    animation: float-subtle 6s ease-in-out infinite;
    background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--orange) 2%, var(--surface)) 0%,
      color-mix(in srgb, var(--blue) 2%, var(--surface)) 100%
    );
    min-width: 0;
    width: 100%;
}

@keyframes float-subtle {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-8px);
    }
}

.dashboard-header {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.dashboard-stat {
    position: relative;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: color-mix(in srgb, var(--orange) 6%, var(--surface));
    border-radius: 12px;
    border: 1.5px solid color-mix(in srgb, var(--orange) 20%, transparent);
}

.stat-number {
    font-size: 40px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    display: block;
    flex: 1;
    font-weight: 500;
}

.stat-tag {
    background: linear-gradient(135deg, var(--orange) 0%, #ff6a00 100%);
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--orange) 30%, transparent);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--orange) 20%, transparent);
    letter-spacing: 0.5px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.mini-card {
    padding: 12px 8px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    text-align: center;
    border: 1.5px solid;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.mini-card.captured {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-color: #4ade80;
    color: #166534;
    box-shadow: 0 4px 12px color-mix(in srgb, #4ade80 15%, transparent);
}

.mini-card.replied {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #60a5fa;
    color: #1e40af;
    box-shadow: 0 4px 12px color-mix(in srgb, #60a5fa 15%, transparent);
}

.mini-card.active {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #fbbf24;
    color: #92400e;
    box-shadow: 0 4px 12px color-mix(in srgb, #fbbf24 15%, transparent);
}

.mini-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px color-mix(in srgb, currentColor 15%, transparent);
}

.dashboard-graph {
    height: 56px;
    margin-top: 16px;
    padding: 8px 6px 4px;
    border-top: 2px solid color-mix(in srgb, var(--orange) 20%, var(--border));
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--orange) 3%, var(--surface)) 0%,
      transparent 100%
    );
    background-image:
      repeating-linear-gradient(
        90deg,
        color-mix(in srgb, var(--orange) 8%, transparent) 0px,
        color-mix(in srgb, var(--orange) 8%, transparent) 1px,
        transparent 1px,
        transparent 24px
      ),
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--orange) 3%, var(--surface)) 0%,
        transparent 100%
      );
    border-radius: 10px;
    overflow: hidden;
}

.dashboard-graph svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(
      0 2px 6px color-mix(in srgb, var(--orange) 20%, transparent)
    );
}

.dashboard-sparkline {
    display: block;
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 0 auto;
}

@media (max-width: 780px) {
  .dashboard-sparkline {
    width: 100%;
    min-width: 0;
  }
}

/* ─────────────────────── BANNER 2: Problem/Solution ─────────────────── */
.banner-problem {
    background: linear-gradient(
      135deg,
      color-mix(in srgb, #0057ff 5%, var(--surface)) 0%,
      color-mix(in srgb, #0057ff 2%, var(--surface)) 100%
    );
    border: 1px solid color-mix(in srgb, #0057ff 15%, transparent);
    box-shadow: 0 20px 60px color-mix(in srgb, #0057ff 8%, transparent);
}

.problem-hero {
    text-align: center;
    margin-bottom: 48px;
}

.problem-hero h2 {
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.2;
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 16px;
}

.problem-hero p {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--muted);
    line-height: 1.7;
    max-width: 72ch;
    margin: 0 auto;
}

.problem-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
}

.comparison-block {
    padding: 28px;
    border-radius: 16px;
    border: 2px solid var(--border);
    background: var(--surface);
    transition: all 0.4s ease;
    display: grid;
    gap: 16px;
    min-width: 0;
}

.comparison-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px
      color-mix(in srgb, var(--text-primary) 8%, transparent);
}

.problem-block {
    border-color: #ef4444;
    background: linear-gradient(
      135deg,
      color-mix(in srgb, #fecaca 8%, var(--surface)) 0%,
      var(--surface) 100%
    );
}

.solution-block {
    border-color: #4ade80;
    background: linear-gradient(
      135deg,
      color-mix(in srgb, #bbf7d0 8%, var(--surface)) 0%,
      var(--surface) 100%
    );
}

.comparison-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.problem-block h3 {
    color: #7f1d1d;
}

.solution-block h3 {
    color: #166534;
}

.issue-tags,
.solution-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tag {
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tag-problem {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border-color: #fca5a5;
}

.tag-problem:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px color-mix(in srgb, #dc2626 12%, transparent);
}

.tag-solution {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #166534;
    border-color: #86efac;
}

.tag-solution:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px color-mix(in srgb, #16a34a 12%, transparent);
}

.comparison-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin: 8px 0 0;
    font-style: italic;
}

.comparison-arrow {
    font-size: 28px;
    color: var(--muted);
    animation: pulse-arrow 2s ease-in-out infinite;
}

@keyframes pulse-arrow {
    0%,
    100% {
      opacity: 0.5;
      transform: scaleX(1);
    }
    50% {
      opacity: 1;
      transform: scaleX(1.1);
    }
}

/* ─────────────────────── BANNER 3: Timeline ─────────────────────────── */
.banner-timeline {
    background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--accent) 5%, var(--surface)) 0%,
      color-mix(in srgb, var(--accent) 2%, var(--surface)) 100%
    );
    border: 1px solid color-mix(in srgb, var(--accent) 15%, transparent);
    box-shadow: 0 20px 60px color-mix(in srgb, var(--accent) 8%, transparent);
}

.timeline-header {
    text-align: center;
    margin-bottom: 48px;
}

.timeline-header h2 {
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.2;
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 12px;
}

.timeline-header p {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--muted);
    line-height: 1.6;
    max-width: 72ch;
    margin: 0 auto;
}

.timeline-visual {
    margin-bottom: 40px;
}

.timeline-track {
    display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr) 56px minmax(0, 1fr);
  gap: 0;
    position: relative;
  align-items: stretch;
}

.timeline-step {
    position: relative;
    padding: 28px 24px;
    border-radius: 14px;
    background: var(--surface);
    border: 2px solid var(--border);
    transition: all 0.4s ease;
    display: grid;
    gap: 12px;
    min-width: 0;
}

.timeline-step.completed {
    border-color: var(--accent);
    background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--accent) 8%, var(--surface)) 0%,
      var(--surface) 100%
    );
}

.timeline-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px color-mix(in srgb, var(--accent) 12%, transparent);
}

.step-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(
      135deg,
      var(--accent) 0%,
      color-mix(in srgb, var(--accent) 80%, #000)
    );
    color: white;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.step-content p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.step-tag {
    display: inline-block;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    color: #0369a1;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #06b6d4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: fit-content;
}

.timeline-connector {
    position: static;
    align-self: center;
    justify-self: stretch;
    width: 100%;
    height: 2px;
    background: linear-gradient(
      90deg,
      color-mix(in srgb, var(--accent) 90%, transparent) 0%,
      color-mix(in srgb, var(--accent) 35%, transparent) 100%
    );
    border-radius: 999px;
}

.timeline-cta {
    text-align: center;
    display: grid;
    gap: 12px;
    place-items: center;
}

.timeline-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

/* ─────────────────────── BANNER 4: Proof ─────────────────────────── */
.banner-proof {
    background: linear-gradient(
      135deg,
      color-mix(in srgb, #8b5cf6 5%, var(--surface)) 0%,
      color-mix(in srgb, #8b5cf6 2%, var(--surface)) 100%
    );
    border: 1px solid color-mix(in srgb, #8b5cf6 15%, transparent);
    box-shadow: 0 20px 60px color-mix(in srgb, #8b5cf6 8%, transparent);
}

.proof-header {
    text-align: center;
    margin-bottom: 40px;
}

.proof-header h2 {
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.2;
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 12px;
}

.proof-header p {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--muted);
    line-height: 1.6;
    max-width: 72ch;
    margin: 0 auto;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.proof-block {
    padding: 24px;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    display: grid;
    gap: 12px;
    place-items: center;
    min-width: 0;
}

.proof-block:hover {
    border-color: #8b5cf6;
    transform: translateY(-6px);
    box-shadow: 0 12px 32px color-mix(in srgb, #8b5cf6 15%, transparent);
}

.proof-stat {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 800;
    color: #8b5cf6;
    line-height: 1;
}

.proof-label {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
}

.proof-quote {
    background: var(--surface);
    border: 2px solid var(--border);
    border-left: 6px solid #8b5cf6;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    margin: 32px 0;
    transition: all 0.4s ease;
}

.proof-quote:hover {
    box-shadow: 0 12px 32px color-mix(in srgb, #8b5cf6 12%, transparent);
    transform: translateY(-4px);
}

.proof-quote p {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0 0 16px;
    font-style: italic;
    font-weight: 500;
}

.proof-quote footer {
    font-size: 13px;
    color: var(--muted);
    font-style: normal;
    font-weight: 600;
}

.proof-cta {
    text-align: center;
    margin-top: 32px;
}

/* ─────────────────────── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1080px) {
    .premium-banner-content {
      grid-template-columns: 1fr;
    }

    .banner-visual-block {
      order: -1;
    }

    .problem-comparison {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .comparison-arrow {
      display: grid;
      place-items: center;
      justify-self: center;
      width: 50px;
      height: 50px;
      line-height: 1;
      border-radius: 999px;
      /* border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent); */
      /* background: linear-gradient(135deg, color-mix(in srgb, var(--surface) 86%, transparent) 0%, color-mix(in srgb, var(--accent) 8%, var(--surface)) 100%); */
      color: color-mix(in srgb, var(--accent) 55%, #ffffff);
      /* box-shadow: 0 8px 18px color-mix(in srgb, var(--accent) 18%, transparent); */
      transform: rotate(90deg) translateZ(0);
      margin: 0;
      animation: pulse-arrow-mobile 1.8s ease-in-out infinite;
    }

    @keyframes pulse-arrow-mobile {
      0%,
      100% {
        transform: rotate(90deg) scale(1);
        opacity: 0.72;
      }
      50% {
        transform: rotate(90deg) scale(1.08);
        opacity: 1;
      }
    }

    .timeline-track {
      grid-template-columns: 1fr;
      position: relative;
      gap: 14px;
    }

    .timeline-connector {
      display: none;
    }

    .proof-grid {
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 16px;
    }

    .page-intro {
      padding: 100px 0 40px;
    }

    .promo-banner {
      padding: 62px 0;
    }

    .site-footer-pro .footer-top-contact,
    .site-footer-pro .footer-mega-grid {
      grid-template-columns: 1fr;
    }

    .site-footer-pro .footer-bottom-bar {
      flex-direction: column;
      align-items: flex-start;
    }
}

