/* ============================================================
   TermPilot LP — Styles
   Mobile-first, dark theme, no framework
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #0f1424;
  --bg-card: #111827;
  --bg-card-hover: #151c2e;

  --text-primary: #e8eaf0;
  --text-secondary: #8b92a8;
  --text-muted: #5a6178;

  --accent: #4f7cff;
  --accent-hover: #6b93ff;
  --accent-glow: rgba(79, 124, 255, 0.15);

  --positive: #34d399;
  --negative: #f87171;

  --border: #1a2040;
  --border-accent: #2a3560;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --container-max: 1120px;
  --section-pad: 5rem 0;
  --section-pad-mobile: 3.5rem 0;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Typography ---------- */
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 3rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  background: var(--accent);
  color: #fff;
}

.btn:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 24px var(--accent-glow);
}

.btn:active { transform: scale(0.98); }

.btn--lg {
  font-size: 1.125rem;
  padding: 1rem 2.25rem;
}

.btn--sm {
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--border-accent);
  color: var(--text-primary);
}

.btn--outline:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
  box-shadow: none;
}

.btn--full { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
}

.nav__logo-icon { flex-shrink: 0; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__link {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

/* Hide text links on mobile, keep CTA */
@media (max-width: 639px) {
  .nav__link:not(.btn) { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 7rem 0 var(--section-pad-mobile);
  background: var(--bg-primary);
  overflow: hidden;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero__title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-top: 1.25rem;
  max-width: 520px;
}

.hero__subtitle strong {
  color: var(--accent);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.hero__secondary-cta {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.hero__secondary-cta:hover { color: var(--accent); }

/* --- Dashboard Mockup --- */
.dashboard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 0.8125rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dashboard__header {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.dashboard__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard__dot--red { background: #f87171; }
.dashboard__dot--yellow { background: #fbbf24; }
.dashboard__dot--green { background: #34d399; }

.dashboard__title {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.dashboard__body { padding: 0.75rem; }

.dashboard__row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.5rem 0.625rem;
  border-radius: var(--radius-sm);
}

.dashboard__row:nth-child(even) { background: rgba(255, 255, 255, 0.02); }

.dashboard__row--header {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.625rem;
  margin-bottom: 0.25rem;
}

.dashboard__term {
  color: var(--text-primary);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard__money {
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.dashboard__badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.1875rem 0.5rem;
  border-radius: var(--radius-full);
  text-align: center;
}

.dashboard__badge--waste {
  background: rgba(248, 113, 113, 0.15);
  color: var(--negative);
}

.dashboard__badge--keep {
  background: rgba(52, 211, 153, 0.15);
  color: var(--positive);
}

.dashboard__summary {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.dashboard__stat { flex: 1; }

.dashboard__stat-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dashboard__stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.dashboard__stat-value--negative { color: var(--negative); }
.dashboard__stat-value--positive { color: var(--positive); }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem {
  padding: var(--section-pad-mobile);
  background: var(--bg-secondary);
  text-align: center;
}

.problem__grid {
  display: grid;
  gap: 1.5rem;
}

.problem__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: left;
  transition: border-color 0.2s;
}

.problem__card:focus-within { border-color: var(--border-accent); }

.problem__icon {
  color: var(--negative);
  margin-bottom: 1rem;
}

.problem__heading {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.problem__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   SOLUTION (How it works)
   ============================================================ */
.solution {
  padding: var(--section-pad-mobile);
  background: var(--bg-primary);
  text-align: center;
}

.solution__steps {
  display: grid;
  gap: 2rem;
  counter-reset: step;
}

.solution__step {
  text-align: left;
  position: relative;
  padding-left: 4rem;
}

.solution__step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1.5px solid rgba(79, 124, 255, 0.3);
  border-radius: var(--radius-md);
}

.solution__step-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.solution__step-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   VALUES (Bento Grid)
   ============================================================ */
.values {
  padding: var(--section-pad-mobile);
  background: var(--bg-secondary);
  text-align: center;
}

.values__grid {
  display: grid;
  gap: 1.25rem;
}

.values__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
}

.values__card:focus-within {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.values__icon {
  color: var(--accent);
  margin-bottom: 1rem;
}

.values__heading {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.values__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: var(--section-pad-mobile);
  background: var(--bg-primary);
  text-align: center;
}

.pricing__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.pricing__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: left;
  position: relative;
}

.pricing__card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 32px var(--accent-glow);
}

.pricing__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pricing__badge--accent {
  background: var(--accent-glow);
  color: var(--accent);
}

.pricing__plan-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.pricing__price {
  margin: 0.75rem 0 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing__amount {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pricing__period {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing__description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.pricing__features {
  margin-bottom: 2rem;
}

.pricing__features li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding: 0.375rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.pricing__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  padding: var(--section-pad-mobile);
  background: var(--bg-secondary);
  text-align: center;
}

.cta-final__inner {
  max-width: 560px;
}

.cta-final__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.cta-final__subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.cta-final__note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.cta-final__disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  opacity: 0.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-primary);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__link {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   ACCESSIBILITY — Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   TRUST
   ============================================================ */
.trust {
  padding: var(--section-pad-mobile);
  background: var(--bg-primary);
  text-align: center;
}

.trust__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.trust__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: left;
}

.trust__heading {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.trust__list li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding: 0.25rem 0 0.25rem 1.5rem;
  position: relative;
  line-height: 1.5;
}

.trust__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
}

.trust__note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ============================================================
   PILOT FORM
   ============================================================ */
.pilot-form {
  max-width: 400px;
  margin: 0 auto 1.5rem;
  text-align: left;
}

.pilot-form__row {
  margin-bottom: 1rem;
}

.pilot-form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.375rem;
}

.pilot-form__label span {
  color: var(--accent);
}

.pilot-form__optional {
  font-weight: 400;
  color: var(--text-muted);
}

.pilot-form__input {
  width: 100%;
  font-family: var(--font);
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.pilot-form__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.pilot-form__input::placeholder {
  color: var(--text-muted);
}

select.pilot-form__input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b92a8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

/* ============================================================
   THANKS PAGE
   ============================================================ */
.thanks-page {
  padding: 8rem 0 4rem;
  text-align: center;
  min-height: 60vh;
}

.thanks-page__inner {
  max-width: 520px;
}

.thanks-page__icon {
  margin-bottom: 1.5rem;
}

.thanks-page__icon svg { margin: 0 auto; }

.thanks-page__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.thanks-page__text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.thanks-page__next-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.thanks-page__steps {
  text-align: left;
  max-width: 380px;
  margin: 0 auto 2.5rem;
  counter-reset: thanks-step;
}

.thanks-page__steps li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding: 0.5rem 0 0.5rem 2.5rem;
  position: relative;
  line-height: 1.5;
  counter-increment: thanks-step;
}

.thanks-page__steps li::before {
  content: counter(thanks-step);
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-glow);
  border-radius: var(--radius-sm);
}

/* ============================================================
   LEGAL PAGES (Privacy, Terms)
   ============================================================ */
.legal-page {
  padding: 7rem 0 4rem;
}

.legal-page__inner {
  max-width: 680px;
}

.legal-page__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.legal-page__updated {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.legal-section p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.legal-section ul {
  margin-bottom: 0.75rem;
}

.legal-section li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding: 0.25rem 0 0.25rem 1.25rem;
  position: relative;
  line-height: 1.6;
}

.legal-section li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.legal-section a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-section a:hover {
  color: var(--accent-hover);
}

/* ============================================================
   ARTICLE / BLOG
   ============================================================ */
.article-page {
  padding: 7rem 0 4rem;
}

.article {
  max-width: 680px;
}

.article__meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.article__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.article__lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.article__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
}

.article__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}

.article__body p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.article__body ul,
.article__body ol {
  margin: 0.75rem 0 1.25rem 1.25rem;
}

.article__body li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0.25rem 0;
}

.article__body ul li { list-style: disc; }
.article__body ol li { list-style: decimal; }

.article__body strong { color: var(--text-primary); }

/* Article CTA box */
.article-cta {
  margin-top: 3rem;
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 0 24px var(--accent-glow);
}

.article-cta__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.article-cta__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* ============================================================
   Grid Usage Approval
   - dashboard__row: tabular data display (4-column search term table)
   - problem__grid: 3-column equal-width card layout
   - solution__steps: 3-column equal-width step layout
   - values__grid: 2x2 bento card layout with span variant
   - pricing__grid: 2-column pricing card comparison
   All cases require equal-width columns that flexbox handles poorly.
   ============================================================ */

/* ============================================================
   motion_mode: subtle
   - Hover transitions on links/buttons only (200ms)
   - Active press feedback (100ms)
   - No decorative animations
   ============================================================ */

/* ============================================================
   RESPONSIVE — Tablet (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .container { padding: 0 2rem; }

  .section-title { font-size: 2.25rem; }

  .hero {
    padding: 8rem 0 5rem;
  }

  .hero__title { font-size: 3rem; }

  .problem__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .solution__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .solution__step {
    padding-left: 0;
    padding-top: 4rem;
    text-align: center;
  }

  .solution__step-number {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

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

  .values__card--large {
    grid-column: 1 / -1;
  }

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

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

  .cta-final__title { font-size: 2.5rem; }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer__copy { order: -1; }
}

/* ============================================================
   RESPONSIVE — Desktop (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  :root {
    --section-pad-mobile: 6rem 0;
  }

  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .hero__content { flex: 1; min-width: 0; }
  .hero__visual { flex: 1; min-width: 0; }

  .hero__title { font-size: 3.25rem; }

  .section-title { font-size: 2.5rem; }

  .values__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
  }

  .values__card--large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .values__card--large .values__icon {
    margin-bottom: 0;
    padding-top: 0.25rem;
  }

  .values__card--large .values__heading,
  .values__card--large .values__text {
    grid-column: 2;
  }

  .values__card--large .values__heading { margin-bottom: 0.25rem; }
}
