/* Homepage 2026 — modern conversion-focused layout */

/* ── Hero ── */
.hero--modern {
  min-height: min(92vh, 880px);
  display: flex;
  align-items: stretch;
  background: rgb(var(--ink));
  animation: none;
  isolation: isolate;
}
.hero--modern::before,
.hero--modern::after {
  display: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.04);
  animation: heroKenBurns 28s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, rgb(var(--ink) / 0.94) 0%, rgb(var(--ink) / 0.72) 42%, rgb(var(--brand-rgb) / 0.42) 68%, rgb(var(--ink) / 0.65) 100%),
    linear-gradient(to top, var(--surface-base) 0%, transparent 22%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(48px, 8vw, 88px);
  max-width: var(--container);
}
.hero-content {
  max-width: 640px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--surface-base);
  background: var(--gradient-brand);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin: 0 0 22px;
  box-shadow: 0 4px 20px rgb(var(--brand-rgb) / 0.35);
}
.hero-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--surface-base);
  opacity: 0.5;
}
.hero--modern h1 {
  color: #fff;
  font-size: clamp(44px, 6.8vw, 78px);
  font-weight: 400;
  letter-spacing: 0.055em;
  line-height: 0.98;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 0 6px 40px rgb(var(--ink) / 0.55);
}
.hero-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 560px;
}
.hero-lead strong { color: #fff; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.btn-accent {
  background: var(--gradient-accent);
  color: var(--heading);
  box-shadow: 0 8px 28px rgb(var(--accent-rgb) / 0.4);
}
.btn-accent:hover {
  color: var(--heading);
  box-shadow: 0 12px 36px rgb(var(--accent-rgb) / 0.5);
}
.btn-ghost {
  background: rgb(255 255 255 / 0.08);
  color: #fff;
  border: 1.5px solid rgb(255 255 255 / 0.28);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgb(255 255 255 / 0.14);
  color: #fff;
  border-color: rgb(255 255 255 / 0.45);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}
.hero-trust li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgb(var(--accent-rgb) / 0.22);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-panel {
  width: min(100%, 420px);
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgb(var(--ink) / 0.35);
}
.hero-panel h2 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 20px;
  opacity: 0.85;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-stat {
  background: rgb(255 255 255 / 0.06);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  border: 1px solid rgb(255 255 255 / 0.08);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 400;
  color: var(--brand-mid);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}
.hero-panel-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}
.hero-panel-cta a {
  color: var(--accent);
  font-weight: 700;
}

/* ── Trust strip ── */
.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -36px;
  padding-bottom: 8px;
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: linear-gradient(145deg, var(--surface-elevated), var(--surface-pure));
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  box-shadow: 0 24px 64px rgb(0 0 0 / 0.4), 0 0 0 1px rgb(var(--brand-rgb) / 0.12);
  border: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 4px 8px;
}
.trust-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgb(var(--brand-rgb) / 0.12);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid rgb(var(--brand-rgb) / 0.2);
}
.trust-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--heading);
}
.trust-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text);
}

/* ── Categories bento ── */
.section-categories {
  padding-top: 72px;
}
.categories-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.categories-bento .category-card {
  min-height: 260px;
  border-radius: var(--radius-lg);
}
.categories-bento .category-card--wide {
  grid-column: span 6;
  min-height: 300px;
}
.categories-bento .category-card--tall {
  grid-column: span 4;
}
.category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--gradient-accent);
  color: var(--heading);
  box-shadow: var(--shadow-sm);
}
.category-meta {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 24px;
  margin: 0;
}
.category-meta h3 {
  font-size: 20px;
  margin: 0 0 6px;
  color: #fff;
}
.category-meta h3 a { color: #fff; }
.category-meta h3 a:hover { color: var(--accent); }
.category-meta p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

/* ── Process steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: linear-gradient(160deg, var(--surface-elevated), var(--surface-pure));
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgb(0 0 0 / 0.25);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgb(0 0 0 / 0.35);
  border-color: rgb(var(--brand-rgb) / 0.3);
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 14px;
}
.process-step h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.process-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

/* ── Value showcase (redesigned) ── */
.value-showcase--modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-showcase--modern .value-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-pure);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.value-showcase--modern .value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.value-showcase--modern .value-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.value-showcase--modern .value-card-body {
  padding: 22px 24px 26px;
}
.value-showcase--modern .value-card-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.value-showcase--modern .value-card-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

/* ── Split feature ── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-split--reverse {
  direction: rtl;
}
.feature-split--reverse > * {
  direction: ltr;
}
.feature-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.feature-copy h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 16px;
}
.feature-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--gradient-brand);
}

/* ── Buyer priority sections (8 cards) ── */
.home-priority-section {
  padding-top: 72px;
  padding-bottom: 72px;
}
.home-priority-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.home-priority-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-elevated);
  border: 1px solid rgb(var(--brand-rgb) / 0.18);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.home-priority-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgb(0 0 0 / 0.35);
  border-color: rgb(var(--services-accent-rgb) / 0.35);
}
.home-priority-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  filter: saturate(1.04) contrast(1.03);
}
.home-priority-body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home-priority-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--surface-base);
  background: var(--gradient-brand);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  align-self: flex-start;
}
.home-priority-body h3 {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--services-accent-hover);
  margin: 0 0 10px;
  line-height: 1.3;
}
.home-priority-body p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  flex: 1;
}
.home-priority-body p strong {
  color: #fff;
}
.home-priority-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent) !important;
  text-decoration: none;
  margin-top: auto;
}
.home-priority-link:hover {
  color: #fff !important;
}
.home-priority-section--alt {
  background: linear-gradient(180deg, var(--surface-base) 0%, rgb(var(--brand-rgb) / 0.04) 50%, var(--surface-base) 100%);
}

