:root {
  --green-950: #042f1e;
  --green-900: #064e32;
  --green-800: #0a6b44;
  --green-700: #0d8554;
  --green-600: #10a366;
  --green-500: #14b876;
  --green-400: #3dd68c;
  --green-100: #d4f5e4;
  --gold-500: #c9a227;
  --gold-400: #e4bc3a;
  --gold-300: #f0d060;
  --sand-50: #faf9f6;
  --sand-100: #f3f1eb;
  --sand-200: #e8e4db;
  --ink-900: #0f1419;
  --ink-700: #3d454d;
  --ink-500: #6b7280;
  --ink-300: #9ca3af;
  --white: #ffffff;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(4, 47, 30, 0.06);
  --shadow-md: 0 8px 32px rgba(4, 47, 30, 0.1);
  --shadow-lg: 0 24px 64px rgba(4, 47, 30, 0.14);
  --shadow-glow: 0 0 80px rgba(20, 184, 118, 0.25);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--sand-50);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 10% -10%, rgba(20, 184, 118, 0.12), transparent),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(201, 162, 39, 0.08), transparent),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(10, 107, 68, 0.06), transparent),
    linear-gradient(180deg, var(--sand-50) 0%, var(--sand-100) 100%);
}

.bg-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230a6b44' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

.container--narrow {
  width: min(720px, calc(100% - 2rem));
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10, 107, 68, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--green-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.logo--sm {
  font-size: 1.1rem;
}

.logo__icon {
  display: flex;
  width: 36px;
  height: 36px;
  color: var(--green-700);
}

.logo__icon svg {
  width: 100%;
  height: 100%;
}

.nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav a {
  text-decoration: none;
  color: var(--ink-700);
  font-size: 0.925rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--green-700);
}

.nav__cta {
  margin-left: 0.5rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13, 133, 84, 0.35);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13, 133, 84, 0.4);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: var(--sand-100);
  color: var(--green-800);
  border: 1px solid var(--sand-200);
}

.btn--secondary:hover {
  background: var(--green-100);
  border-color: var(--green-400);
}

.btn--ghost {
  background: transparent;
  color: var(--green-800);
  border: 1.5px solid rgba(10, 107, 68, 0.2);
}

.btn--ghost:hover {
  background: rgba(10, 107, 68, 0.06);
  border-color: var(--green-600);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

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

/* Hero */
.hero {
  padding: 3rem 0 4rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(20, 184, 118, 0.1);
  border: 1px solid rgba(20, 184, 118, 0.2);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: 1.25rem;
}

.badge__dot {
  width: 7px;
  height: 7px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--green-950);
  margin-bottom: 1rem;
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--ink-700);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero__stats {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.hero__stats li {
  display: flex;
  flex-direction: column;
}

.hero__stats strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-800);
}

.hero__stats span {
  font-size: 0.8rem;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Card Form */
.card-form {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.card-form__glow {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 118, 0.15), transparent 70%);
  pointer-events: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Wizard */
.wizard__header {
  margin-bottom: 1.75rem;
}

.wizard__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.wizard__eyebrow span {
  color: var(--green-700);
}

.wizard__track {
  height: 4px;
  background: var(--sand-200);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.wizard__track-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green-600), var(--green-400));
  border-radius: 999px;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  list-style: none;
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.wizard-step__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--sand-100);
  color: var(--ink-500);
  border: 2px solid var(--sand-200);
  transition: all var(--transition);
}

.wizard-step__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-500);
  transition: color var(--transition);
}

.wizard-step.is-active .wizard-step__dot {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(13, 133, 84, 0.35);
  transform: scale(1.08);
}

.wizard-step.is-active .wizard-step__label {
  color: var(--green-800);
}

.wizard-step.is-done .wizard-step__dot {
  background: var(--green-100);
  color: var(--green-800);
  border-color: var(--green-400);
}

.wizard-step.is-done .wizard-step__label {
  color: var(--green-700);
}

.wizard-panel {
  animation: stepIn 0.35s ease;
}

.wizard-panel[hidden] {
  display: none !important;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wizard-panel__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 118, 0.12);
  color: var(--green-700);
  margin-bottom: 1rem;
}

.wizard-panel__icon svg {
  width: 26px;
  height: 26px;
}

.wizard-panel__icon--gold {
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-500);
}

.wizard-panel__icon--dark {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  color: var(--green-100);
}

.wizard-panel__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--green-950);
  margin-bottom: 0.35rem;
}

