main {
      padding-top: 90px;
      width: 100%;
      max-width: 100vw;
      overflow-x: hidden;
    }
    
    section {
      padding: 5rem 0;
      position: relative;
      width: 100%;
      max-width: 100%;
    }
    
    .hero-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 8rem 0 6rem;
    }
    
    .hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at 30% 50%, rgba(139, 0, 255, 0.15) 0%, transparent 50%),
                  radial-gradient(circle at 70% 50%, rgba(0, 217, 255, 0.15) 0%, transparent 50%);
      will-change: transform;
      transform: translateZ(0);
      animation: heroGlow 20s ease-in-out infinite;
    }
    
    @keyframes heroGlow {
      0%, 100% { transform: translateZ(0) rotate(0deg); }
      50% { transform: translateZ(0) rotate(180deg); }
    }
    
    @media (prefers-reduced-motion: reduce) {
      .hero-section::before {
        animation: none;
      }
    }
    
    .hero-section .container {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 1100px;
    }
    
    .hero-section h1 {
      margin-bottom: 2rem;
      opacity: 1;
      transform: translateY(0);
      will-change: transform, opacity;
    }
    
    .hero-section p {
      font-size: 1.25rem;
      color: var(--text-secondary);
      max-width: 900px;
      margin: 0 auto 3rem;
      opacity: 1;
      transform: translateY(0);
    }
    
    .hero-section .cta-button {
      opacity: 1;
      transform: translateY(0);
    }
    
    @media (prefers-reduced-motion: no-preference) {
      .hero-section h1 {
        animation: fadeInUp 0.6s ease-out;
      }
      
      .hero-section p {
        animation: fadeInUp 0.6s ease-out 0.1s backwards;
      }
      
      .hero-section .cta-button {
        animation: fadeInUp 0.6s ease-out 0.2s backwards;
      }
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .stats-grid .feature-table {
      width: 100%;
      background: var(--dark-surface);
      border-radius: 24px;
      overflow-x: auto;
      overflow-y: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
      margin: 2rem 0;
    }
    
    .feature-table tbody tr {
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.3s ease;
    }
    
    .feature-table tbody tr:last-child {
      border-bottom: none;
    }
    
    .feature-table tbody tr:hover {
      background: rgba(0, 217, 255, 0.05);
    }
    
    .feature-table td {
      padding: 1.5rem 2rem;
      color: var(--text-secondary);
      vertical-align: middle;
    }
    
    .feature-table td:first-child {
      width: 40%;
      font-weight: 600;
      color: var(--primary-cyan);
    }
    
    .cards-grid-2 {
      background: var(--dark-surface-light);
    }
    
    .cards-grid-2 .container > div,
    .cards-grid-2 .container > article {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin: 2rem 0;
    }
    
    .cards-grid-2 .card {
      padding: 1.5rem;
    }
    
    .cards-grid-3 .bonus-card {
      background: var(--dark-surface);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      padding: 2.5rem;
      margin: 2rem 0;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .cards-grid-3 .bonus-card:hover {
      transform: translateY(-8px);
      border-color: rgba(255, 0, 107, 0.3);
      box-shadow: 0 20px 60px rgba(255, 0, 107, 0.2);
    }
    
    .tabs-container {
      background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface-light) 100%);
    }
    
    .tab-panel {
      background: var(--dark-surface);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      padding: 3rem;
      margin: 2rem 0;
    }
    
    .feature-blocks {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin: 2rem 0;
    }
    
    .feature-block {
      background: var(--dark-surface-light);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      padding: 2rem;
      transition: all 0.3s ease;
    }
    
    .feature-block:hover {
      border-color: rgba(139, 0, 255, 0.3);
      transform: translateY(-5px);
    }
    
    .feature-list,
    .checklist,
    .highlight-list {
      list-style: none;
      padding: 0;
    }
    
    .feature-list li,
    .checklist li,
    .highlight-list li {
      padding-left: 2rem;
      position: relative;
      margin-bottom: 1rem;
    }
    
    .feature-list li::before,
    .checklist li::before,
    .highlight-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      width: 12px;
      height: 12px;
      background: var(--gradient-1);
      border-radius: 50%;
    }
    
    .checklist li::before {
      content: '✓';
      background: none;
      color: var(--accent-lime);
      font-weight: bold;
      font-size: 1.25rem;
      top: 0;
    }
    
    .timeline-vertical {
      position: relative;
      padding-left: 3rem;
    }
    
    .timeline-vertical::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--gradient-2);
      border-radius: 2px;
    }
    
    .timeline-item {
      background: var(--dark-surface);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      padding: 2.5rem;
      margin-bottom: 2rem;
      position: relative;
      transition: all 0.3s ease;
    }
    
    .timeline-item::before {
      content: '';
      position: absolute;
      left: -3.75rem;
      top: 2.5rem;
      width: 20px;
      height: 20px;
      background: var(--primary-magenta);
      border: 3px solid var(--dark-bg);
      border-radius: 50%;
      box-shadow: var(--glow-magenta);
    }
    
    .timeline-item:hover {
      transform: translateX(10px);
      border-color: rgba(255, 0, 107, 0.3);
    }
    
    .numbered-list {
      counter-reset: item;
      list-style: none;
      padding: 0;
    }
    
    .numbered-list li {
      counter-increment: item;
      padding-left: 3rem;
      position: relative;
      margin-bottom: 1.5rem;
    }
    
    .numbered-list li::before {
      content: counter(item);
      position: absolute;
      left: 0;
      top: 0;
      width: 36px;
      height: 36px;
      background: var(--gradient-1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-family: 'Sora', sans-serif;
      color: var(--dark-bg);
      box-shadow: var(--glow-cyan);
    }
    
    .comparison-table {
      width: 100%;
      background: var(--dark-surface);
      border-radius: 24px;
      overflow-x: auto;
      overflow-y: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
      margin: 2rem 0;
    }
    
    .comparison-table thead {
      background: var(--dark-surface-light);
    }
    
    .comparison-table th {
      padding: 1.5rem 1.5rem;
      color: var(--primary-cyan);
      font-weight: 600;
      text-align: left;
      border-bottom: 2px solid rgba(0, 217, 255, 0.2);
    }
    
    .comparison-table tbody tr {
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.3s ease;
    }
    
    .comparison-table tbody tr:hover {
      background: rgba(0, 217, 255, 0.05);
    }
    
    .comparison-table td {
      padding: 1.5rem 1.5rem;
      color: var(--text-secondary);
    }
    
    .comparison-table td:first-child {
      font-weight: 600;
      color: var(--text-primary);
    }
    
    .info-card {
      background: var(--dark-surface);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      padding: 2.5rem;
      margin: 2rem 0;
      transition: all 0.3s ease;
    }
    
    .info-card:hover {
      border-color: rgba(139, 0, 255, 0.3);
      box-shadow: 0 10px 40px rgba(139, 0, 255, 0.15);
    }
    
    .accordion {
      background: var(--dark-surface-light);
    }
    
    .accordion-item {
      background: var(--dark-surface);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      margin-bottom: 1.5rem;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    
    .accordion-item:hover {
      border-color: rgba(0, 217, 255, 0.3);
    }
    
    .accordion-header {
      margin: 0;
    }
    
    .accordion-header button {
      width: 100%;
      background: none;
      border: none;
      padding: 1.75rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      color: var(--text-primary);
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 1.125rem;
      text-align: left;
      transition: all 0.3s ease;
    }
    
    .accordion-header button:hover {
      color: var(--primary-cyan);
    }
    
    .accordion-header .icon {
      width: 24px;
      height: 24px;
      position: relative;
      transition: transform 0.3s ease;
      flex-shrink: 0;
      margin-left: 1rem;
    }
    
    .accordion-header .icon::before,
    .accordion-header .icon::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      background: var(--primary-cyan);
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    
    .accordion-header .icon::before {
      width: 16px;
      height: 3px;
      transform: translate(-50%, -50%);
    }
    
    .accordion-header .icon::after {
      width: 3px;
      height: 16px;
      transform: translate(-50%, -50%);
    }
    
    .accordion-header button[aria-expanded="true"] .icon {
      transform: rotate(180deg);
    }
    
    .accordion-header button[aria-expanded="true"] .icon::after {
      opacity: 0;
    }
    
    .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      padding: 0;
    }
    
    .accordion-body.active {
      max-height: 1000px;
      padding: 0;
    }
    
    .accordion-body p {
      padding: 0 2rem 1.75rem;
      margin: 0;
    }
    
    .cta-section {
      background: var(--dark-surface);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      text-align: center;
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }
    
    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at 50% 50%, rgba(255, 0, 107, 0.1) 0%, transparent 50%);
      will-change: transform;
      transform: translateZ(0);
      animation: ctaGlow 15s ease-in-out infinite;
    }
    
    @keyframes ctaGlow {
      0%, 100% { transform: translateZ(0) scale(1); }
      50% { transform: translateZ(0) scale(1.2); }
    }
    
    @media (prefers-reduced-motion: reduce) {
      .cta-section::before {
        animation: none;
      }
    }
    
    .cta-section .container {
      position: relative;
      z-index: 1;
    }
    
    .cta-section h2 {
      margin-bottom: 1.5rem;
    }
    
    .cta-section h2::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .cta-section p {
      font-size: 1.25rem;
      max-width: 700px;
      margin: 0 auto 2.5rem;
    }
    
    @media (max-width: 991px) {
      section {
        padding: 3rem 0;
      }
      
      .hero-section {
        min-height: auto;
      }
      
      .hero-section .container {
        padding-top: 4rem;
        padding-bottom: 4rem;
      }
      
      .feature-table td {
        padding: 1.25rem 1.5rem;
      }
      
      .tab-panel {
        padding: 2rem;
      }
      
      .timeline-vertical {
        padding-left: 2rem;
      }
      
      .timeline-item {
        padding: 2rem;
      }
      
      .timeline-item::before {
        left: -3rem;
      }
      
      .cta-section {
        padding: 4rem 0;
      }
    }
    
    @media (max-width: 767px) {
      .hero-section::before,
      .cta-section::before {
        animation: none !important;
      }
      
      .hero-section h1,
      .hero-section p,
      .hero-section .cta-button {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
      
      html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
      }
      
      main, section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
      }
      
      .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
      }
      
      h1 {
        font-size: 2.5rem;
      }
      
      
      h2 {
        font-size: 2rem;
      }
      
      .hero-section .container {
        padding-top: 3rem;
      }
      
      .hero-section p {
        font-size: 1.125rem;
      }
      
      img[style*="height: 450px"] {
        height: 250px !important;
      }
      
      .cta-button {
        padding: 16px 40px;
        font-size: 1rem;
      }
      
      .feature-table td {
        display: block;
        padding: 1rem 1.5rem;
      }
      
      .feature-table td:first-child {
        width: 100%;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }
      
      .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        font-size: 0.875rem;
      }
      
      .comparison-table thead,
      .comparison-table tbody {
        display: table;
        min-width: 600px;
        width: 100%;
      }
      
      .comparison-table th,
      .comparison-table td {
        padding: 1rem 1rem;
        white-space: nowrap;
      }
      
      .tab-panel,
      .info-card,
      .timeline-item {
        padding: 1.5rem;
      }
      
      .numbered-list li {
        padding-left: 2.5rem;
      }
      
      .numbered-list li::before {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
      }
      
      .timeline-vertical {
        padding-left: 1.5rem;
      }
      
      .timeline-item::before {
        left: -2.5rem;
        width: 16px;
        height: 16px;
      }
    }
    
    @media (max-width: 479px) {
      .feature-blocks,
      .cards-grid-2 .container > div,
      .cards-grid-2 .container > article {
        grid-template-columns: 1fr;
      }
      
      .comparison-table th,
      .comparison-table td {
        padding: 0.875rem 0.75rem;
        font-size: 0.8125rem;
      }
    }