html, body { overflow-x: hidden; max-width: 100vw; }

  .payments-hero {
    padding: 64px 0 48px;
    text-align: center;
  }

  .payments-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .payments-hero h1 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .payments-hero .hero-lead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 32px;
    line-height: 1.7;
  }

  .payment-method-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
  }

  .method-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--surface-card);
    border: 1px solid var(--border-card);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
  }

  .method-badge:hover {
    border-color: var(--accent);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
  }

  .method-badge .badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
  }

  /* Section common */
  .section-block {
    padding: 52px 0;
  }

  .section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
  }

  .section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
  }

  /* Table styles */
  .payments-table-wrap {
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-card);
  }

  .payments-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
  }

  .payments-table thead tr {
    background: var(--surface-raised);
  }

  .payments-table thead th {
    padding: 14px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-card);
    text-align: left;
  }

  .payments-table tbody tr {
    background: var(--surface-card);
    transition: background 0.18s;
  }

  .payments-table tbody tr:nth-child(even) {
    background: color-mix(in srgb, var(--surface-raised) 60%, var(--surface-card));
  }

  .payments-table tbody tr:hover {
    background: color-mix(in srgb, var(--accent) 8%, var(--surface-card));
  }

  .payments-table tbody td {
    padding: 13px 18px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-subtle);
  }

  .payments-table tbody tr:last-child td {
    border-bottom: none;
  }

  .payments-table .method-name {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .method-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--surface-raised);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--accent);
    border: 1px solid var(--border-card);
    flex-shrink: 0;
  }

  .speed-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
  }

  .speed-instant {
    background: color-mix(in srgb, #22c55e 15%, transparent);
    color: #22c55e;
    border: 1px solid color-mix(in srgb, #22c55e 30%, transparent);
  }

  .speed-fast {
    background: color-mix(in srgb, var(--gold) 15%, transparent);
    color: var(--gold);
    border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  }

  .speed-medium {
    background: color-mix(in srgb, #f97316 15%, transparent);
    color: #f97316;
    border: 1px solid color-mix(in srgb, #f97316 30%, transparent);
  }

  /* Currency section */
  .currency-section {
    padding: 52px 0;
  }

  .currency-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
  }

  .currency-card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--surface-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    min-width: 130px;
  }

  .currency-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
  }

  .currency-symbol {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    background: var(--accent-gradient);
    color: #fff;
    flex-shrink: 0;
  }

  .currency-info strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
  }

  .currency-info span {
    font-size: 0.75rem;
    color: var(--text-secondary);
  }

  /* FAQ section */
  .faq-section {
    padding: 52px 0;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }

  .faq-item {
    background: var(--surface-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: border-color 0.2s;
  }

  .faq-item.is-open {
    border-color: var(--accent);
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
  }

  .faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
  }

  .faq-toggle-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-raised);
    border: 1px solid var(--border-subtle);
    flex-shrink: 0;
    transition: var(--transition);
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 700;
  }

  .faq-item.is-open .faq-toggle-icon {
    background: var(--accent);
    color: #fff;
    transform: rotate(45deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-item.is-open .faq-answer {
    max-height: 400px;
  }

  .faq-answer-inner {
    padding: 0 24px 22px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .faq-answer-inner a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
  }

  .faq-answer-inner a:hover {
    text-decoration: underline;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 52px 0 64px;
  }

  .cta-banner-inner {
    background: var(--surface-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
  }

  .cta-banner-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
  }

  .cta-banner-inner h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
  }

  .cta-banner-inner p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Trust row */
  .trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
  }

  .trust-item .trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
  }

  /* Divider */
  .section-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 0;
  }

  @media (max-width: 768px) {
    .payments-table thead th:nth-child(3),
    .payments-table tbody td:nth-child(3) {
      display: none;
    }

    .currency-grid {
      gap: 10px;
    }

    .currency-card {
      min-width: 110px;
      padding: 12px 16px;
    }

    .cta-banner-inner {
      padding: 36px 24px;
    }

    .faq-question {
      padding: 16px 18px;
    }

    .faq-answer-inner {
      padding: 0 18px 18px;
    }
  }

  @media (max-width: 480px) {
    .payments-table thead th:nth-child(2),
    .payments-table tbody td:nth-child(2) {
      display: none;
    }
  }