:root {
  --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";

  --color-bg: #f6f7fb;
  --color-surface: #ffffff;
  --color-surface-2: #f3f5fb;
  --color-text: #0b1020;
  --color-muted: rgba(11, 16, 32, 0.72);
  --color-border: rgba(11, 16, 32, 0.10);
  --color-transparent: transparent;
  --color-primary: #f59e0b;
  --color-primary-2: #fbbf24;
  --color-warning: #f59e0b;
  --color-success: #22c55e;
  --color-on-primary: #ffffff;
  --color-on-primary-muted: rgba(255, 255, 255, 0.88);

  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 30px;

  --shadow-sm: 0 10px 20px rgba(11, 16, 32, 0.08);
  --shadow-md: 0 18px 42px rgba(11, 16, 32, 0.10);
  --shadow-lg: 0 30px 70px rgba(11, 16, 32, 0.12);
  --shadow-glass-inset: inset 0 1px 0 rgba(255, 255, 255, 0.62), inset 0 -1px 0 rgba(11, 16, 32, 0.035);

  --container-max: 1160px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 56px;
  --space-10: 72px;

  --type-base: 16px;
  --type-sm: 14px;
  --type-lg: 18px;
  --type-xl: 44px;
  --type-h2: 30px;
  --type-h3: 18px;

  --line-base: 1.6;
  --line-tight: 1.15;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);

  --hero-shape-a: rgba(245, 158, 11, 0.16);
  --hero-shape-b: rgba(34, 197, 94, 0.10);
  --hero-shape-c: rgba(245, 158, 11, 0.08);

  --tint-hero-a: rgba(245, 158, 11, 0.08);
  --tint-hero-b: rgba(34, 197, 94, 0.06);
  --tint-audience-a: rgba(245, 158, 11, 0.05);
  --tint-services-a: rgba(34, 197, 94, 0.05);
  --tint-steps-a: rgba(245, 158, 11, 0.05);
  --tint-reality-a: rgba(245, 158, 11, 0.06);
  --tint-lead-a: rgba(245, 158, 11, 0.05);
  --tint-blog-a: rgba(34, 197, 94, 0.04);
  --tint-faq-a: rgba(245, 158, 11, 0.04);
  --tint-referral-a: rgba(245, 158, 11, 0.05);
  --tint-footer-a: rgba(11, 16, 32, 0.03);

  --section-bg-top: rgba(245, 158, 11, 0.035);
  --section-bg-bottom: rgba(34, 197, 94, 0.025);

  --bg-app: var(--color-bg);

  --surface-header-bg: rgba(255, 255, 255, 0.70);
  --shadow-brand-ring: 0 0 0 6px rgba(245, 158, 11, 0.12);

  --surface-button-secondary: rgba(11, 16, 32, 0.04);
  --surface-button-secondary-hover: rgba(11, 16, 32, 0.06);
  --border-button-secondary-hover: rgba(11, 16, 32, 0.14);
  --surface-chip: rgba(11, 16, 32, 0.04);
  --surface-chip-hover: rgba(11, 16, 32, 0.06);
  --surface-chip-active: rgba(245, 158, 11, 0.12);
  --border-chip-active: rgba(245, 158, 11, 0.26);

  --surface-card-bg: #ffffff;
  --surface-glass-bg: rgba(255, 255, 255, 0.72);
  --surface-glass-bg-2: rgba(255, 255, 255, 0.56);
  --surface-glass-highlight: rgba(255, 255, 255, 0.78);
  --surface-glass-streak: rgba(255, 255, 255, 0.52);
  --surface-glass-noise: rgba(11, 16, 32, 0.02);
  --border-glass: rgba(11, 16, 32, 0.10);
  --border-hover: rgba(11, 16, 32, 0.16);
  --text-link: rgba(11, 16, 32, 0.90);
  --surface-media-bg: rgba(11, 16, 32, 0.04);

  --border-warning: rgba(245, 158, 11, 0.26);
  --surface-warning-glow: rgba(245, 158, 11, 0.14);
  --surface-warning-bg: #ffffff;

  --surface-input-bg: rgba(255, 255, 255, 0.72);
  --surface-input-bg-focus: rgba(255, 255, 255, 0.88);
  --border-focus: rgba(245, 158, 11, 0.42);
  --shadow-focus: 0 0 0 4px rgba(245, 158, 11, 0.12);

  --surface-faq-bg: rgba(255, 255, 255, 0.84);
  --surface-faq-open: rgba(245, 158, 11, 0.06);

  --border-referral: rgba(245, 158, 11, 0.24);
  --surface-referral-glow: rgba(245, 158, 11, 0.12);
  --surface-referral-bg: #ffffff;

  --surface-footer-bg: rgba(255, 255, 255, 0.72);
}

