/* ===== RESET & BASE ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    html {
      scroll-behavior: smooth;
    }
    
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background-color: #0a0a0a;
      color: #e0e0e0;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
    
    /* ===== CONTAINER ===== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      width: 100%;
    }
    
    /* ===== HEADER ===== */
    header {
      background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
      border-bottom: 1px solid #333333;
      padding: 12px 0 12px;
      margin-bottom: 10px;
    }
    
    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
    }
    
    .header-info h1 {
      font-size: 48px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
      letter-spacing: -0.5px;
    }
    
    .header-info p {
      font-size: 16px;
      color: #b0b0b0;
      margin-bottom: 20px;
    }
    
    .back-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #1a1a1a;
      border: 1px solid #333333;
      color: #00ff88;
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s ease;
    }
    
    .back-button:hover {
      background: #252525;
      border-color: #00ff88;
    }
    
    /* ===== MAIN CONTENT ===== */
    main {
      flex: 1;
    }
    
    /* ===== SECTIONS ===== */
    .section {
      margin-bottom: 60px;
    }
    
    .section-title {
      font-size: 28px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
      letter-spacing: -0.5px;
    }
    
    .section-subtitle {
      font-size: 14px;
      color: #b0b0b0;
      margin-bottom: 30px;
    }
    
    /* ===== HERO STATEMENT ===== */
    .hero-statement {
      background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
      border: 1px solid #00ff88;
      border-radius: 8px;
      padding: 40px;
      margin-bottom: 60px;
    }
    
    .hero-statement h2 {
      font-size: 24px;
      font-weight: 700;
      color: #00ff88;
      line-height: 1.5;
      margin: 0 0 12px 0;
    }
    
    .hero-statement p {
      font-size: 15px;
      color: #b0b0b0;
      line-height: 1.7;
      margin: 0;
    }
    
    /* ===== COMPARISON TABLE ===== */
    .comparison-table-wrapper {
      overflow-x: auto;
      margin-bottom: 40px;
    }
    
    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      background: linear-gradient(135deg, #0f0f0f 0%, #000000 100%);
      border: 1px solid #333333;
      border-radius: 8px;
      overflow: hidden;
      min-width: 800px;
    }
    
    .comparison-table th,
    .comparison-table td {
      padding: 16px 20px;
      text-align: left;
      border-bottom: 1px solid #222222;
      font-size: 14px;
    }
    
    .comparison-table thead th {
      background: rgba(0, 255, 136, 0.06);
      color: #00ff88;
      font-weight: 600;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      position: sticky;
      top: 0;
    }
    
    .comparison-table thead th:first-child {
      color: #ffffff;
    }
    
    .comparison-table tbody td:first-child {
      color: #ffffff;
      font-weight: 600;
    }
    
    .comparison-table tbody td {
      color: #b0b0b0;
    }
    
    .comparison-table tbody tr:hover {
      background: rgba(0, 255, 136, 0.03);
    }
    
    .comparison-table tbody tr:last-child td {
      border-bottom: none;
    }
    
    .check {
      color: #00ff88;
      font-weight: 700;
    }
    
    .dash {
      color: #555555;
    }
    
    .partial {
      color: #ff9800;
    }
    
    .zekt-col {
      background: rgba(0, 255, 136, 0.04);
    }
    
    /* ===== ALTERNATIVE CARDS ===== */
    .alt-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }
    
    .alt-card {
      background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
      border: 1px solid #333333;
      border-radius: 8px;
      padding: 24px;
    }
    
    .alt-card h3 {
      font-size: 18px;
      font-weight: 600;
      color: #ff9800;
      margin-bottom: 8px;
    }
    
    .alt-card .alt-what {
      font-size: 14px;
      color: #b0b0b0;
      margin-bottom: 16px;
      line-height: 1.6;
    }
    
    .alt-card .alt-when-label {
      font-size: 12px;
      font-weight: 600;
      color: #00ff88;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 6px;
    }
    
    .alt-card .alt-when {
      font-size: 13px;
      color: #b0b0b0;
      line-height: 1.6;
      margin-bottom: 16px;
    }
    
    .alt-card .alt-zekt-label {
      font-size: 12px;
      font-weight: 600;
      color: #00ff88;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 6px;
    }
    
    .alt-card .alt-zekt {
      font-size: 13px;
      color: #00ff88;
      line-height: 1.6;
    }
    
    /* ===== BOTTOM LINE ===== */
    .bottom-line {
      background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 255, 136, 0.02) 100%);
      border: 1px solid #00ff88;
      border-radius: 8px;
      padding: 40px;
      text-align: center;
      margin-bottom: 60px;
    }
    
    .bottom-line h2 {
      font-size: 24px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
    }
    
    .bottom-line p {
      font-size: 15px;
      color: #b0b0b0;
      line-height: 1.7;
      max-width: 700px;
      margin: 0 auto 24px auto;
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.2s ease;
      border: none;
    }
    
    .btn-primary {
      background: #00ff88;
      color: #0a0a0a;
    }
    
    .btn-primary:hover {
      background: #00e87c;
      box-shadow: 0 4px 16px rgba(0, 255, 136, 0.2);
    }
    
    .btn-secondary {
      background: #1a1a1a;
      color: #00ff88;
      border: 1px solid #00ff88;
    }
    
    .btn-secondary:hover {
      background: #252525;
    }
    
    /* ===== FOOTER ===== */
    footer {
      background: linear-gradient(135deg, #0f0f0f 0%, #000000 100%);
      border-top: 1px solid #333333;
      padding: 60px 0 40px;
      margin-top: 100px;
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    
    .footer-column h4 {
      font-size: 14px;
      font-weight: 600;
      color: #00ff88;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    
    .footer-column ul {
      list-style: none;
    }
    
    .footer-column li {
      margin-bottom: 12px;
    }
    
    .footer-column a {
      color: #b0b0b0;
      text-decoration: none;
      font-size: 13px;
      transition: color 0.2s ease;
    }
    
    .footer-column a:hover {
      color: #00ff88;
    }
    
    .footer-bottom {
      border-top: 1px solid #333333;
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 13px;
      color: #909090;
    }
    
    .footer-logo {
      font-size: 18px;
      font-weight: 700;
      color: #ff9800;
      letter-spacing: -0.5px;
    }
    
    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .header-content {
        flex-direction: column;
        gap: 20px;
      }
      
      .header-info h1 {
        font-size: 32px;
      }
      
      .hero-statement h2 {
        font-size: 20px;
      }
      
      .section-title {
        font-size: 20px;
      }
      
      .container {
        padding: 0 16px;
      }
      
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }
