 * { margin: 0; padding: 0; box-sizing: border-box; }
  
  :root {
    --primary: #0a1929;
    --secondary: #132f4c;
    --accent: #f0b90b;
    --accent-hover: #d4a00a;
    --success: #00c853;
    --danger: #ff3d57;
    --text: #e7ebf0;
    --text-muted: #9fadbc;
    --border: #1e3a5f;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    background: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
  
  /* HEADER */
  header {
    background: rgba(10, 25, 41, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
  }
  
  .iconLogo{
      width:2rem;margin-right: -12rem;
  }
  
  .logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 1px;
  }
  
  .logo span { color: var(--text); }
  
  .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
  }
  
  .nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
  }
  
  .nav-links a:hover { color: var(--accent); }
  
  .btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
  }
  
  .btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 185, 11, 0.3);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
  }
  
  .btn-outline:hover {
    background: var(--accent);
    color: var(--primary);
  }
  
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 28px;
    cursor: pointer;
  }
  
  /* HERO */
  .hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  .hero h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
  }
  
  .hero h1 span { color: var(--accent); }
  
  .hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
  }
  
  .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
  
  .hero-visual {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  }
  
  .chart-mock {
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 200, 83, 0.1) 100%);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .chart-mock svg { width: 100%; height: 100%; }
  
  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
  }
  
  .stat-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
  }
  
  .stat-box .label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .stat-box .value {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 4px;
  }
  
  /* DISCLAIMER BANNER */
  .disclaimer-banner {
    background: linear-gradient(90deg, #8b0000, #c62828);
    padding: 14px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
  }
  
  .disclaimer-banner strong { color: #fff; }
  
  /* SECTIONS */
  section { padding: 90px 0; }
  
  .section-title {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-title h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 800;
  }
  
  .section-title h2 span { color: var(--accent); }
  
  .section-title p {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* FEATURES */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
  }
  
  .feature-card {
    background: var(--secondary);
    padding: 36px 28px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
  }
  
  .feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  }
  
  .feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(240, 185, 11, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text);
  }
  
  .feature-card p {
    color: var(--text-muted);
    font-size: 15px;
  }
  
  /* BOT TYPES */
  .bots-section { background: var(--secondary); }
  
  .bots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
  }
  
  .bot-card {
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s;
  }
  
  .bot-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
  }
  
  .bot-header {
    padding: 24px;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.1), transparent);
    border-bottom: 1px solid var(--border);
  }
  
  .bot-type {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  
  .bot-header h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .bot-header p {
    color: var(--text-muted);
    font-size: 14px;
  }
  
  .bot-body { padding: 24px; }
  
  .bot-specs {
    list-style: none;
    margin-bottom: 20px;
  }
  
  .bot-specs li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
  }
  
  .bot-specs li:last-child { border-bottom: none; }
  
  .bot-specs li span:first-child { color: var(--text-muted); }
  .bot-specs li span:last-child { font-weight: 600; color: var(--accent); }
  
  .bot-price {
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--border);
  }
  
  .bot-price .amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
  }
  
  .bot-price .period {
    color: var(--text-muted);
    font-size: 14px;
  }
  
  /* HOW IT WORKS */
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    position: relative;
  }
  
  .step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
  }
  
  .step-number {
    width: 64px;
    height: 64px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    margin: 0 auto 20px;
  }
  
  .step h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .step p {
    color: var(--text-muted);
    font-size: 15px;
  }
  
  /* TEST SECTION */
  .test-section {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
  }
  
  .test-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .test-form {
    background: var(--primary);
    padding: 40px;
    border-radius: 14px;
    border: 1px solid var(--border);
  }
  
  .test-form h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .test-form > p {
    color: var(--text-muted);
    margin-bottom: 24px;
  }
  
  .form-group { margin-bottom: 18px; }
  
  .form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
  }
  
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 12px 14px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-size: 15px;
    transition: border 0.3s;
  }
  
  .form-group input:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--accent);
  }
  
  .test-form button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }
  
  .test-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .test-info h2 span { color: var(--accent); }
  
  .test-info > p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 16px;
  }
  
  .test-features { list-style: none; }
  
  .test-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
  }
  
  .test-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 800;
    font-size: 20px;
  }
  
  /* RISK DISCLAIMER */
  .risk-section {
    background: #1a0a0a;
    border-top: 3px solid var(--danger);
    border-bottom: 3px solid var(--danger);
    padding: 50px 0;
  }
  
  .risk-box {
    background: rgba(255, 61, 87, 0.08);
    border: 1px solid var(--danger);
    padding: 36px;
    border-radius: 12px;
  }
  
  .risk-box h2 {
    color: var(--danger);
    font-size: 26px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .risk-box p {
    color: var(--text);
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.7;
  }
  
  .risk-box ul {
    margin: 14px 0;
    padding-left: 24px;
  }
  
  .risk-box li {
    margin-bottom: 8px;
    color: var(--text-muted);
  }
  
  /* FOOTER */
  footer {
    background: #050d17;
    padding: 60px 0 24px;
    border-top: 1px solid var(--border);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-col h4 {
    color: var(--accent);
    margin-bottom: 18px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .footer-col p,
  .footer-col a {
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
  }
  
  .footer-col a:hover { color: var(--accent); }
  
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
  }
  
  /* RESPONSIVE */


    @media (max-width: 768px) {
    .iconLogo {
        margin-right: -11rem;
        }
    }
    .iconLogo {
        width: 2rem;
        margin-right: -28rem;
    }

  @media (max-width: 992px) {
    .hero-grid, .test-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--primary);
      flex-direction: column;
      padding: 20px;
      border-bottom: 1px solid var(--border);
    }
    .iconLogo{
        margin-right: -10rem;
    }
    
    .getStrt {display:none;}
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    .hero { padding: 60px 0; }
    .hero h1 { font-size: 32px; }
    section { padding: 60px 0; }
    .section-title h2 { font-size: 30px; }
    .test-form { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .stats-row { grid-template-columns: 1fr; }
  }