/* Gifts Balance — hero-first balance form, mobile-first */

:root {
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --bg: #f4f7fb;
  --bg-soft: #eef2f7;
  --surface: #ffffff;
  --text: #0b1220;
  --text-soft: #3d4a5c;
  --muted: #64748b;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.1);
  --radius: 14px;
  --radius-lg: 20px;
  --accent: #059669;
  --accent-soft: #d1fae5;
  --accent-ring: rgba(5, 150, 105, 0.25);
  --blue: #2563eb;
  --blue-soft: #eff6ff;
  --danger: #dc2626;
  --danger-soft: #fef2f2;
  --space-inline: clamp(16px, 4vw, 40px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 961px) {
  body.nav-open {
    overflow: auto;
  }
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1140px, 100% - 2 * var(--space-inline));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  z-index: 200;
  box-shadow: var(--shadow-md);
}

/* Corporate header */
.desktop-maintenance {
  display: none;
}

.site-root {
  min-height: 100vh;
}

@media (min-width: 1025px) {
  .desktop-maintenance {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    z-index: 100000;
    padding: 32px var(--space-inline);
    text-align: center;
    background:
      radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37, 99, 235, 0.2), transparent 55%),
      linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: #e2e8f0;
  }

  .site-root {
    display: none !important;
  }
}

.desktop-maintenance__inner {
  max-width: 440px;
}

.desktop-maintenance__badge {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fef08a;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.desktop-maintenance__title {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.desktop-maintenance__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #94a3b8;
}

.header-shell {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--surface);
  box-shadow: 0 1px 0 var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.brand:hover {
  text-decoration: none;
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 45%, #a7f3d0 100%);
  color: var(--accent);
  display: grid;
  place-items: center;
  border: 1px solid #bbf7d0;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.12);
  flex-shrink: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  min-width: 0;
}

.brand__name {
  font-weight: 800;
  font-size: clamp(0.88rem, 2.2vw, 1.05rem);
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand__tag {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(200px, 45vw);
}

@media (min-width: 480px) {
  .brand__tag {
    max-width: 280px;
  }
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  position: relative;
}

.brand--header .brand__text {
  text-align: left;
}

@media (max-width: 960px) {
  .brand--header .brand__text {
    text-align: left;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__drawer {
  display: flex;
  align-items: center;
  gap: 8px 28px;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  justify-content: flex-end;
}

.site-nav__link {
  display: inline-block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}

.site-nav__link:hover {
  color: var(--text);
  background: var(--bg-soft);
  text-decoration: none;
}

.btn--header-cta {
  padding: 10px 20px;
  font-size: 14px;
  min-height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25);
}

@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }

  .site-header__drawer {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0px);
    flex-direction: column;
    align-items: stretch;
    padding: 12px var(--space-inline) 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 4px;
  }

  .site-header__drawer.is-open {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
  }

  .site-nav__link {
    padding: 14px 12px;
    border-radius: 10px;
  }

  .btn--header-cta {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
}

/* Hero — corporate column */
.hero__secondary {
  min-width: 0;
}

.corp-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3.5vw, 28px);
  box-shadow: var(--shadow-md);
}

.corp-panel__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.corp-panel__title {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--text);
}

.corp-panel__lead {
  margin: 0 0 22px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}

.corp-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.corp-list li {
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.corp-list__title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.02em;
}

.corp-list__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.corp-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

@media (min-width: 520px) {
  .corp-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.corp-card {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fafbfc 0%, var(--surface) 100%);
}

