 :root {
      --bg-base: #07090f; --bg-subtle: #0f1423; --bg-surface: #141a2e;
      --text-main: #ffffff; --text-muted: #94a3b8;
      --border-light: rgba(255, 255, 255, 0.2); --border-hover: rgba(251, 191, 36, 0.5);
      --brand-gold: #fbbf24; --gold-gradient: linear-gradient(135deg, #fde047, #d97706);
      --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.7);
      --shadow-gold: 0 10px 40px -10px rgba(251, 191, 36, 0.3);
      --radius-lg: 20px; --transition: all 0.2s ease-in-out;
      --header-bg: rgba(7, 9, 15, 0.85);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 90%; }
    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--bg-base); color: var(--text-main);
      line-height: 1.6; -webkit-font-smoothing: antialiased;
      display: flex; flex-direction: column; min-height: 100vh; overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    
    /* Header */
    .header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: var(--header-bg); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-light);
    }
    .container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 10; }
    .nav-container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
    .brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 24px; color: var(--text-main); }
    .brand-mark {
      background: var(--brand-gold); width: 34px; height: 34px; border-radius: 9px;
      display: grid; place-items: center; border: 1px solid var(--border-light); color:#000;
    }
    .nav-links { display: flex; gap: 28px; font-weight: 600; font-size: 14px; color: var(--text-muted); }
    .nav-links a:hover { color: var(--brand-gold); }
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 12px 24px; border-radius: 999px; font-weight: 800; font-size: 15px;
      transition: var(--transition); cursor: pointer; border: 1px solid var(--border-light);
    }
    .btn-gold { background: var(--gold-gradient); color: #000 !important; box-shadow: var(--shadow-gold); }
    .btn-gold:hover { transform: translateY(-3px); box-shadow: 0 15px 40px -5px rgba(251, 191, 36, 0.4); }

    /* Ambient FX */
    .ambient-bloom { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: 0; opacity: 0.35; }
    .bloom-gold { background: rgba(251, 191, 36, 0.25); }
    .bloom-violet { background: rgba(124, 58, 237, 0.15); }

    /* Main Area */
    .main-content { flex: 1; padding: 140px 0 80px; position: relative; }
    .page-title { text-align: center; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; margin-bottom: 60px; }
    .page-title span { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

    /* About Section */
    .about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 80px; }
    .about-card {
      background: var(--bg-surface); border: 1px solid var(--border-light);
      border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-xl);
    }
    .about-card h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 24px; color: var(--brand-gold); display: flex; align-items: center; gap: 12px; }
    .about-card p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; margin-bottom: 20px; }
    .stats-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px; margin-top: 30px; }
    .stats-box strong { display: block; font-size: 1.4rem; color: var(--text-main); margin-bottom: 8px; }

    .enterprise-upsell {
      background: linear-gradient(180deg, var(--bg-surface), rgba(251, 191, 36, 0.08));
      border: 2px solid rgba(251, 191, 36, 0.5); border-radius: var(--radius-lg);
      padding: 40px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center;
    }
    .enterprise-upsell i { color: var(--brand-gold); margin-bottom: 16px; }
    .enterprise-upsell h3 { font-size: 1.8rem; margin-bottom: 16px; font-weight: 800; }
    .enterprise-upsell p { color: var(--text-muted); margin-bottom: 30px; font-size: 1.1rem; }

    /* Product Grid */
    .section-header { text-align: center; margin-bottom: 40px; }
    .section-header h2 { font-size: 2.2rem; font-weight: 800; }
    .products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
    .product-card {
      background: var(--bg-surface); border: 1px solid var(--border-light);
      border-radius: 16px; padding: 30px; transition: var(--transition);
      display: flex; flex-direction: column; justify-content: space-between;
    }
    .product-card:hover { transform: translateY(-5px); border-color: var(--brand-gold); box-shadow: var(--shadow-gold); }
    .product-card h3 { font-size: 1.4rem; margin-bottom: 10px; font-weight: 800; }
    .product-card .read-more { color: var(--brand-gold); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; }
    .product-icon {
      width: 48px; height: 48px; background: rgba(255,255,255,0.05); border-radius: 12px;
      display: grid; place-items: center; color: var(--text-main); margin-bottom: 20px;
    }

    /* Footer */
    .footer { padding: 30px 0; background: var(--bg-base); border-top: 1px solid var(--border-light); }
    .footer-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
    .footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
    .footer-nav-item { color: var(--text-muted); font-size: 13px; font-weight: 700; text-transform: uppercase; transition: color 0.2s; }
    .footer-nav-item:hover { color: var(--brand-gold); }
    .footer-meta { display: flex; align-items: center; gap: 20px; color: var(--text-muted); font-size: 13px; font-weight: 600; }
    .social-icons { display: flex; gap: 12px; }
    .social-icons a:hover { color: var(--brand-gold); }

    @media (max-width: 992px) { .about-wrapper { grid-template-columns: 1fr; } }
    @media (max-width: 768px) { .nav-links { display: none; } .footer-row { flex-direction: column; align-items: flex-start; } }