/* ═══════════════════════════════════════════════════════════════════════════
   Code Review by PSA — Marketing Site Stylesheet
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Reset & Base ────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, sans-serif;
  color: var(--cr-grey-700);
  background: var(--cr-white);
  font-size: 16px;
  line-height: 1.6;
}

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

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

ul, ol {
  list-style: none;
}

/* ── Design Tokens ───────────────────────────────────────────────────────── */
:root {
  --cr-navy:     #0A2540;
  --cr-navy-light: #0F3460;
  --cr-blue:     #1E5EFF;
  --cr-blue-light: #4B7FFF;
  --cr-green:    #1DB954;
  --cr-green-light: #2DD668;
  --cr-black:    #000000;
  --cr-white:    #FFFFFF;

  --cr-grey-50:  #F8FAFC;
  --cr-grey-100: #F1F5F9;
  --cr-grey-200: #E2E8F0;
  --cr-grey-300: #CBD5E1;
  --cr-grey-400: #94A3B8;
  --cr-grey-500: #64748B;
  --cr-grey-600: #475569;
  --cr-grey-700: #334155;
  --cr-grey-800: #1E293B;
  --cr-grey-900: #0F172A;

  --cr-radius-sm: 6px;
  --cr-radius-md: 10px;
  --cr-radius-lg: 16px;

  --cr-shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.06);
  --cr-shadow-md: 0 4px 16px rgba(10, 37, 64, 0.08);
  --cr-shadow-lg: 0 12px 40px rgba(10, 37, 64, 0.12);
  --cr-shadow-card: 0 1px 3px rgba(10, 37, 64, 0.04), 0 4px 16px rgba(10, 37, 64, 0.06);

  --cr-container: 1180px;
  --cr-gutter: 24px;
}

/* ── Layout ──────────────────────────────────────────────────────────────── */
.cr-container {
  width: min(var(--cr-container), calc(100% - var(--cr-gutter) * 2));
  margin-inline: auto;
}

.cr-section {
  padding: 96px 0;
}

.cr-section--white { background: var(--cr-white); }
.cr-section--light { background: var(--cr-grey-50); }
.cr-section--navy  { background: var(--cr-navy); color: var(--cr-white); }
.cr-section--dark  { background: var(--cr-grey-900); color: var(--cr-white); }

.cr-section__header {
  max-width: 680px;
  margin-bottom: 64px;
}

.cr-section__header--center {
  text-align: center;
  margin-inline: auto;
}

/* ── Typography ──────────────────────────────────────────────────────────── */
.cr-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cr-blue);
  margin-bottom: 12px;
}

.cr-section--navy .cr-eyebrow,
.cr-section--dark .cr-eyebrow {
  color: var(--cr-green);
}

.cr-h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cr-white);
  margin-bottom: 24px;
}

.cr-h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--cr-navy);
  margin-bottom: 16px;
}

.cr-section--navy .cr-h2,
.cr-section--dark .cr-h2 {
  color: var(--cr-white);
}

.cr-h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--cr-navy);
  margin-bottom: 8px;
}

.cr-section--navy .cr-h3,
.cr-section--dark .cr-h3 {
  color: var(--cr-white);
}

.cr-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--cr-grey-500);
}

.cr-section--navy .cr-lead {
  color: rgba(255, 255, 255, 0.7);
}

.cr-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cr-grey-600);
}

