body {
      font-family: 'Roboto', sans-serif;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Poppins', sans-serif;
    }

main {
      margin-top: 100px;
    }

    section {
      padding: 80px 0;
      position: relative;
    }

    section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    }

    .hero-section {
      min-height: 70vh;
      display: flex;
      align-items: center;
      background: radial-gradient(ellipse at top, rgba(255, 0, 102, 0.15), transparent 50%),
                  radial-gradient(ellipse at bottom, rgba(0, 217, 255, 0.15), transparent 50%);
      position: relative;
      overflow: hidden;
      padding: 120px 0;
    }

    .hero-section::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: min(600px, 100vw);
      height: min(600px, 100vw);
      background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 70%);
      transform: translate(-50%, -50%);
      animation: pulse 8s ease-in-out infinite;
      pointer-events: none;
    }

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

    .hero-section .container {
      position: relative;
      z-index: 1;
    }

    .hero-section h1 {
    }

    .hero-section p {
      font-size: 1.2rem;
      max-width: 800px;
    }

    .hero-section .btn {
    }

    .info-card {
      background: linear-gradient(135deg, rgba(26, 31, 58, 0.8), rgba(10, 14, 39, 0.9));
      backdrop-filter: blur(10px);
      border-radius: 32px;
      padding: 60px 0;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .info-card table {
      width: 100%;
      max-width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      margin: 40px 0;
      background: rgba(10, 14, 39, 0.5);
      border-radius: 16px;
      overflow: hidden;
      table-layout: auto;
    }

    .info-card thead {
      background: var(--gradient-primary);
    }

    .info-card th {
      padding: 20px;
      text-align: left;
      color: white;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .info-card td {
      padding: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      color: var(--text);
      font-size: 1.05rem;
    }

    .info-card tbody tr {
      transition: background 0.3s ease;
    }

    .info-card tbody tr:hover {
      background: rgba(255, 0, 102, 0.05);
    }

    .info-card tbody tr:last-child td {
      border-bottom: none;
    }

    .timeline h3 {
      margin-top: 3rem;
      padding-left: 24px;
      border-left: 4px solid var(--primary);
    }

    .timeline ul {
      list-style: none;
      padding-left: 40px;
      position: relative;
    }

    .timeline ul::before {
      content: '';
      position: absolute;
      left: 8px;
      top: 8px;
      bottom: 8px;
      width: 2px;
      background: linear-gradient(180deg, var(--primary), var(--secondary));
    }

    .timeline li {
      position: relative;
      padding-left: 40px;
      margin-bottom: 24px;
      color: var(--text);
      font-size: 1.05rem;
    }

    .timeline li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      width: 16px;
      height: 16px;
      background: var(--gradient-primary);
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(255, 0, 102, 0.2);
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
      margin-top: 48px;
    }

    .feature-item {
      background: rgba(26, 31, 58, 0.6);
      backdrop-filter: blur(10px);
      padding: 32px;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.4s ease;
      position: relative;
    }

    .feature-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gradient-secondary);
      border-radius: 24px 24px 0 0;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .feature-item:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: var(--secondary);
    }

    .feature-item:hover::before {
      opacity: 1;
    }

    .feature-item img {
      width: 100%;
      max-width: 450px;
      height: auto;
      border-radius: 16px;
      margin: 16px auto;
      display: block;
    }

    .cards-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 32px;
      margin: 48px 0;
    }

    .text-block {
      background: rgba(26, 31, 58, 0.4);
      padding: 32px;
      border-radius: 20px;
      margin: 32px 0;
      border-left: 4px solid var(--primary);
    }

    .text-block h4 {
      margin-bottom: 1rem;
    }

    .text-block p {
      margin-bottom: 0;
    }

    section > .container > img {
      width: 100%;
      max-width: 800px;
      height: auto;
      border-radius: 24px;
      margin: 32px auto;
      display: block;
      box-shadow: var(--shadow-lg);
    }

    .highlight-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 32px;
      margin-top: 48px;
    }

    .highlight-box {
      background: linear-gradient(135deg, rgba(255, 0, 102, 0.1), rgba(0, 217, 255, 0.1));
      backdrop-filter: blur(10px);
      padding: 40px;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
    }

    .highlight-box::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 70%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .highlight-box:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: var(--shadow-glow);
    }

    .highlight-box:hover::before {
      opacity: 1;
    }

    .highlight-box h3 {
      position: relative;
      z-index: 1;
    }

    .highlight-box ul {
      position: relative;
      z-index: 1;
      padding-left: 24px;
    }

    .highlight-box li {
      margin-bottom: 12px;
      color: var(--text);
      font-size: 1.05rem;
    }

    .highlight-box img {
      width: 100%;
      height: auto;
      border-radius: 16px;
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .comparison-table table {
      width: 100%;
      max-width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      margin: 40px 0;
      background: rgba(26, 31, 58, 0.6);
      backdrop-filter: blur(10px);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      table-layout: auto;
    }

    .payments.comparison-table table {
      max-width: none;
    }

    .comparison-table thead {
      background: var(--gradient-secondary);
    }

    .comparison-table th {
      padding: 24px;
      text-align: left;
      color: white;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 1.15rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .comparison-table td {
      padding: 24px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--text);
      font-size: 1.05rem;
      font-weight: 500;
    }

    .comparison-table tbody tr {
      transition: all 0.3s ease;
    }

    .comparison-table tbody tr:hover {
      background: rgba(0, 217, 255, 0.08);
    }

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

    .feature-list {
      padding: 80px 0;
    }

    .feature-block {
      background: rgba(26, 31, 58, 0.5);
      backdrop-filter: blur(10px);
      padding: 40px;
      border-radius: 24px;
      margin: 32px 0;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    .feature-block:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-md);
    }

    .feature-block h3 {
      margin-bottom: 1.5rem;
    }

    .feature-block ul {
      padding-left: 24px;
      margin: 20px 0;
    }

    .feature-block li {
      margin-bottom: 12px;
      color: var(--text);
      font-size: 1.05rem;
    }

    .accordion-item {
      background: rgba(26, 31, 58, 0.6);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      margin-bottom: 20px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .accordion-item:hover {
      border-color: var(--primary);
    }

    .accordion-header {
      padding: 28px 32px;
      cursor: pointer;
      position: relative;
      user-select: none;
      transition: all 0.3s ease;
      font-size: 1.3rem;
      color: var(--light);
    }

    .accordion-header::after {
      content: '+';
      position: absolute;
      right: 32px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2rem;
      font-weight: 300;
      color: var(--secondary);
      transition: transform 0.3s ease;
    }

    .accordion-item.active .accordion-header::after {
      transform: translateY(-50%) rotate(45deg);
    }

    .accordion-header:hover {
      color: var(--primary);
    }

    .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      padding: 0 32px;
    }

    .accordion-item.active .accordion-body {
      max-height: 1000px;
      padding: 0 32px 32px;
    }

    .accordion-body p {
      margin-bottom: 1rem;
    }

    .cta-section {
      text-align: center;
      padding: 100px 0;
      background: radial-gradient(ellipse at center, rgba(255, 0, 102, 0.2), transparent 70%);
      position: relative;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
      opacity: 0.5;
    }

    .cta-section .container {
      position: relative;
      z-index: 1;
    }

    .cta-section h2 {
      margin-bottom: 1.5rem;
    }

    .cta-section p {
      font-size: 1.3rem;
      max-width: 700px;
      margin: 0 auto 3rem;
    }

    .cta-section .btn-primary {
      font-size: 1.3rem;
      padding: 20px 60px;
    }

    @media (max-width: 1024px) {
      h1 { font-size: clamp(2rem, 4vw, 3rem); }
      h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
      section { padding: 60px 0; }
      .hero-section { padding: 80px 0; min-height: 60vh; }
    }

    @media (max-width: 767px) {
      main { margin-top: 140px; }
      section { padding: 48px 0; }
      .hero-section { padding: 100px 0 60px; min-height: auto; }
      
      .info-card,
      .feature-grid,
      .cards-container,
      .highlight-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .info-card { padding: 40px 0; border-radius: 24px; }

      .info-card table {
        font-size: 0.9rem;
        width: 100%;
      }

      .info-card th,
      .info-card td {
        padding: 12px;
        word-wrap: break-word;
        white-space: normal;
        box-sizing: border-box;
      }

      .payments.comparison-table .table-scroll-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 40px 0;
      }

      .payments.comparison-table table {
        font-size: 0.9rem;
        min-width: 600px;
        width: auto;
      }

      .payments.comparison-table th,
      .payments.comparison-table td {
        padding: 12px;
        word-wrap: break-word;
        white-space: nowrap;
        box-sizing: border-box;
      }

      .text-block,
      .feature-item,
      .highlight-box,
      .feature-block {
        padding: 24px;
        max-width: 100%;
        box-sizing: border-box;
      }

      .btn {
        padding: 14px 32px;
        font-size: 1rem;
        min-width: 160px;
        max-width: 100%;
        box-sizing: border-box;
      }

      .cta-section { padding: 60px 0; }
      .cta-section .btn-primary { font-size: 1.1rem; padding: 16px 40px; }

      .accordion-header {
        padding: 20px 24px;
        font-size: 1.1rem;
      }

      .accordion-header::after {
        right: 24px;
        font-size: 1.5rem;
      }

      .accordion-body {
        padding: 0 24px;
      }

      .accordion-item.active .accordion-body {
        padding: 0 24px 24px;
      }

      img {
        max-width: 100%;
        height: auto;
      }

      section,
      .container,
      main {
        max-width: 100%;
        overflow-x: hidden;
      }

      img,
      video,
      iframe {
        max-width: 100%;
        height: auto;
      }

      .trust-badge {
        display: block;
        width: 100%;
        margin: 8px 0;
        text-align: center;
      }

      [style*="margin"],
      [style*="padding"],
      [style*="width"] {
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
    }