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

  :root {
    --vip-1: var(--bg-deep);
    --vip-2: var(--bg-surface);
    --vip-3: var(--bg-elevated);
    --vip-acc: var(--accent);
    --vip-acc-2: var(--accent-bright);
    --vip-glow: var(--accent-glow);
    --vip-sec: var(--secondary);
    --vip-text: var(--text-primary);
    --vip-mute: var(--text-muted);
    --vip-border: var(--border-subtle);
    --vip-shadow: var(--shadow-deep);
    --vip-grad: var(--gradient-hero);
    --vip-card-grad: var(--gradient-card);
  }

  [data-section="vip-hero"] {
    position: relative;
    display: block;
    margin: 0 0 4rem;
    padding: 5rem 2rem;
    background: var(--vip-grad);
    border: 1px solid var(--vip-border);
    border-radius: 28px;
    box-shadow: var(--vip-shadow);
    overflow: hidden;
  }

  [data-section="vip-hero"]::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, var(--vip-glow) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
  }

  [data-section="vip-hero"] > * { position: relative; z-index: 1; }

  .vip-eyebrow {
    display: inline-block;
    margin-bottom: 1.25rem;
    padding: 0.5rem 1.1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--vip-acc-2);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--vip-border);
    border-radius: 999px;
  }

  .main-headline {
    margin: 0 0 1.25rem;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--vip-text);
  }

  .main-headline span {
    background: linear-gradient(120deg, var(--vip-acc), var(--vip-acc-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero-lead {
    max-width: 640px;
    margin: 0 0 2rem;
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--vip-text);
    opacity: 0.88;
  }

  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--vip-border);
  }

  .hero-trust-item {
    display: flex;
    flex-direction: column;
  }

  .hero-trust-item strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--vip-acc-2);
    line-height: 1;
  }

  .hero-trust-item span {
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: var(--vip-text);
    opacity: 0.7;
  }

  .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .section-block {
    margin: 4rem 0;
  }

  .section-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--vip-text);
  }

  .section-intro {
    max-width: 760px;
    margin: 0 0 2.5rem;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--vip-text);
    opacity: 0.82;
  }

  .benefit-card {
    position: relative;
    height: auto;
    margin-bottom: 1.5rem;
    padding: 2rem 1.75rem;
    background: var(--vip-card-grad);
    border: 1px solid var(--vip-border);
    border-radius: 18px;
    box-shadow: var(--vip-shadow);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
  }

  .benefit-card:hover {
    transform: translateY(-6px);
    border-color: var(--vip-acc);
    box-shadow: 0 20px 50px var(--vip-glow);
  }

  .benefit-card .num {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--vip-1);
    background: linear-gradient(120deg, var(--vip-acc), var(--vip-acc-2));
    border-radius: 6px;
  }

  .benefit-card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--vip-text);
  }

  .benefit-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--vip-text);
    opacity: 0.78;
  }

  .tier-timeline {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tier-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.25rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--vip-3);
    border: 1px solid var(--vip-border);
    border-left: 4px solid var(--vip-acc);
    border-radius: 14px;
    transition: transform 0.3s ease, border-left-color 0.3s ease;
  }

  .tier-row:hover {
    transform: translateX(6px);
    border-left-color: var(--vip-acc-2);
  }

  .tier-row[data-tier="5"] { border-left-color: var(--vip-acc-2); background: linear-gradient(120deg, var(--vip-3), rgba(0,0,0,0.2)); }

  .tier-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--vip-acc-2);
    background: var(--vip-1);
    border: 2px solid var(--vip-acc);
    border-radius: 50%;
  }

  .tier-body h4 {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--vip-text);
  }

  .tier-body p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--vip-text);
    opacity: 0.78;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    counter-reset: step;
  }

  .step-card {
    position: relative;
    padding: 1.75rem 1.5rem 1.75rem 4.5rem;
    background: var(--vip-2);
    border: 1px solid var(--vip-border);
    border-radius: 16px;
    transition: background 0.3s ease;
  }

  .step-card::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: 1.5rem;
    left: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--vip-1);
    background: linear-gradient(135deg, var(--vip-acc), var(--vip-acc-2));
    border-radius: 50%;
  }

  .step-card:hover { background: var(--vip-3); }

  .step-card h4 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--vip-text);
  }

  .step-card p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.55;
    color: var(--vip-text);
    opacity: 0.78;
  }

  .table-responsive {
    border: 1px solid var(--vip-border);
    border-radius: 16px;
    box-shadow: var(--vip-shadow);
    overflow: hidden;
  }

  .vip-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    background: var(--vip-2);
  }

  .vip-table thead {
    background: linear-gradient(120deg, var(--vip-acc), var(--vip-acc-2));
  }

  .vip-table th {
    padding: 1.1rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: left;
    color: var(--vip-1);
  }

  .vip-table td {
    padding: 1.1rem 1.25rem;
    font-size: 0.96rem;
    color: var(--vip-text);
    border-top: 1px solid var(--vip-border);
  }

  .vip-table tbody tr:hover { background: var(--vip-3); }

  .tier-badge {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--vip-acc-2);
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--vip-border);
    border-radius: 999px;
  }

  .duo-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .duo-card {
    padding: 2rem;
    background: var(--vip-card-grad);
    border: 1px solid var(--vip-border);
    border-radius: 18px;
    box-shadow: var(--vip-shadow);
  }

  .duo-card h3 {
    margin: 0 0 0.85rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--vip-text);
  }

  .duo-card p {
    margin: 0 0 1rem;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--vip-text);
    opacity: 0.82;
  }

  .duo-card.accent {
    background: linear-gradient(135deg, rgba(0,0,0,0.35), var(--vip-3));
    border-left: 4px solid var(--vip-acc-2);
  }

  .faq-wrap {
    display: grid;
    gap: 0.85rem;
  }

  .faq-item {
    padding: 1.25rem 1.5rem;
    background: var(--vip-2);
    border: 1px solid var(--vip-border);
    border-radius: 14px;
    transition: border-color 0.3s ease, background 0.3s ease;
  }

  .faq-item:hover {
    background: var(--vip-3);
    border-color: var(--vip-acc);
  }

  .faq-item summary {
    position: relative;
    padding-right: 2rem;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--vip-text);
    cursor: pointer;
    list-style: none;
  }

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

  .faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    color: var(--vip-acc-2);
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }

  .faq-item[open] summary::after { content: "−"; }

  .faq-item p {
    margin: 1rem 0 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--vip-text);
    opacity: 0.82;
  }

  .final-cta {
    margin: 4rem 0 2rem;
    padding: 3rem 2rem;
    text-align: center;
    background: var(--vip-grad);
    border: 1px solid var(--vip-border);
    border-radius: 24px;
    box-shadow: var(--vip-shadow);
  }

  .final-cta h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--vip-text);
  }

  .final-cta p {
    max-width: 560px;
    margin: 0 auto 2rem;
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--vip-text);
    opacity: 0.85;
  }

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

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