.wizard-panel__desc {
  font-size: 0.925rem;
  color: var(--ink-500);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.field--last {
  margin-bottom: 0;
}

.order-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.order-preview__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.order-preview__value {
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-800);
}

.order-summary {
  background: linear-gradient(135deg, var(--green-950), var(--green-900));
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.order-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  opacity: 0.85;
}

.order-summary__row + .order-summary__row {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.order-summary__row--total {
  opacity: 1;
}

.order-summary__row--total span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.order-summary__row strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.order-summary__row--total strong {
  font-size: 1.35rem;
  color: var(--green-300);
}

.amounts--step {
  border: none;
  margin-bottom: 0;
}

.amounts--step .amount-chip span {
  flex-direction: column;
  gap: 0.1rem;
  padding: 1rem 0.5rem;
}

.amounts--step .amount-chip span small {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.payment-section--flat {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 0;
}

.wizard-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sand-200);
}

.wizard-actions .btn {
  flex: 1;
}

.wizard-actions .btn--ghost {
  flex: 0 0 auto;
  min-width: 100px;
}

.card-form__tabs {
  display: flex;
  gap: 0.5rem;
  padding: 0.35rem;
  background: var(--sand-100);
  border-radius: var(--radius-md);
  margin-bottom: 1.75rem;
}

.tab {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  border-radius: calc(var(--radius-md) - 4px);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-500);
  cursor: pointer;
  transition: all var(--transition);
}

.tab:hover {
  color: var(--ink-700);
}

.tab.active {
  background: var(--white);
  color: var(--green-800);
  box-shadow: var(--shadow-sm);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.field__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-700);
}

.field__input-wrap {
  position: relative;
}

.field__input-wrap input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  font-family: "DM Sans", monospace;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 2px solid var(--sand-200);
  border-radius: var(--radius-md);
  background: var(--sand-50);
  color: var(--ink-900);
  transition: all var(--transition);
}

.field__input-wrap input::placeholder {
  color: var(--ink-300);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.field__input-wrap input:focus {
  outline: none;
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(20, 184, 118, 0.12);
}

.field__input-wrap input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.field__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--ink-300);
  pointer-events: none;
}

.field__icon svg {
  width: 100%;
  height: 100%;
}

.field__hint {
  font-size: 0.8rem;
  color: var(--ink-500);
}

.field__plain,
.field__plain-in-icon {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--sand-200);
  border-radius: var(--radius-md);
  background: var(--sand-50);
  color: var(--ink-900);
  transition: all var(--transition);
}

.field__plain-in-icon {
  padding-left: 3rem;
  font-family: "DM Sans", monospace;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.field__plain::placeholder,
.field__plain-in-icon::placeholder {
  color: var(--ink-300);
  font-weight: 400;
}

.field__plain:focus,
.field__plain-in-icon:focus {
  outline: none;
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(20, 184, 118, 0.12);
}

.field__plain.error,
.field__plain-in-icon.error,
.field__input-wrap input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.field--half {
  margin-bottom: 0;
}

.payment-section {
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
}

.payment-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.payment-section__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-950);
}

.payment-section__cards {
  display: flex;
  gap: 0.35rem;
}

.payment-section__cards span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-500);
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: 4px;
  padding: 0.2rem 0.4rem;
}

.payment-section .field:last-child {
  margin-bottom: 0;
}

.field__error {
  font-size: 0.8rem;
  color: #dc2626;
  font-weight: 500;
}

.hidden {
  display: none !important;
}

.panel {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Amount chips */
.amounts {
  border: none;
  margin-bottom: 1.25rem;
}

.amounts__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 0.75rem;
}

.amounts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.amount-chip {
  cursor: pointer;
}

.amount-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.amount-chip span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: var(--sand-100);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-700);
  transition: all var(--transition);
}

.amount-chip input:checked + span {
  background: rgba(20, 184, 118, 0.1);
  border-color: var(--green-500);
  color: var(--green-800);
}

.amount-chip:hover span {
  border-color: var(--sand-200);
}

.custom-amount {
  margin-top: 0.75rem;
}

.custom-amount input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--sand-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
}

.custom-amount input:focus {
  outline: none;
  border-color: var(--green-500);
}

.card-form__disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--sand-200);
  font-size: 0.75rem;
  color: var(--ink-500);
  line-height: 1.5;
}

.card-form__disclaimer svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  color: var(--gold-500);
}

/* Form status / results */
.form-status {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sand-200);
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
}

