/* offerName — minimal exchange aesthetic, green action palette */

:root {
  --bg: #f8faf9;
  --surface: #ffffff;
  --surface-2: #f1f5f3;
  --border: #e2e8e6;
  --border-strong: #cbd5d1;

  --text: #0f172a;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;

  --accent: #0891b2;
  --accent-hover: #0e7490;
  --accent-light: #cffafe;
  --accent-glow: rgba(8, 145, 178, 0.14);

  --dark: #0c1222;
  --dark-surface: #151d2e;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 4px 24px rgba(15, 23, 42, 0.08);

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --container: 1140px;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

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

/* ── Typography ── */
h1, h2, h3, h4, p { margin: 0; }

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.text-accent { color: var(--accent); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px var(--accent-glow);
}

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

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

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
}

.btn-ghost:hover { color: var(--accent); }

.btn-sm { padding: 0.625rem 1.125rem; font-size: 0.875rem; }
.btn-block { width: 100%; }

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.logo-mark { color: var(--accent); flex-shrink: 0; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a.is-active { color: var(--accent); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.nav-mobile[hidden] { display: none; }

.nav-mobile a {
  padding: 0.75rem 0.5rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
}

.nav-mobile a:hover { color: var(--accent); background: var(--accent-light); }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
}

/* ── Hero ── */
.hero {
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1fr 400px; gap: 4rem; }
}

.hero-content { position: relative; }

.hero h1 { margin-bottom: 1.25rem; }

.hero .lead { margin-bottom: 2rem; max-width: 540px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.badge svg { width: 14px; height: 14px; color: var(--accent); }

/* ── Lead form card ── */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}

.form-card-accent {
  border-color: var(--accent);
  border-width: 1.5px;
  box-shadow: var(--shadow-lg), 0 0 0 4px var(--accent-glow);
}

.form-heading {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.field { display: flex; flex-direction: column; gap: 0.375rem; }
.field-full { grid-column: 1 / -1; }

.field-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.field-error {
  font-size: 0.8125rem;
  color: #ef4444;
  line-height: 1.4;
  min-height: 1.15em;
}

.field-error.hide { display: none; }

.field.is-invalid .input {
  border-color: #ef4444;
  box-shadow: 0 0 0 1px #ef4444;
}

.field.is-invalid .iti__tel-input {
  border-color: #ef4444 !important;
}

.input {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

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

.form-legal {
  margin-top: 0.875rem;
  font-size: 0.75rem;
  color: var(--text-subtle);
  line-height: 1.5;
}

.form-legal a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Stats bar ── */
.stats {
  padding: 2rem 0;
  border-block: 1px solid var(--border);
  background: var(--surface);
}

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

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item { text-align: center; }

.stat-value {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.stat-value .unit { color: var(--accent); }

.stat-label {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── Sections ── */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }

.section-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-header.centered {
  margin-inline: auto;
  text-align: center;
}

.section-header .eyebrow { margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 1rem; }

/* ── Feature cards ── */
.features-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 10px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9375rem; color: var(--text-muted); }

/* ── Split section ── */
.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .split { grid-template-columns: 1fr 1fr; }
}

/* ── Exchange panel (dark) ── */
.exchange-panel {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: #e2e8f0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.exchange-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.exchange-panel-header span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
}

.live-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.ticker-list { display: flex; flex-direction: column; gap: 0.75rem; }

.ticker-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--dark-surface);
  border-radius: 10px;
  font-size: 0.875rem;
}

.ticker-symbol { font-weight: 600; }
.ticker-pair { font-size: 0.75rem; color: var(--text-subtle); }

.ticker-price { font-weight: 600; font-variant-numeric: tabular-nums; text-align: right; }
.ticker-change { font-size: 0.8125rem; font-weight: 600; text-align: right; }
.ticker-change.up { color: #34d399; }
.ticker-change.down { color: #f87171; }

/* ── Steps ── */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  position: relative;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  counter-increment: step;
}

.step-card::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 8px;
}

.step-card h3 { margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9375rem; color: var(--text-muted); }

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

.review-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.review-stars { color: #fbbf24; font-size: 0.875rem; letter-spacing: 2px; margin-bottom: 0.75rem; }

.review-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8125rem;
  border-radius: 10px;
}

.review-name { font-weight: 600; font-size: 0.875rem; }
.review-role { font-size: 0.8125rem; color: var(--text-subtle); }

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

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: none;
  background: none;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s;
}

.faq-trigger:hover,
.faq-item.is-open .faq-trigger { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s;
}