.cr-section--navy .cr-body,
.cr-section--dark .cr-body {
  color: rgba(255, 255, 255, 0.65);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.cr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: var(--cr-radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.2;
}

.cr-btn--primary {
  background: var(--cr-blue);
  color: var(--cr-white);
}
.cr-btn--primary:hover {
  background: var(--cr-blue-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(30, 94, 255, 0.3);
}

.cr-btn--secondary {
  background: transparent;
  color: var(--cr-white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.cr-btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

.cr-btn--outline {
  background: transparent;
  color: var(--cr-navy);
  border: 1.5px solid var(--cr-grey-200);
}
.cr-btn--outline:hover {
  border-color: var(--cr-blue);
  color: var(--cr-blue);
}

.cr-btn--white {
  background: var(--cr-white);
  color: var(--cr-navy);
}
.cr-btn--white:hover {
  background: var(--cr-grey-50);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cr-btn--green {
  background: var(--cr-green);
  color: var(--cr-white);
}
.cr-btn--green:hover {
  background: var(--cr-green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(29, 185, 84, 0.3);
}

.cr-btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.cr-btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.cr-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cr-btn-group {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── Navigation ──────────────────────────────────────────────────────────── */
.cr-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cr-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cr-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 32px;
}

.cr-nav__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.cr-nav__logo {
  height: 36px;
  width: auto;
}

.cr-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.cr-nav__link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}

.cr-nav__link:hover,
.cr-nav__link--active {
  color: var(--cr-white);
}

.cr-nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cr-nav__signin {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}
.cr-nav__signin:hover { color: var(--cr-white); }

.cr-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cr-blue);
  color: var(--cr-white);
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 10px 20px;
  border-radius: var(--cr-radius-sm);
  text-decoration: none;
  transition: background 0.15s;
}
.cr-nav__cta:hover { background: var(--cr-blue-light); }

/* Mobile menu toggle */
.cr-nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cr-white);
  cursor: pointer;
  padding: 8px;
}

.cr-nav__toggle svg {
  width: 24px;
  height: 24px;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.cr-hero {
  background: var(--cr-navy);
  position: relative;
  overflow: hidden;
  padding: 96px 0 112px;
}

/* Subtle grid motif */
.cr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 94, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 94, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Top glow */
.cr-hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(30, 94, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cr-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}

.cr-hero__content {
  max-width: 640px;
}

.cr-hero__lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  max-width: 520px;
}

/* Hero card (email capture / CTA) */
.cr-hero__card {
  background: var(--cr-white);
  border-radius: var(--cr-radius-lg);
  padding: 40px 32px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.cr-hero__card-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cr-blue);
  margin-bottom: 8px;
}

.cr-hero__card-heading {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--cr-navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.cr-hero__card-sub {
  font-size: 0.875rem;
  color: var(--cr-grey-500);
  line-height: 1.6;
  margin-bottom: 24px;
}

.cr-hero__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cr-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cr-grey-200);
  border-radius: var(--cr-radius-sm);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--cr-navy);
  outline: none;
  transition: border-color 0.15s;
  background: var(--cr-white);
}

.cr-input:focus {
  border-color: var(--cr-blue);
  box-shadow: 0 0 0 3px rgba(30, 94, 255, 0.1);
}

.cr-input::placeholder {
  color: var(--cr-grey-400);
}

.cr-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--cr-grey-400);
  font-size: 0.8rem;
}

.cr-divider::before,
.cr-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cr-grey-200);
}

.cr-hero__card-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--cr-grey-400);
  margin-top: 16px;
}

/* ── Trust Strip ─────────────────────────────────────────────────────────── */
.cr-trust {
  background: var(--cr-grey-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;
}

.cr-trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

.cr-trust__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* ── Steps / Process ─────────────────────────────────────────────────────── */
.cr-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.cr-step {
  position: relative;
  background: var(--cr-white);
  border: 1px solid var(--cr-grey-200);
  border-radius: var(--cr-radius-md);
  padding: 36px 28px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.cr-step:hover {
  box-shadow: var(--cr-shadow-md);
  border-color: var(--cr-grey-300);
}

.cr-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cr-navy);
  color: var(--cr-white);
  font-size: 0.875rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cr-step__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cr-navy);
  margin-bottom: 10px;
}

.cr-step__body {
  font-size: 0.9375rem;
  color: var(--cr-grey-500);
  line-height: 1.65;
}

/* Connector line between steps */
.cr-steps--connected {
  position: relative;
}

.cr-steps--connected .cr-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 56px;
  right: -17px;
  width: 34px;
  height: 2px;
  background: var(--cr-grey-200);
}

/* ── Feature / Category Cards ────────────────────────────────────────────── */
.cr-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cr-card {
  background: var(--cr-white);
  border: 1px solid var(--cr-grey-200);
  border-radius: var(--cr-radius-md);
  padding: 32px 28px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.cr-card:hover {
  box-shadow: var(--cr-shadow-card);
  border-color: var(--cr-grey-300);
  transform: translateY(-2px);
}

.cr-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--cr-radius-md);
  background: var(--cr-grey-50);
  border: 1px solid var(--cr-grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--cr-blue);
}

