/* ─────────────────────────────────────────────────────────────────────────────
   UTAH GROWTH CO. — Landing Page CSS
   Premium light theme, mobile-first, conversion-focused
   ───────────────────────────────────────────────────────────────────────────── */

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

:root {
  --bg:             #ffffff;
  --bg-soft:        #f8fafc;
  --bg-muted:       #f1f5f9;
  --text:           #0f172a;
  --text-muted:     #475569;
  --text-light:     #94a3b8;
  --accent:         #2563eb;
  --accent-hover:   #1d4ed8;
  --accent-light:   #eff6ff;
  --accent-border:  #bfdbfe;
  --success:        #059669;
  --success-bg:     #ecfdf5;
  --error:          #dc2626;
  --error-bg:       #fef2f2;
  --border:         #e2e8f0;
  --border-hover:   #cbd5e1;
  --shadow-sm:      0 1px 3px rgba(15,23,42,.07), 0 1px 2px rgba(15,23,42,.05);
  --shadow-md:      0 4px 20px rgba(15,23,42,.09), 0 2px 8px rgba(15,23,42,.05);
  --shadow-lg:      0 20px 48px rgba(15,23,42,.13), 0 8px 20px rgba(15,23,42,.07);
  --shadow-focus:   0 0 0 3px rgba(37,99,235,.18);
  --r:              12px;
  --r-sm:           8px;
  --r-lg:           20px;
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Layout ────────────────────────────────────────────────────────────────── */
.l-container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Header ────────────────────────────────────────────────────────────────── */
.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  border-top: 3px solid var(--accent);
}

.l-header .l-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.l-brand {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-family: 'Lora', Georgia, serif;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #1a2838;
  user-select: none;
}

.l-brand-utah {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #6b7a8d;
}

.l-brand-growth {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a2838;
}

.l-brand-co {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0em;
  color: #8a96a3;
  margin-left: -1px;
}

.l-header-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 2px 8px rgba(37,99,235,.28);
}
.l-header-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.l-hero {
  padding: 80px 0 92px;
  background:
    radial-gradient(ellipse 70% 60% at 85% 20%, rgba(37,99,235,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(16,185,129,.06) 0%, transparent 55%),
    linear-gradient(160deg, #eef4ff 0%, #f8fafc 40%, #f0fdf4 100%);
  position: relative;
  overflow: hidden;
}

.l-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(37,99,235,.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 40%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 70% 40%, black 0%, transparent 70%);
}

.l-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  pointer-events: none;
}

.l-hero-inner {
  position: relative;
  z-index: 1;
}

.l-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 12px;
  background: var(--accent-light);
  border: 1.5px solid rgba(37,99,235,.22);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(37,99,235,.08);
}

.l-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: l-pulse-dot 2.8s ease-in-out infinite;
}

@keyframes l-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.8); }
}

.l-hero-headline {
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--text);
  max-width: 640px;
  margin-bottom: 20px;
}

.l-hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 55%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.l-hero-sub {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 32px;
}

/* ── Form Card ─────────────────────────────────────────────────────────────── */
.l-form-card {
  width: 100%;
  max-width: 520px;
  background: var(--bg);
  border: 1px solid rgba(37,99,235,.14);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  box-shadow: 0 28px 72px rgba(15,23,42,.16), 0 8px 28px rgba(37,99,235,.07), 0 1px 3px rgba(15,23,42,.05);
}

/* After-submit note inside form card */
.l-form-after-note {
  margin-top: 13px;
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.55;
  padding: 0 4px;
}

.l-form-after-note--dark {
  color: rgba(255,255,255,.48);
}

.l-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.l-form-header strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.l-form-header span {
  font-size: 12px;
  color: var(--text-light);
  background: var(--bg-soft);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.l-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.l-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.l-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.l-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.l-optional {
  font-weight: 400;
  color: var(--text-light);
}

.l-field input {
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

.l-field input::placeholder {
  color: var(--text-light);
}

.l-field input:hover {
  border-color: var(--border-hover);
}

.l-field input:focus {
  border-color: var(--accent);
  box-shadow: var(--shadow-focus);
}

.l-field input.is-invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(220,38,38,.12);
}

/* ── Primary Button ────────────────────────────────────────────────────────── */
.l-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 56px;
  padding: 0 24px;
  background: linear-gradient(140deg, #2563eb 0%, #1a44c8 60%, #1e3fbe 100%);
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), opacity 0.2s;
  box-shadow: 0 6px 24px rgba(37,99,235,.42), 0 1px 4px rgba(37,99,235,.22);
  letter-spacing: 0.012em;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}

.l-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.11) 0%, transparent 55%);
  pointer-events: none;
}

/* Shimmer sweep on hover */
.l-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.12) 50%, transparent 80%);
  pointer-events: none;
  transition: left 0.55s var(--ease);
}

.l-btn-primary:hover:not(:disabled)::before {
  left: 140%;
}

.l-btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,99,235,.50), 0 2px 8px rgba(37,99,235,.24);
  background: linear-gradient(140deg, #2d6ef5 0%, #2050d8 60%, #2448d4 100%);
}

.l-btn-primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37,99,235,.30);
  transition-duration: 0.08s;
}

.l-btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ── Form Error & Trust Note ───────────────────────────────────────────────── */
.l-form-error {
  padding: 10px 14px;
  background: var(--error-bg);
  border: 1px solid rgba(220,38,38,.2);
  border-radius: var(--r-sm);
  font-size: 13.5px;
  color: var(--error);
  font-weight: 500;
}

.l-trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-light);
}

.l-trust-note svg {
  flex-shrink: 0;
  color: var(--text-light);
}

