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

  .bonuses-page {
    color: var(--color-neutral-100);
    font-family: inherit;
  }

  .bonuses-hero {
    position: relative;
    padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 4vw, 3rem);
    margin-bottom: clamp(3rem, 6vw, 5rem);
    border-radius: var(--radius-xl);
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    overflow: hidden;
  }

  .bonuses-hero::before {
    content: "";
    position: absolute;
    top: -5%;
    right: -5%;
    width: 50%;
    height: 80%;
    background: var(--gradient-glow);
    opacity: 0.35;
    filter: blur(80px);
    pointer-events: none;
  }

  .bonuses-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    position: relative;
    z-index: 1;
  }

  .bonuses-hero__badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-accent-glow);
    animation: pulse 2s ease-in-out infinite;
  }

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

  .bonuses-hero__title {
    position: relative;
    z-index: 1;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin: 0 0 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .bonuses-hero__lead {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 0 2rem;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.65;
    color: var(--color-neutral-200);
  }

  .bonuses-hero__stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
  }

  .bonuses-hero__stat {
    padding: 1.25rem;
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
  }

  .bonuses-hero__stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
  }

  .bonuses-hero__stat-label {
    font-size: 0.8rem;
    color: var(--color-neutral-300);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .bonuses-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #0a0a0a;
    background: var(--gradient-brand);
    border-radius: var(--radius-md);
    text-decoration: none;
    box-shadow: var(--shadow-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
  }

  .bonuses-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--color-accent-glow);
  }

  .bonuses-hero__cta::after {
    content: "→";
    transition: transform 0.3s ease;
  }

  .bonuses-hero__cta:hover::after {
    transform: translateX(4px);
  }

  .bonuses-section {
    margin-bottom: clamp(3rem, 6vw, 5rem);
  }

  .bonuses-section__title {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--color-neutral-100);
    letter-spacing: -0.015em;
  }

  .bonuses-section__title-accent {
    color: var(--color-accent);
  }

  .bonuses-section__intro {
    max-width: 760px;
    margin: 0 0 2.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-neutral-300);
  }

  .pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .pillar-card {
    padding: 1.75rem;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
  }

  .pillar-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-card);
  }

  .pillar-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-accent);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
  }

  .pillar-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--color-neutral-100);
  }

  .pillar-card__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-neutral-300);
    margin: 0;
  }

  .bonus-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .bonus-type {
    padding: 2rem;
    background: linear-gradient(145deg, var(--color-bg-secondary), var(--color-bg-tertiary));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
  }

  .bonus-type:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  }

  .bonus-type__label {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    margin-bottom: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: var(--color-accent-glow);
    border-radius: var(--radius-sm);
  }

  .bonus-type__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--color-neutral-100);
  }

  .bonus-type__text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-neutral-200);
    margin: 0;
  }

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

  .bonus-banner {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
  }

  .bonus-banner img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    transition: transform 0.4s ease;
  }

  .bonus-banner img:hover {
    transform: scale(1.02);
  }

  @media (max-width: 600px) {
    .bonus-banners { grid-template-columns: 1fr; }
  }

  .steps-timeline {
    position: relative;
    padding-left: 2rem;
    margin: 0;
    list-style: none;
  }

  .steps-timeline::before {
    content: "";
    position: absolute;
    top: 0.5rem;
    bottom: 0.5rem;
    left: 14px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-accent), transparent);
  }

  .steps-timeline__item {
    position: relative;
    padding: 0 0 1.75rem 1.5rem;
    counter-increment: step;
  }

  .steps-timeline__item:last-child {
    padding-bottom: 0;
  }

  .steps-timeline__item::before {
    content: counter(step);
    position: absolute;
    top: 0;
    left: -2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #0a0a0a;
    background: var(--gradient-brand);
    border-radius: 50%;
    box-shadow: 0 0 16px var(--color-accent-glow);
  }

  .steps-timeline {
    counter-reset: step;
  }

  .steps-timeline__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: var(--color-neutral-100);
  }

  .steps-timeline__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-neutral-300);
    margin: 0;
  }

  .table-responsive {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
  }

  .terms-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg-secondary);
  }

  .terms-table th,
  .terms-table td {
    padding: 1.1rem 1.5rem;
    text-align: left;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--color-border);
  }

  .terms-table th {
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--color-accent);
    background: rgba(0,0,0,0.25);
  }

  .terms-table td {
    color: var(--color-neutral-200);
  }

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

  .terms-table tr:hover td {
    background: rgba(255,255,255,0.02);
  }

  .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .faq-item {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s ease;
  }

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

  .faq-item__question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-neutral-100);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .faq-item__question::-webkit-details-marker {
    display: none;
  }

  .faq-item__question::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-accent);
    transition: transform 0.3s ease;
  }

  .faq-item[open] .faq-item__question::after {
    transform: rotate(45deg);
  }

  .faq-item__answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-neutral-300);
    margin: 0;
  }

  .final-cta {
    margin-top: 4rem;
    padding: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
  }

  .final-cta::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    transform: translate(-50%, -50%);
    background: var(--gradient-glow);
    opacity: 0.25;
    filter: blur(60px);
    pointer-events: none;
  }

  .final-cta__title {
    position: relative;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--color-neutral-100);
  }

  .final-cta__text {
    position: relative;
    max-width: 540px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-neutral-200);
  }

  .final-cta__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #0a0a0a;
    background: var(--gradient-brand);
    border-radius: var(--radius-md);
    text-decoration: none;
    box-shadow: var(--shadow-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .final-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px var(--color-accent-glow);
  }

  @media (max-width: 768px) {
    .bonuses-hero { padding: 2.5rem 1.5rem; }
    .bonus-type { padding: 1.5rem; }
    .terms-table th,
    .terms-table td { padding: 0.9rem 1rem; font-size: 0.9rem; }
  }