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

  [data-section] { position: relative; padding: 4rem 0; }

  /* Hero */
  [data-section="hero"] {
    display: flex;
    flex-direction: column;
    padding: 3rem 0 3.5rem;
    background: linear-gradient(160deg, var(--bg-secondary) 0%, var(--bg-primary) 65%);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  [data-section="hero"]::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 45%;
    height: 60%;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    opacity: 0.15;
    pointer-events: none;
  }
  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin: 0 0 1.5rem;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem 1rem;
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    background: var(--surface);
    color: var(--accent-gold-bright);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .02em;
  }
  .hero-title {
    max-width: 46rem;
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.01em;
  }
  .hero-title span {
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .hero-lead {
    max-width: 40rem;
    margin: 0 0 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
  }
  .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0 2.5rem;
  }
  .hero-stat {
    display: flex;
    flex-direction: column;
    min-width: 8rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.02);
  }
  .hero-stat strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-gold-bright);
  }
  .hero-stat span {
    font-size: .8rem;
    color: var(--text-secondary);
  }

  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 1rem 2.4rem;
    border: none;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-bright) 100%);
    box-shadow: 0 8px 30px rgba(220, 40, 40, 0.35);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(220, 40, 40, 0.5);
  }

  h2 {
    margin: 0 0 1.25rem;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--text-primary);
  }
  h3 {
    margin: 0 0 .6rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
  }
  p { color: var(--text-secondary); line-height: 1.75; }

  /* Cards grid */
  .cards-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }
  @media (min-width: 768px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
  }
  .card {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-deep);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  }
  .bg-dark { background: var(--surface); }
  .text-light { color: var(--text-primary); }
  .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    color: var(--accent-gold-bright);
    font-size: 1.3rem;
    font-weight: 800;
  }

  /* Timeline */
  .timeline {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    counter-reset: step;
  }
  .timeline-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform .25s ease;
  }
  .timeline-item:hover { transform: translateX(6px); }
  .timeline-num {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-bright) 100%);
    color: var(--bg-primary);
    font-weight: 800;
  }
  .timeline-text { color: var(--text-secondary); line-height: 1.6; padding-top: .2rem; }

  /* Table */
  .table-responsive { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-deep); }
  table { width: 100%; border-collapse: collapse; min-width: 480px; background: var(--surface); }
  thead th {
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-bright) 100%);
    color: var(--bg-primary);
    text-align: left;
    font-weight: 800;
  }
  tbody td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
  }
  tbody tr:last-child td { border-bottom: none; }
  tbody tr:hover { background: rgba(212, 175, 55, 0.06); }

  .highlight-box {
    padding: 1.5rem 1.75rem;
    margin-top: 1.5rem;
    border-left: 4px solid var(--accent-gold-bright);
    border-radius: var(--radius-md);
    background: var(--surface);
    color: var(--text-secondary);
  }

  /* Accordion */
  .accordion { display: flex; flex-direction: column; gap: 1rem; }
  .accordion-item {
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: var(--surface);
  }
  .accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.1rem 1.4rem;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
  }
  .accordion-header::after {
    content: "+";
    flex-shrink: 0;
    margin-left: 1rem;
    color: var(--accent-gold-bright);
    font-size: 1.3rem;
    transition: transform .3s ease;
  }
  .accordion-item.active .accordion-header::after { transform: rotate(45deg); }
  .accordion-body {
    max-height: 0;
    padding: 0 1.4rem;
    overflow: hidden;
    color: var(--text-secondary);
    line-height: 1.7;
    transition: max-height .35s ease, padding .35s ease;
  }
  .accordion-item.active .accordion-body {
    max-height: 20rem;
    padding: 0 1.4rem 1.25rem;
  }

  .final-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--surface) 100%);
    box-shadow: var(--shadow-deep);
  }
  @media (min-width: 768px) {
    .final-cta { flex-direction: row; align-items: center; justify-content: space-between; }
  }
  .final-cta p { margin: 0; max-width: 32rem; }