/* Base */
html,
body {
  height: 100%;
}

body {
  background: var(--bg-app);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--type-base);
  line-height: var(--line-base);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.l-page {
  min-height: 100%;
}

.l-main {
  display: block;
}

.l-page--home {
  min-height: 100%;
}

.c-nav {
  --bs-navbar-padding-y: 14px;
  --bs-navbar-color: var(--color-muted);
  --bs-navbar-hover-color: var(--color-text);
  --bs-navbar-active-color: var(--color-text);
  --bs-navbar-toggler-border-color: var(--color-border);
}

.container {
  max-width: var(--container-max);
}

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

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

/* Utilities */
.u-text-muted {
  color: var(--color-muted);
}

/* Icons */
.c-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  line-height: 1;
}

.c-icon--sm {
  width: 24px;
  height: 24px;
  font-size: 14px;
}

.c-icon--md {
  width: 32px;
  height: 32px;
  font-size: 18px;
}

.c-icon--lg {
  width: 44px;
  height: 44px;
  font-size: 22px;
}

/* Header / Nav */
.c-header {
  border-bottom: 1px solid var(--color-border);
  background: var(--surface-header-bg);
  backdrop-filter: blur(10px);
  transition: box-shadow 180ms var(--ease), background-color 180ms var(--ease);
}

.c-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.c-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.c-nav__brandMark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-success));
  box-shadow: var(--shadow-brand-ring);
}