/* ── CTA banner ── */
.cta-banner {
  background: linear-gradient(135deg, #0A1020 0%, #142848 40%, #1A3060 100%);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgb(var(--brand-rgb) / 0.2);
  box-shadow: 0 24px 64px rgb(0 0 0 / 0.4), inset 0 1px 0 rgb(255 255 255 / 0.05);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgb(var(--accent-rgb) / 0.18), transparent 45%),
    radial-gradient(circle at 85% 30%, rgb(255 255 255 / 0.08), transparent 40%);
  pointer-events: none;
}
.cta-banner .container {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 17px;
}
.cta-banner .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

/* ── Testimonials modern ── */
.testimonials-grid--modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonials-grid--modern .testimonial-card {
  background: var(--surface-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.testimonials-grid--modern .testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testimonials-grid--modern .stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonials-grid--modern h6 {
  margin: 16px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-strong);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-visual {
    justify-content: flex-start;
  }
  .hero-panel {
    width: 100%;
    max-width: 480px;
  }
  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-bento .category-card--wide,
  .categories-bento .category-card--tall {
    grid-column: span 6;
  }
  .process-grid,
  .value-showcase--modern,
  .testimonials-grid--modern,
  .home-priority-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-split--reverse {
    direction: ltr;
  }
}

@media (max-width: 640px) {
  .hero--modern {
    min-height: auto;
  }
  .trust-strip {
    margin-top: -20px;
  }
  .trust-strip-inner {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .categories-bento .category-card--wide,
  .categories-bento .category-card--tall {
    grid-column: span 12;
    min-height: 220px;
  }
  .process-grid,
  .value-showcase--modern,
  .testimonials-grid--modern {
    grid-template-columns: 1fr;
  }
  .home-priority-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg img {
    animation: none;
  }
}

/* ── Engine comparison grid ── */
.engine-compare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.engine-compare-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.engine-compare-card:hover {
  border-color: rgb(var(--accent-rgb) / 0.35);
  transform: translateY(-4px);
}
.engine-compare-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--surface-base);
  background: var(--gradient-accent);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  align-self: flex-start;
}
.engine-compare-card h3 {
  font-size: 20px;
  margin: 0 0 6px;
}
.engine-compare-card h3 a {
  color: #fff;
  text-decoration: none;
}
.engine-compare-card h3 a:hover { color: var(--accent); }
.engine-compare-models {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 16px;
}
.engine-compare-card ul {
  margin: 0 0 18px;
  padding: 0 0 0 18px;
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.engine-compare-card li { margin-bottom: 8px; }
.engine-compare-card strong { color: #fff; }
.engine-compare-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent) !important;
  text-decoration: none !important;
}
.engine-compare-link:hover { color: #fff !important; }

/* ── Order guide ── */
.order-guide {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}
.order-guide-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
}
.order-guide-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 4px 16px rgb(var(--brand-rgb) / 0.35);
}
.order-guide-step h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: #fff;
}
.order-guide-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}
.order-guide-step a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

/* ── Warranty grid ── */
.warranty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.warranty-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  border-top: 3px solid var(--accent);
}
.warranty-card h3 {
  font-size: 17px;
  margin: 0 0 12px;
  color: #fff;
}
.warranty-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}
.warranty-card a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Shipping regions ── */
.shipping-regions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.shipping-region {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}
.shipping-region h3 {
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--accent);
}
.shipping-region p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.shipping-note {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}
.shipping-note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1024px) {
  .engine-compare-grid,
  .warranty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .engine-compare-grid,
  .warranty-grid,
  .shipping-regions {
    grid-template-columns: 1fr;
  }
  .order-guide-step {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .order-guide-num {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* ── Payment methods ── */
.payment-section {
  background: linear-gradient(180deg, #0F1522 0%, #0B0F19 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}
.payment-method-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.payment-method-card:hover {
  border-color: rgb(var(--accent-rgb) / 0.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgb(0 0 0 / 0.35);
}
.payment-method-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #0A0E16;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.payment-method-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.payment-method-body {
  padding: 24px 22px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.payment-method-body h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--accent);
}
.payment-method-body p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}
.payment-method-body ul {
  margin: 0;
  padding: 0 0 0 18px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  flex: 1;
}
.payment-method-body li { margin-bottom: 6px; }
.payment-method-body strong { color: #fff; }
.payment-method-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.payment-footnote {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}
.payment-footnote a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1024px) {
  .payment-methods-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