.cr-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cr-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--cr-navy);
  margin-bottom: 8px;
}

.cr-card__body {
  font-size: 0.9375rem;
  color: var(--cr-grey-500);
  line-height: 1.65;
}

/* Navy card variant */
.cr-card--navy {
  background: var(--cr-navy);
  border-color: rgba(255, 255, 255, 0.08);
}

.cr-card--navy:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.cr-card--navy .cr-card__icon {
  background: rgba(30, 94, 255, 0.1);
  border-color: rgba(30, 94, 255, 0.15);
  color: var(--cr-blue-light);
}

.cr-card--navy .cr-card__title {
  color: var(--cr-white);
}

.cr-card--navy .cr-card__body {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Two-Column Layout ───────────────────────────────────────────────────── */
.cr-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cr-split--reverse {
  direction: rtl;
}
.cr-split--reverse > * {
  direction: ltr;
}

/* ── Check List ──────────────────────────────────────────────────────────── */
.cr-checklist {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cr-checklist__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cr-checklist__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cr-green);
  color: var(--cr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.cr-checklist__icon svg {
  width: 14px;
  height: 14px;
}

.cr-checklist__title {
  font-weight: 700;
  color: var(--cr-navy);
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.cr-checklist__text {
  font-size: 0.9375rem;
  color: var(--cr-grey-500);
  line-height: 1.6;
}

/* ── Audience / Who Section ──────────────────────────────────────────────── */
.cr-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cr-audience-card {
  background: var(--cr-white);
  border: 1px solid var(--cr-grey-200);
  border-radius: var(--cr-radius-md);
  padding: 40px 32px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.cr-audience-card:hover {
  box-shadow: var(--cr-shadow-md);
  transform: translateY(-3px);
}

.cr-audience-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cr-grey-50);
  border: 1px solid var(--cr-grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--cr-navy);
}

.cr-audience-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.cr-audience-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cr-navy);
  margin-bottom: 10px;
}

.cr-audience-card__body {
  font-size: 0.9375rem;
  color: var(--cr-grey-500);
  line-height: 1.65;
}

/* ── Stats / Numbers ─────────────────────────────────────────────────────── */
.cr-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.cr-stat {
  text-align: center;
  padding: 24px 16px;
}

.cr-stat__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--cr-blue);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.cr-section--navy .cr-stat__number {
  color: var(--cr-green);
}

.cr-stat__label {
  font-size: 0.875rem;
  color: var(--cr-grey-500);
  font-weight: 500;
}

.cr-section--navy .cr-stat__label {
  color: rgba(255, 255, 255, 0.6);
}

/* ── CTA Banner ──────────────────────────────────────────────────────────── */
.cr-cta-banner {
  background: var(--cr-blue);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cr-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.cr-cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cr-cta-banner__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--cr-white);
  letter-spacing: -0.02em;
}

.cr-cta-banner__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.cr-footer {
  background: var(--cr-navy);
  color: rgba(255, 255, 255, 0.5);
  padding: 72px 0 0;
}

.cr-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.cr-footer__brand-text {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.cr-footer__logo {
  height: 32px;
  width: auto;
}

.cr-footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.cr-footer__link {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.15s;
  margin-bottom: 12px;
}
.cr-footer__link:hover { color: var(--cr-white); }

.cr-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cr-footer__legal {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.35);
}

.cr-footer__disclaimer {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.3);
  max-width: 640px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  margin-top: 24px;
  padding-bottom: 24px;
}

/* ── Page Hero (interior pages) ──────────────────────────────────────────── */
.cr-page-hero {
  background: var(--cr-navy);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.cr-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 94, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 94, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.cr-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.cr-page-hero .cr-eyebrow {
  color: var(--cr-green);
}

.cr-page-hero .cr-h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cr-page-hero .cr-lead {
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
}

/* ── Contact Form ────────────────────────────────────────────────────────── */
.cr-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cr-form-grid--full {
  grid-column: 1 / -1;
}

.cr-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cr-form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cr-navy);
}