.corp-card__title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.corp-card__text {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.corp-footnote {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.corp-footnote a {
  font-weight: 600;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero */
.hero {
  padding: clamp(16px, 4vw, 28px) 0 clamp(32px, 6vw, 56px);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(37, 99, 235, 0.07), transparent 55%),
    radial-gradient(900px 400px at 90% 0%, rgba(5, 150, 105, 0.09), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.hero__layout {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

@media (min-width: 960px) {
  .hero__layout {
    grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
    gap: 48px 56px;
  }
}

.hero__trust {
  margin-top: clamp(24px, 4vw, 36px);
}

/* Balance card (hero form) */
.balance-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) + 2px);
  box-shadow: var(--shadow-lg);
  padding: clamp(20px, 4vw, 28px);
  width: 100%;
  min-width: 0;
}

.balance-card__eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.balance-card__title {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 3.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.balance-card__subtitle {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.form-mode {
  display: flex;
  gap: 4px;
  padding: 4px;
  margin: 0 0 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.form-mode__btn {
  flex: 1;
  min-height: 46px;
  padding: 10px 12px;
  border: none;
  border-radius: 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
  background: transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}

@media (min-width: 380px) {
  .form-mode__btn {
    font-size: 14px;
  }
}

.form-mode__btn:hover {
  color: var(--text);
}

.form-mode__btn.is-active {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.form-mode__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.balance-form {
  margin: 0;
}

/* Fields */
.field {
  margin-bottom: 14px;
}

.field__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.field__input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fafbfc;
  font: inherit;
  font-size: 16px;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.field__input--mono {
  font-family: ui-monospace, "Cascadia Code", "SF Mono", monospace;
  letter-spacing: 0.02em;
}

.field__input::placeholder {
  color: #94a3b8;
}

.field__input:hover {
  border-color: var(--border-strong);
}

.field__input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px var(--accent-ring);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 480px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

.trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 4px 0 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.trust-inline__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.form-feedback {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--danger);
  background: var(--danger-soft);
  border: 1px solid #fecaca;
}

.form-feedback[hidden] {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s, box-shadow 0.12s, background 0.12s;
  min-height: 48px;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--lg {
  padding: 14px 22px;
  font-size: 16px;
  border-radius: 14px;
  min-height: 52px;
}

.btn--block {
  width: 100%;
  margin-top: 16px;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #059669 0%, #047857 50%, #0d9488 100%);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.28);
}

.btn--primary:hover {
  box-shadow: 0 10px 26px rgba(5, 150, 105, 0.35);
}

.btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

@keyframes btn-processing {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

.btn.is-loading {
  pointer-events: none;
  animation: btn-processing 0.55s ease-in-out infinite;
  opacity: 0.92;
}

.btn--ghost {
  color: var(--text-soft);
  background: var(--surface);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--border-strong);
}

.btn--white {
  background: #fff;
  color: #065f46;
  box-shadow: var(--shadow-md);
}

.btn--white:hover {
  box-shadow: var(--shadow-lg);
}

/* System error (after submit) */
.system-error-panel {
  margin-top: 22px;
  padding: 20px 18px;
  border-radius: 14px;
  border: 1px solid #fecaca;
  background: linear-gradient(180deg, #fef2f2 0%, #fff 100%);
}

.system-error-panel[hidden] {
  display: none !important;
}

.system-error-panel__inner {
  text-align: left;
}

.system-error-panel__label {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--danger);
}

.system-error-panel__title {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.25;
}

.system-error-panel__text {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
}

.system-error-panel__note {
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.system-error-panel .btn--block {
  margin-top: 0;
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}

.trust-badges__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(12px, 2.5vw, 13px);
  font-weight: 600;
  color: var(--text-soft);
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.trust-badges__icon {
  font-size: 14px;
  line-height: 1;
}

/* Stats bar */
.stats-bar {
  background: var(--surface);
  border-block: 1px solid var(--border);
  padding: clamp(28px, 5vw, 36px) 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: center;
}

@media (min-width: 600px) {
  .stats-bar__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.stat-block__value {
  font-size: clamp(1.75rem, 5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.stat-block__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Sections */
.section {
  padding: clamp(48px, 8vw, 72px) 0;
}

.section--soft {
  background: linear-gradient(180deg, #f8fafc 0%, var(--bg) 100%);
  border-block: 1px solid var(--border);
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(28px, 5vw, 40px);
}

.section__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section__title {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section__lead {
  margin: 0;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  color: var(--muted);
  line-height: 1.6;
}

.steps-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .steps-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 26px);
  box-shadow: var(--shadow-sm);
}

.step-card__num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid #bbf7d0;
  margin-bottom: 14px;
}

.step-card__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
}

.step-card__text {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.logo-marquee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.logo-pill__mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid #bfdbfe;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .security-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.security-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 26px);
  box-shadow: var(--shadow-sm);
}

.security-card__title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
}

.security-card__text {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .reviews {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.review {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 24px);
  box-shadow: var(--shadow-sm);
}

.review__quote {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  font-style: normal;
}

.review__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid #bfdbfe;
  flex-shrink: 0;
}

.review__badge {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

/* CTA */
.cta-band {
  padding: clamp(40px, 6vw, 56px) 0;
  background: linear-gradient(135deg, #059669 0%, #0f766e 45%, #0e7490 100%);
  color: #ecfdf5;
}

.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}

@media (min-width: 720px) {
  .cta-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-band__title {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.cta-band__text {
  margin: 0 0 8px;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  opacity: 0.95;
  max-width: 520px;
  line-height: 1.55;
}

.cta-band__fine {
  margin: 0;
  font-size: 13px;
  opacity: 0.85;
}

.cta-band .btn {
  text-align: center;
  flex-shrink: 0;
}

/* Footer */
.footer {
  padding: 24px 0 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer__inner {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.footer__inner p {
  margin: 0;
}
