* { margin: 0; padding: 0; box-sizing: border-box; }
    
    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      background: #0f172a;
      color: #e2e8f0;
    }

    /* ===== Hero ===== */
    .hero {
      min-height: 100vh;
      background: linear-gradient(135deg, #0f172a 0%, #1a1f3c 50%, #0f3460 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px 20px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(233,69,96,0.15) 0%, transparent 70%);
      top: -100px; right: -100px;
      border-radius: 50%;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(233,69,96,0.2);
      border: 1px solid #e94560;
      color: #e94560;
      padding: 6px 20px;
      border-radius: 20px;
      font-size: 13px;
      margin-bottom: 20px;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .hero h1 span { color: #e94560; }

    .hero p {
      font-size: 1.2rem;
      color: #94a3b8;
      max-width: 600px;
      margin: 0 auto 40px;
      line-height: 1.8;
    }

    .hero-btns {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #e94560, #c73652);
      color: white;
      padding: 15px 40px;
      border-radius: 10px;
      text-decoration: none;
      font-size: 16px;
      font-weight: bold;
      transition: transform 0.2s, box-shadow 0.2s;
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(233,69,96,0.4);
    }

    .btn-secondary {
      background: transparent;
      color: #00ffcc;
      padding: 15px 40px;
      border-radius: 10px;
      text-decoration: none;
      font-size: 16px;
      font-weight: bold;
      border: 2px solid #00ffcc;
      transition: all 0.2s;
      cursor: pointer;
    }

    .btn-secondary:hover {
      background: rgba(0,255,204,0.1);
    }

    /* ===== Stats ===== */
    .stats-section {
      background: #1a1f3c;
      padding: 60px 20px;
      text-align: center;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      max-width: 900px;
      margin: 0 auto;
    }

    .stat-box {
      background: #0f3460;
      border-radius: 15px;
      padding: 30px;
      border: 1px solid rgba(0,255,204,0.2);
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: #00ffcc;
      display: block;
      margin-bottom: 8px;
    }

    .stat-label { color: #94a3b8; font-size: 14px; }

    /* ===== How it Works ===== */
    .section {
      padding: 80px 20px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-title {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .section-subtitle {
      text-align: center;
      color: #94a3b8;
      margin-bottom: 50px;
      font-size: 1rem;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 25px;
    }

    .step-card {
      background: #1a1f3c;
      border: 1px solid #0f3460;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      position: relative;
      transition: border-color 0.3s;
    }

    .step-card:hover { border-color: #e94560; }

    .step-number {
      width: 50px; height: 50px;
      background: linear-gradient(135deg, #e94560, #c73652);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: bold;
      margin: 0 auto 20px;
    }

    .step-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
    .step-card p { color: #94a3b8; font-size: 13px; line-height: 1.7; }

    /* ===== Commission Calculator ===== */
    .calculator-section {
      background: #1a1f3c;
      padding: 80px 20px;
    }

    .calculator-box {
      max-width: 600px;
      margin: 0 auto;
      background: #0f172a;
      border: 2px solid #0f3460;
      border-radius: 20px;
      padding: 40px;
    }

    .calc-row {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }

    .calc-row label {
      width: 200px;
      color: #94a3b8;
      font-size: 14px;
      flex-shrink: 0;
    }

    .calc-row input[type="range"] {
      flex: 1;
      accent-color: #e94560;
    }

    .calc-value {
      width: 80px;
      text-align: center;
      color: #00ffcc;
      font-weight: bold;
      font-size: 16px;
    }

    .calc-result {
      background: linear-gradient(135deg, #0f3460, #1a1f3c);
      border: 1px solid #00ffcc;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      margin-top: 20px;
    }

    .calc-result .amount {
      font-size: 2.5rem;
      font-weight: 800;
      color: #00ffcc;
    }

    .calc-result p { color: #94a3b8; font-size: 13px; margin-top: 5px; }

    /* ===== Benefits ===== */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .benefit-card {
      background: #1a1f3c;
      border: 1px solid #0f3460;
      border-radius: 12px;
      padding: 25px;
      display: flex;
      gap: 15px;
      align-items: flex-start;
    }

    .benefit-icon {
      font-size: 28px;
      flex-shrink: 0;
    }

    .benefit-card h4 { margin-bottom: 8px; font-size: 1rem; }
    .benefit-card p { color: #94a3b8; font-size: 13px; line-height: 1.6; }

    /* ===== FAQ ===== */
    .faq-item {
      background: #1a1f3c;
      border: 1px solid #0f3460;
      border-radius: 10px;
      margin-bottom: 12px;
      overflow: hidden;
    }

    .faq-question {
      padding: 18px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
    }

    .faq-question:hover { background: rgba(255,255,255,0.03); }

    .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s, padding 0.3s;
      color: #94a3b8;
      line-height: 1.8;
      font-size: 14px;
    }

    .faq-item.open .faq-answer {
      max-height: 200px;
      padding: 0 20px 18px;
    }

    .faq-arrow { transition: transform 0.3s; color: #e94560; }
    .faq-item.open .faq-arrow { transform: rotate(180deg); }

    /* ===== CTA ===== */
    .cta-section {
      background: linear-gradient(135deg, #e94560 0%, #0f3460 100%);
      padding: 80px 20px;
      text-align: center;
    }

    .cta-section h2 { font-size: 2rem; margin-bottom: 15px; }
    .cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 30px; }

    /* ===== Modal ===== */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.85);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      padding: 20px;
      overflow-y: auto;
    }

    .modal-overlay.open { display: flex; }

    .modal-box {
      background: #1a1f3c;
      border: 2px solid #0f3460;
      border-radius: 20px;
      width: 100%;
      max-width: 650px;
      max-height: 90vh;
      overflow-y: auto;
      padding: 35px;
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: 15px; left: 20px;
      font-size: 24px;
      cursor: pointer;
      color: #e94560;
      background: none;
      border: none;
    }

    .modal-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 25px;
      color: #e94560;
    }

    .form-group { margin-bottom: 18px; }

    .form-group label {
      display: block;
      color: #94a3b8;
      font-size: 13px;
      margin-bottom: 7px;
      font-weight: 600;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 14px;
      background: #0f172a;
      border: 1px solid #1e3a5f;
      color: white;
      border-radius: 8px;
      font-size: 14px;
      outline: none;
      font-family: inherit;
      box-sizing: border-box;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #e94560;
    }

    .payment-selector {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 18px;
    }

    .payment-option {
      border: 2px solid #1e3a5f;
      border-radius: 10px;
      padding: 15px;
      cursor: pointer;
      text-align: center;
      transition: all 0.2s;
    }

    .payment-option.selected {
      border-color: #e94560;
      background: rgba(233,69,96,0.1);
    }

    .payment-option .icon { font-size: 28px; margin-bottom: 8px; }
    .payment-option .label { font-size: 13px; font-weight: bold; }
    .payment-option .sub { font-size: 11px; color: #64748b; margin-top: 3px; }

    .terms-box {
      background: #0f172a;
      border: 1px solid #1e3a5f;
      border-radius: 8px;
      padding: 15px;
      max-height: 150px;
      overflow-y: auto;
      font-size: 12px;
      color: #64748b;
      line-height: 1.8;
      margin-bottom: 15px;
    }

    .step-indicator {
      display: flex;
      gap: 8px;
      margin-bottom: 25px;
    }

    .step-dot {
      height: 4px;
      border-radius: 2px;
      flex: 1;
      background: #1e3a5f;
      transition: background 0.3s;
    }

    .step-dot.active { background: #e94560; }

    footer {
      background: #0f172a;
      text-align: center;
      padding: 30px;
      color: #475569;
      font-size: 13px;
    }