.faq-icon::before { width: 14px; height: 2px; top: 11px; left: 5px; }
.faq-icon::after { width: 2px; height: 14px; top: 5px; left: 11px; }

.faq-item.is-open .faq-icon::after { transform: rotate(90deg); }

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-content-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Specs table ── */
.specs-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}

.specs-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1rem;
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
  font-size: 0.9375rem;
  transition: background 0.15s;
}

.specs-row:last-child { border-bottom: none; }

.specs-row:hover { background: var(--surface-2); }

.specs-label { font-weight: 600; display: flex; align-items: center; gap: 0.5rem; }
.specs-value { color: var(--text-muted); }

.specs-row-highlight {
  background: var(--accent-light);
  border-bottom: none;
}

.specs-row-highlight .specs-value { color: var(--text); }

/* ── Trust badge ── */
.trust-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.trust-score {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.trust-stars { color: #fbbf24; letter-spacing: 3px; }
.trust-meta { font-size: 0.875rem; color: var(--text-muted); }

.trust-badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
}

/* ── CTA band ── */
.cta-band {
  padding: 4rem 0;
  background: var(--dark);
  color: #e2e8f0;
}

.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band .lead { color: #94a3b8; margin-bottom: 2rem; }

.cta-band-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 960px) {
  .cta-band-grid { grid-template-columns: 1fr 380px; }
}

/* ── Page hero (subpages) ── */
.page-hero {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 0.75rem; }

/* ── Legal / prose ── */
.prose { max-width: 720px; }
.prose h2 { font-size: 1.375rem; margin: 2rem 0 0.75rem; }
.prose p, .prose li { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.7; }
.prose ul { padding-left: 1.25rem; }
.prose li { margin-bottom: 0.5rem; }

/* ── Footer ── */
.site-footer {
  padding: 3rem 0 2rem;
  background: var(--dark);
  color: #94a3b8;
  margin-top: 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.logo-footer .logo-mark { color: var(--accent); }
.logo-footer .logo-text { color: #fff; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-nav a:hover { color: #fff; }

.footer-risk p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8125rem;
}

.footer-bottom a:hover { color: var(--accent); }

/* ── Payment icons ── */
.payment-icons { margin-top: 1rem; }

.payment-icons-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 0.625rem;
}

.payment-icons-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.625rem 0.875rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.payment-icons-list img {
  height: 28px;
  width: auto;
  max-width: 52px;
  object-fit: contain;
  filter: grayscale(0.1);
  opacity: 0.92;
  transition: opacity 0.2s;
}

.payment-icons-list li:hover img { opacity: 1; }

.payment-icons--compact { margin-top: 0.875rem; }

.payment-icons--compact .payment-icons-list {
  justify-content: center;
  gap: 0.5rem 0.625rem;
}

.payment-icons--compact .payment-icons-list img {
  height: 22px;
  max-width: 40px;
}

.payment-section {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

/* ── Platform showcase (competitor-style) ── */
.platform-section {
  background: var(--bg);
  border-bottom: none;
  padding: 2rem 0 2.5rem;
}

.platform-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.platform-copy .platform-points {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.625rem;
}

.platform-copy .platform-points li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.platform-copy .platform-points li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.platform-figure {
  margin: 0;
  text-align: center;
}

.platform-figure-media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: transparent;
}

.platform-figure-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  filter: drop-shadow(0 18px 32px rgba(15, 23, 42, 0.12));
}

.platform-figure-caption {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-subtle);
  line-height: 1.5;
}

/* Mobile: phone only, like competitor — between stats and features */
@media (max-width: 767px) {
  .platform-section {
    padding: 1.25rem 0 2rem;
  }

  .platform-layout {
    gap: 0;
  }

  .platform-copy {
    display: none;
  }

  .platform-figure-img {
    width: min(72vw, 300px);
    max-height: none;
  }

  .platform-figure-caption {
    display: none;
  }
}

@media (min-width: 768px) {
  .platform-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .platform-figure { order: 2; }
  .platform-copy { order: 1; }

  .platform-figure-img {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
  }
}

@media (min-width: 960px) {
  .platform-section { padding: 3rem 0 4rem; }

  .platform-figure-img {
    max-width: 440px;
  }
}

/* ── Partners grid ── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
}

.partners-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 72px;
}

.partners-grid-item img {
  width: 100%;
  max-width: 130px;
  height: auto;
  object-fit: contain;
}

/* ── Partners strip (legacy) ── */
.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  opacity: 0.45;
}

.partner-logo {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Thanks page ── */
.thanks-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.thanks-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  font-size: 1.75rem;
}

.thanks-lead {
  margin: 1rem 0 0;
  line-height: 1.7;
}