/* ── Success Card ──────────────────────────────────────────────────────────── */
.l-success-card {
  width: 100%;
  max-width: 520px;
  background: var(--success-bg);
  border: 1px solid rgba(5,150,105,.2);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.l-success-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin: 12px 0 10px;
  letter-spacing: -0.02em;
}

.l-success-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.l-success-note {
  font-size: 13px !important;
  color: var(--text-light) !important;
}

.l-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(5,150,105,.3);
}

/* ── Section Base ──────────────────────────────────────────────────────────── */
.l-section {
  padding: 80px 0;
}

.l-section--soft {
  background: var(--bg-soft);
}

.l-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.l-section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  max-width: 680px;
  margin: 0 auto 16px;
  text-align: center;
}

.l-section-title--left {
  text-align: left;
  margin: 0 0 16px;
}

.l-section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 52px;
  text-align: center;
  line-height: 1.65;
}

/* ── Problem Grid ──────────────────────────────────────────────────────────── */
.l-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.l-problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.l-problem-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.l-problem-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fef3c7;
  border-radius: var(--r-sm);
  margin-bottom: 16px;
  color: #d97706;
}

.l-problem-icon svg {
  width: 22px;
  height: 22px;
}

.l-problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.l-problem-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Benefits Grid ─────────────────────────────────────────────────────────── */
.l-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.l-benefit-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
  position: relative;
  overflow: hidden;
}

.l-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}

.l-benefit-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-border);
  transform: translateY(-2px);
}

.l-benefit-card:hover::before {
  opacity: 1;
}

.l-benefit-num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-light);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.l-benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.l-benefit-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Steps ─────────────────────────────────────────────────────────────────── */
.l-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.l-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.l-step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-border), var(--accent));
  margin-top: 28px;
  border-radius: 2px;
}

.l-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(37,99,235,.3);
  flex-shrink: 0;
}

.l-step-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.l-step-content p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Why Different ─────────────────────────────────────────────────────────── */
.l-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.l-why-intro {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.l-why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.l-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.l-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: var(--success-bg);
  color: var(--success);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
  flex-shrink: 0;
  border: 1.5px solid rgba(5,150,105,.25);
}

.l-aside-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.l-aside-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: var(--r-sm);
  color: var(--accent);
  margin-bottom: 20px;
}

.l-aside-stat {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.l-aside-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.l-aside-note {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.l-aside-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.01em;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.l-aside-meta-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.85;
}

/* ── CTA Section ───────────────────────────────────────────────────────────── */
.l-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%);
  position: relative;
  overflow: hidden;
}

.l-cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}

.l-cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  pointer-events: none;
}

.l-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.l-cta-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #ffffff;
  max-width: 640px;
  margin-bottom: 14px;
  line-height: 1.15;
}

.l-cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 440px;
  line-height: 1.5;
}

.l-form-card--dark {
  background: rgba(255,255,255,.98);
  border-color: rgba(255,255,255,.2);
}

.l-cta-trust {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.l-success-card--dark {
  background: rgba(255,255,255,.95);
  border-color: rgba(5,150,105,.2);
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.l-footer {
  background: var(--text);
  padding: 40px 0;
}

.l-footer-inner {
  text-align: center;
}

.l-footer-brand {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  font-family: 'Lora', Georgia, serif;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 12px;
}

.l-footer-brand .l-brand-utah {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,.45);
}

.l-footer-brand .l-brand-growth {
  font-size: 17px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
}

.l-footer-brand .l-brand-co {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.35);
}

.l-footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}

.l-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

/* ── Spinner ───────────────────────────────────────────────────────────────── */
@keyframes l-spin {
  to { transform: rotate(360deg); }
}

.l-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: l-spin 0.6s linear infinite;
}

/* ── Fade-in animation ─────────────────────────────────────────────────────── */
@keyframes l-fadein {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.l-success-card {
  animation: l-fadein 0.35s var(--ease) both;
}

/* ── Process Proof Section ─────────────────────────────────────────────────── */
.l-lookat-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.2;
}

.l-process-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  width: 100%;
}

.l-process-col {
  flex: 1;
  padding: 0 32px;
}

.l-process-divider {
  flex-shrink: 0;
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 4px 0;
}

.l-process-col-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-light);
  display: inline-block;
  padding: 2px 9px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.l-process-col-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.l-process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.l-process-list li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.l-process-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  top: 1px;
}

.l-lookat-note {
  margin-top: 36px;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  text-align: center;
  max-width: 560px;
  line-height: 1.55;
  padding: 14px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}

/* ── Process Section Responsive ────────────────────────────────────────────── */
@media (max-width: 720px) {
  .l-process-grid {
    flex-direction: column;
    gap: 28px;
  }

  .l-process-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }

  .l-process-col {
    padding: 0 8px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .l-problem-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .l-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .l-why-aside {
    order: -1;
  }

  .l-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .l-step-connector {
    width: 2px;
    height: 40px;
    margin-top: 0;
    background: linear-gradient(180deg, var(--accent-border), var(--accent));
  }

  .l-step {
    padding: 0;
    width: 100%;
    max-width: 440px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .l-hero {
    padding: 48px 0 56px;
  }

  .l-section {
    padding: 56px 0;
  }

  .l-form-card {
    padding: 22px 18px 20px;
    border-radius: var(--r);
  }

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

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

  .l-header-cta {
    display: none;
  }

  .l-why-grid {
    gap: 32px;
  }

  .l-aside-card {
    padding: 24px 20px;
  }

  .l-cta-section {
    padding: 56px 0;
  }

  .l-trust-note {
    flex-direction: column;
    gap: 4px;
  }
}