.loader__ring {
  width: 40px;
  height: 40px;
  border: 3px solid var(--sand-200);
  border-top-color: var(--green-600);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader p {
  font-size: 0.9rem;
  color: var(--ink-500);
  font-weight: 500;
}

.result {
  animation: fadeIn 0.35s ease;
}

.result__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.result__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.result__badge--success {
  background: rgba(20, 184, 118, 0.12);
  color: var(--green-800);
}

.result__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--ink-300);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

.result__close:hover {
  color: var(--ink-700);
}

.result__card {
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--ink-500);
  margin-bottom: 1rem;
}

.result__balance {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.result__balance span {
  display: block;
  font-size: 0.8rem;
  opacity: 0.75;
  margin-bottom: 0.25rem;
}

.result__balance strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.result__meta {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.result__meta li {
  background: var(--sand-100);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}

.result__meta span {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-500);
  margin-bottom: 0.15rem;
}

.result__meta strong {
  font-size: 0.9rem;
  color: var(--ink-900);
}

.result__summary {
  font-size: 1rem;
  color: var(--ink-700);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.result__note {
  font-size: 0.8rem;
  color: var(--ink-500);
  text-align: center;
}

/* Trust section */
.trust {
  padding: 0 0 4rem;
}

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

.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(10, 107, 68, 0.06);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.trust-card__icon svg {
  width: 24px;
  height: 24px;
}

.trust-card__icon--green {
  background: rgba(20, 184, 118, 0.12);
  color: var(--green-700);
}

.trust-card__icon--gold {
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-500);
}

.trust-card__icon--teal {
  background: rgba(10, 107, 68, 0.1);
  color: var(--green-800);
}

.trust-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--green-950);
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--ink-500);
  line-height: 1.55;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--white);
  border-block: 1px solid var(--sand-200);
}

.section__head {
  text-align: center;
  margin-bottom: 3rem;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-600);
  margin-bottom: 0.75rem;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green-950);
  margin-bottom: 0.75rem;
}

.section__head p {
  color: var(--ink-500);
  max-width: 520px;
  margin-inline: auto;
}

.steps {
  list-style: none;
  display: grid;
  gap: 1.5rem;
  max-width: 640px;
  margin-inline: auto;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-200);
  transition: all var(--transition);
}

.step:hover {
  border-color: rgba(20, 184, 118, 0.3);
  box-shadow: var(--shadow-sm);
}

.step__num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-500);
  opacity: 0.6;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--green-950);
}

.step p {
  font-size: 0.9rem;
  color: var(--ink-500);
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.method {
  padding: 1.5rem;
  background: var(--sand-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-200);
  transition: all var(--transition);
}

.method:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.method h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-950);
  margin-bottom: 0.5rem;
}

.method__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-700);
  background: rgba(20, 184, 118, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.method p {
  font-size: 0.875rem;
  color: var(--ink-500);
  line-height: 1.55;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq__item summary {
  padding: 1.125rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--green-600);
  transition: transform var(--transition);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item summary:hover {
  background: var(--sand-50);
}

.faq__item p {
  padding: 0 1.25rem 1.125rem;
  font-size: 0.9rem;
  color: var(--ink-500);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: grid;
  gap: 2rem;
}

.footer .logo {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer .logo__icon {
  color: var(--green-400);
}

.footer__brand p {
  font-size: 0.875rem;
  max-width: 320px;
  line-height: 1.6;
}

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

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--green-400);
}

.footer__copy {
  font-size: 0.8rem;
  opacity: 0.5;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--green-900);
  color: var(--white);
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Mobile nav open */
body.nav-open .nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 72px 0 0;
  background: var(--sand-50);
  padding: 2rem;
  gap: 1.5rem;
  z-index: 99;
}

body.nav-open .nav a {
  font-size: 1.1rem;
}

body.nav-open .burger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

body.nav-open .burger span:nth-child(2) {
  opacity: 0;
}

body.nav-open .burger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__content {
    text-align: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__stats {
    justify-content: center;
  }

  .trust__grid {
    grid-template-columns: 1fr;
  }

  .methods-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav,
  .nav__cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero__stats {
    gap: 1.25rem;
  }

  .card-form {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
  }

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

  .wizard__steps {
    gap: 0.25rem;
  }

  .wizard-step__label {
    font-size: 0.65rem;
  }

  .wizard-actions {
    flex-direction: column-reverse;
  }

  .wizard-actions .btn--ghost {
    flex: 1;
    min-width: 0;
  }

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

  .section {
    padding: 3.5rem 0;
  }
}