.cr-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cr-grey-200);
  border-radius: var(--cr-radius-sm);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--cr-navy);
  outline: none;
  transition: border-color 0.15s;
  resize: vertical;
  min-height: 120px;
}

.cr-textarea:focus {
  border-color: var(--cr-blue);
  box-shadow: 0 0 0 3px rgba(30, 94, 255, 0.1);
}

.cr-select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cr-grey-200);
  border-radius: var(--cr-radius-sm);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--cr-navy);
  outline: none;
  background: var(--cr-white);
  cursor: pointer;
  transition: border-color 0.15s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748B' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.cr-select:focus {
  border-color: var(--cr-blue);
  box-shadow: 0 0 0 3px rgba(30, 94, 255, 0.1);
}

/* ── Contact Details ─────────────────────────────────────────────────────── */
.cr-contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cr-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cr-contact-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--cr-radius-md);
  background: var(--cr-grey-50);
  border: 1px solid var(--cr-grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cr-blue);
  flex-shrink: 0;
}

.cr-contact-item__icon svg {
  width: 20px;
  height: 20px;
}

.cr-contact-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cr-grey-400);
  margin-bottom: 4px;
}

.cr-contact-item__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cr-navy);
}

/* ── Badge / Tag ─────────────────────────────────────────────────────────── */
.cr-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(30, 94, 255, 0.08);
  color: var(--cr-blue);
}

.cr-badge--green {
  background: rgba(29, 185, 84, 0.08);
  color: var(--cr-green);
}

/* ── Prose (for about page content) ──────────────────────────────────────── */
.cr-prose {
  max-width: 680px;
}

.cr-prose p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--cr-grey-600);
  margin-bottom: 24px;
}

.cr-prose p:last-child {
  margin-bottom: 0;
}

/* ── Feature list (compact) ──────────────────────────────────────────────── */
.cr-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cr-feature-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--cr-grey-600);
  font-weight: 500;
}

.cr-feature-list__item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cr-green);
  flex-shrink: 0;
}

.cr-section--navy .cr-feature-list__item {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cr-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cr-hero__card {
    max-width: 480px;
  }

  .cr-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cr-split--reverse {
    direction: ltr;
  }

  .cr-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .cr-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Tablet: 2-column intermediate layout ── */
@media (max-width: 900px) {
  .cr-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cr-audience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .cr-steps {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --cr-gutter: 20px;
  }

  .cr-section {
    padding: 64px 0;
  }

  .cr-hero {
    padding: 64px 0 80px;
  }

  .cr-page-hero {
    padding: 48px 0 56px;
  }

  /* ── Nav: collapse actions alongside hamburger ── */
  .cr-nav__inner {
    gap: 12px;
  }

  .cr-nav__signin {
    display: none;
  }

  .cr-nav__cta {
    font-size: 0.75rem;
    padding: 7px 14px;
  }

  .cr-nav__links {
    display: none;
  }

  .cr-nav__toggle {
    display: block;
  }

  .cr-nav--open .cr-nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cr-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px;
    gap: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  }

  /* ── Trust strip: hide separator dots on mobile ── */
  .cr-trust__dot {
    display: none;
  }

  .cr-trust__inner {
    gap: 6px 16px;
    justify-content: center;
    text-align: center;
  }

  /* ── Grids ── */
  .cr-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cr-steps--connected .cr-step::after {
    display: none;
  }

  .cr-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cr-audience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cr-cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cr-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cr-form-grid {
    grid-template-columns: 1fr;
  }

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

  .cr-section__header {
    margin-bottom: 40px;
  }

  .cr-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .cr-hero__card {
    padding: 28px 20px;
    max-width: 100%;
  }

  .cr-btn-group {
    flex-direction: column;
    width: 100%;
  }

  .cr-btn-group .cr-btn {
    width: 100%;
    justify-content: center;
  }

  .cr-card {
    padding: 24px 20px;
  }

  .cr-audience-card {
    padding: 28px 20px;
  }

  .cr-stats {
    grid-template-columns: 1fr 1fr;
  }
}