.c-nav__brandText {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.c-nav__link {
  color: var(--color-muted);
  font-weight: 500;
  transition: color 160ms var(--ease);
}

.c-nav__link:hover {
  color: var(--color-text);
}

.c-nav__toggle {
  border: 1px solid var(--color-border);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-light .navbar-toggler-icon {
  filter: contrast(1.05) brightness(0.35);
}

.c-lang__toggle {
  padding-left: 14px;
  padding-right: 14px;
}

.c-lang__menu {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  padding: 8px;
}

.c-lang__item {
  border-radius: var(--radius-md);
  font-weight: 700;
  color: var(--color-text);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.c-lang__item:hover,
.c-lang__item:focus {
  background: var(--surface-button-secondary-hover);
  color: var(--color-text);
}

.c-lang__item.is-active {
  background: var(--surface-chip-active);
  border: 1px solid var(--border-chip-active);
}

/* Buttons */
.c-btn {
  border-radius: var(--radius-md);
  padding: 12px 16px;
  min-height: 44px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid var(--color-transparent);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background-color 180ms var(--ease),
    border-color 180ms var(--ease);
}

.c-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.c-btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
  color: var(--color-on-primary);
}

.c-btn--primary:hover {
  background: linear-gradient(135deg, var(--color-primary-2), var(--color-primary));
  color: var(--color-on-primary);
}

.c-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.c-btn--primary:active {
  filter: saturate(1.05) brightness(0.98);
}

.c-btn--secondary {
  background: var(--surface-button-secondary);
  border-color: var(--color-border);
  color: var(--color-text);
}

.c-btn--secondary:hover {
  background: var(--surface-button-secondary-hover);
  border-color: var(--border-button-secondary-hover);
  color: var(--color-text);
}

.c-btn--secondary:active {
  background: var(--surface-button-secondary-hover);
  border-color: var(--border-button-secondary-hover);
}

/* Sections */
.c-section {
  padding: 72px 0;
  background: #ffffff;
}

.c-section__head {
  max-width: 760px;
}

.c-section__title {
  font-size: var(--type-h2);
  line-height: var(--line-tight);
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.c-section__subhead {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: var(--type-lg);
}

/* Hero */
.c-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 70px;
  --section-bg-top: var(--tint-hero-a);
  --section-bg-bottom: var(--tint-audience-a);
}
.c-audience {
  --section-bg-top: var(--tint-audience-a);
  --section-bg-bottom: var(--tint-services-a);
}

.c-services {
  --section-bg-top: var(--tint-services-a);
  --section-bg-bottom: var(--tint-steps-a);
}

.c-steps {
  --section-bg-top: var(--tint-steps-a);
  --section-bg-bottom: var(--tint-reality-a);
}

.c-reality {
  --section-bg-top: var(--tint-reality-a);
  --section-bg-bottom: var(--tint-lead-a);
}

.c-lead {
  --section-bg-top: var(--tint-lead-a);
  --section-bg-bottom: var(--tint-blog-a);
}

.c-blog {
  --section-bg-top: var(--tint-blog-a);
  --section-bg-bottom: var(--tint-faq-a);
}

.c-faq {
  --section-bg-top: var(--tint-faq-a);
  --section-bg-bottom: var(--tint-referral-a);
}

.c-referral {
  --section-bg-top: var(--tint-referral-a);
  --section-bg-bottom: var(--tint-footer-a);
}

.c-hero::before {
  content: "";
  position: absolute;
  inset: -180px -120px auto auto;
  width: 540px;
  height: 540px;
  background:
    radial-gradient(320px 320px at 40% 35%, var(--hero-shape-a), var(--color-transparent) 60%),
    radial-gradient(260px 260px at 70% 55%, var(--hero-shape-b), var(--color-transparent) 60%),
    radial-gradient(260px 260px at 30% 70%, var(--hero-shape-c), var(--color-transparent) 60%);
  transform: rotate(18deg);
  border-radius: 52% 48% 62% 38% / 44% 58% 42% 56%;
  pointer-events: none;
  filter: blur(0.2px);
}

.c-hero__kicker {
  display: inline-flex;
  align-items: center;
}

.c-hero__title {
  margin: 18px 0 0;
  font-size: var(--type-xl);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.c-hero__subhead {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: var(--type-lg);
}

.c-hero__panel {
  position: relative;
}

.c-hero__status {
  color: var(--color-success);
}

/* Proof */
.c-proof__label {
  font-size: var(--type-sm);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.c-proof__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 14px;
  align-items: center;
  justify-content: flex-start;
}

.c-proof__logos--hero {
  justify-content: center;
  margin-top: 8px;
}

@media (min-width: 992px) {
  .c-proof__logos--hero {
    margin-top: 0;
  }
}

.c-proof__logo {
  height: 2rem;
  width: auto;
  opacity: 0.82;
}

.c-link {
  color: var(--text-link);
  text-decoration: none;
}

.c-link:hover {
  text-decoration: underline;
}

.c-blog__heroMedia img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

@media (min-width: 992px) {
  .c-blog__heroMedia img {
    height: 420px;
  }
}

/* Badges / Chips */
.c-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: var(--type-sm);
  font-weight: 600;
  border: 1px solid var(--color-transparent);
}

.c-badge--soft {
  background: var(--surface-button-secondary);
  border-color: var(--border-focus);
  color: var(--color-text);
}

.c-badge--outline {
  background: var(--color-transparent);
  border-color: var(--color-border);
  color: var(--color-muted);
}

.c-chip {
  border-radius: 999px;
  padding: 10px 14px;
  min-height: 44px;
  border: 1px solid var(--color-border);
  background: var(--surface-chip);
  color: var(--color-text);
  font-weight: 600;
  transition: background-color 160ms var(--ease), border-color 160ms var(--ease), transform 180ms var(--ease);
}

.c-chip:hover {
  background: var(--surface-chip-hover);
  transform: translateY(-1px);
}

.c-chip--active {
  background: var(--surface-chip-active);
  border-color: var(--border-chip-active);
}

.c-chip.is-active {
  background: var(--surface-chip-active);
  border-color: var(--border-chip-active);
}

/* Cards */
.c-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.c-card::before,
.c-card::after {
  content: none;
}

.c-card__body {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.c-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
}

.c-card__eyebrow {
  color: var(--color-muted);
  font-size: var(--type-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.c-card__title {
  font-size: var(--type-h3);
  line-height: 1.25;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.c-card__title--sm {
  font-size: 16px;
  font-weight: 700;
}

.c-card__text {
  margin: 10px 0 0;
  color: var(--color-muted);
}

.c-card__meta {
  color: var(--color-muted);
  font-size: var(--type-sm);
}

.c-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--text-link);
  font-weight: 650;
}

.c-card--mini {
  height: 100%;
}

.c-card--mini .c-card__body {
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.c-timeline__value {
  font-size: var(--type-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.c-card--glass {
  background: var(--surface-glass-bg);
  border-color: var(--border-glass);
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .c-card {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
}

.c-card--article .c-card__media {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--surface-media-bg);
}

.c-card--service,
.c-card--step,
.c-card--article {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease);
}

.c-card--service .c-card__body,
.c-card--step .c-card__body,
.c-card--article .c-card__body,
.c-audienceCard .c-card__body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.c-card--service .c-card__text,
.c-card--article .c-card__text {
  flex: 1;
}

.c-card--service .c-card__link,
.c-card--article .c-card__link {
  margin-top: auto;
}

.c-card--step .c-card__text {
  flex: 1;
}

.c-card--step .c-card__body {
  gap: 10px;
}

.c-card--service .c-card__body {
  gap: 10px;
}

.c-card--article .c-card__body {
  gap: 10px;
}

.c-card--service:hover,
.c-card--step:hover,
.c-card--article:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
  border-color: var(--border-hover);
}

/* Steps */
.c-steps {
  position: relative;
}

.c-step__num {
  width: fit-content;
}

/* Reality */
.c-reality__box {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-warning);
  background: var(--surface-warning-bg);
  box-shadow: var(--shadow-sm);
  padding: 26px;
}

.c-list {
  margin: 0;
  padding-left: 18px;
}

.c-list__item {
  margin: 10px 0;
  color: var(--color-muted);
}

/* Audience */
.c-audience__panel {
  max-width: 980px;
}

.c-audienceCard__chips {
  align-items: center;
}

.c-audienceCard__chips .c-chip {
  background: rgba(11, 16, 32, 0.03);
}

.c-audienceCard__chips .c-chip--active {
  background: rgba(245, 158, 11, 0.12);
}

.c-cloud--audience {
  --cloud-tint-a: rgba(245, 158, 11, 0.10);
  --cloud-tint-b: rgba(245, 158, 11, 0.03);
  background:
    radial-gradient(900px 500px at 22% 0%, var(--cloud-tint-a), var(--color-transparent) 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
}

.c-cloud--audience[data-audience="dev"] {
  --cloud-tint-a: rgba(245, 158, 11, 0.12);
  --cloud-tint-b: rgba(245, 158, 11, 0.04);
}

.c-cloud--audience[data-audience="saas"] {
  --cloud-tint-a: rgba(99, 102, 241, 0.12);
  --cloud-tint-b: rgba(99, 102, 241, 0.04);
}

.c-cloud--audience[data-audience="ecom"] {
  --cloud-tint-a: rgba(34, 197, 94, 0.12);
  --cloud-tint-b: rgba(34, 197, 94, 0.04);
}

.c-cloud--audience[data-audience="amazon"] {
  --cloud-tint-a: rgba(245, 158, 11, 0.14);
  --cloud-tint-b: rgba(245, 158, 11, 0.05);
}

.c-cloud--audience[data-audience="classic"] {
  --cloud-tint-a: rgba(11, 16, 32, 0.08);
  --cloud-tint-b: rgba(11, 16, 32, 0.03);
}

.c-cloud {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 44px;
  box-shadow: var(--shadow-md);
  overflow: visible;
}

.c-cloud::before,
.c-cloud::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

.c-cloud__body {
  position: relative;
  z-index: 1;
  padding: 26px 28px;
}

.c-cloud--audience {
  border-radius: 54px;
}

.c-cloud--audience .c-cloud__body {
  padding: 30px 32px;
}

/* Speech-bubble tail + subtle highlight */
.c-cloud--audience::before {
  width: 360px;
  height: 220px;
  left: 20px;
  top: -90px;
  background:
    radial-gradient(closest-side at 40% 60%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.0) 72%);
  opacity: 0.9;
}

.c-cloud--audience::after {
  width: 28px;
  height: 28px;
  left: 74px;
  bottom: -13px;
  background: var(--color-surface);
  border-left: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  transform: rotate(-45deg);
  border-bottom-left-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.c-badge--icon {
  gap: 8px;
}

@media (max-width: 575.98px) {
  .c-cloud__body {
    padding: 22px 20px;
  }

  .c-cloud--audience .c-cloud__body {
    padding: 24px 20px;
  }
}

.c-audienceCard__title {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.c-audienceCard__formula {
  margin-top: 10px;
  font-weight: 700;
  color: var(--color-text);
}

.c-audienceCard__desc {
  margin-top: 12px;
  color: var(--color-muted);
}

.c-audienceCard__list {
  margin-top: 14px;
}

.c-audience__chips {
  justify-content: flex-start;
}

@media (max-width: 575.98px) {
  .c-audience__chips .d-flex {
    justify-content: flex-start;
  }
}

/* Forms */
.c-form__label {
  color: var(--text-link);
  font-weight: 650;
}

.c-form__control {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--surface-input-bg);
  color: var(--color-text);
  padding: 12px 14px;
}

/* Hero lead (inline) */
.c-heroLead__toggle .c-chip {
  min-height: 44px;
}

.c-heroLead__toggle .c-chip,
.c-form__method .c-chip {
  background: #ffffff;
  border-color: var(--color-border);
  box-shadow: none;
  transform: none;
}

.c-heroLead__toggle .c-chip:hover,
.c-form__method .c-chip:hover,
.c-heroLead__toggle .c-chip:active,
.c-form__method .c-chip:active {
  background: var(--color-surface-2);
  border-color: rgba(11, 16, 32, 0.18);
  color: var(--color-text);
}

.c-heroLead__toggle .c-chip.c-chip--active,
.c-form__method .c-chip.c-chip--active {
  background: var(--surface-chip-active);
  border-color: var(--border-chip-active);
  box-shadow: none;
}

.c-heroLead__toggle .c-chip:focus-visible,
.c-form__method .c-chip:focus-visible {
  outline: none;
  box-shadow: none;
  border-color: var(--border-focus);
}

.l-page--home .c-heroLead__toggle {
  width: 100%;
}

.l-page--home .c-heroLead__toggle .c-chip {
  width: 50%;
}

.l-page--home .c-heroLead__toggle .c-chip:hover,
.l-page--home .c-heroLead__toggle .c-chip:active,
.l-page--home .c-lead .c-form__method .c-chip:hover,
.l-page--home .c-lead .c-form__method .c-chip:active {
  transform: none;
}

.l-page--home .c-heroLead__toggle .c-chip.c-chip--active,
.l-page--home .c-lead .c-form__method .c-chip.c-chip--active {
  box-shadow: none;
}

.l-page--home .c-heroLead__toggle .c-chip:focus-visible,
.l-page--home .c-lead .c-form__method .c-chip:focus-visible {
  outline: none;
  box-shadow: none;
  border-color: var(--border-focus);
}

.c-heroLead__actionRow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.c-heroLead__field .c-form__control {
  width: 100%;
}

.c-heroLead__submit {
  white-space: nowrap;
}

.c-heroLead__helpTitle {
  font-size: var(--type-sm);
  color: var(--color-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 575.98px) {
  .c-heroLead__actionRow {
    grid-template-columns: 1fr;
  }

  .c-heroLead__submit {
    width: 100%;
  }
}

.c-form__control:focus {
  border-color: var(--border-focus);
  box-shadow: var(--shadow-focus);
  background: var(--surface-input-bg-focus);
  color: var(--color-text);
}

.c-form__alert {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-warning);
  background: rgba(245, 158, 11, 0.10);
  color: var(--color-text);
  padding: 10px 12px;
  font-size: var(--type-sm);
}

.c-form__checkInput {
  border-color: var(--color-border);
  background-color: var(--surface-input-bg);
}

.c-form__checkInput:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.c-form__checkLabel {
  color: var(--color-muted);
}

/* FAQ */
.c-faq__accordion .accordion-item {
  background: var(--color-transparent);
  border: 0;
}

.accordion-collapse {
  transition: height 140ms var(--ease);
}

.collapsing {
  transition: height 140ms var(--ease);
}

.c-faq__accordion {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.c-faq__item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  background: var(--surface-glass-bg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.c-faq__item + .c-faq__item {
  margin-top: 12px;
}

.c-faq__item:hover {
  transform: none;
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.c-faq__button {
  background: var(--color-transparent);
  color: var(--color-text);
  padding: 20px 22px;
  font-weight: 700;
  line-height: 1.3;
}

.c-faq__button:not(.collapsed) {
  color: var(--color-text);
  background: var(--color-transparent);
  box-shadow: none;
}

.c-faq__button:focus {
  box-shadow: none;
}

.c-faq__body {
  color: var(--color-muted);
  padding: 14px 22px 22px;
  border-top: 0;
}

.accordion-button::after {
  opacity: 0.7;
  filter: none;
}

/* Referral */
.c-referral__box {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-referral);
  background: var(--surface-referral-bg);
  box-shadow: var(--shadow-md);
  padding: 26px;
}

/* Footer */
.c-footer {
  border-top: 1px solid var(--color-border);
  padding: 42px 0;
  background: var(--surface-footer-bg);
}

.c-footer__brandName {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.c-footer__brandMeta {
  margin-top: 10px;
  color: var(--color-muted);
}

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

.c-footer__link {
  color: var(--color-muted);
  transition: color 160ms var(--ease);
}

.c-footer__link:hover {
  color: var(--color-text);
}

.c-footer__bottom {
  border-top: 1px solid var(--color-border);
}

.c-footer__copyright {
  color: var(--color-muted);
  font-size: var(--type-sm);
}

/* Responsive */
@media (max-width: 991.98px) {
  .c-section {
    padding: 58px 0;
  }

  .c-hero {
    padding: 70px 0 54px;
  }

  .c-hero__title {
    font-size: 38px;
  }

  .c-proof__logo {
    height: 20px;
  }

  .c-proof__logos {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .c-hero__title {
    font-size: 32px;
  }

  .c-card__body {
    padding: 18px;
  }

  .c-proof__logos {
    gap: 10px 16px;
  }
}


