
  :root {
    --bg: #0a0a0a;
    --bg2: #111111;
    --bg3: #161616;
    --border: rgba(255,255,255,0.08);
    --border2: rgba(255,255,255,0.14);
    --text: #f0f0f0;
    --muted: #888;
    --accent: #c8f542;
    --accent2: #a8d435;
    --white: #ffffff;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }
  h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 64px;
    border-bottom: 1px solid var(--border);
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(12px);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.2rem;
    text-decoration: none; color: var(--white);
  }
  .logo-icon {
    width: 32px; height: 32px; background: var(--accent);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
  }
  .logo-icon svg { width: 18px; height: 18px; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--muted); font-size: 0.9rem;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    background: var(--accent); color: #0a0a0a;
    padding: 0.5rem 1.2rem; border-radius: 6px;
    font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.85rem;
    text-decoration: none; transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--accent2); }

  /* TICKER */
  .ticker-wrap {
    position: relative; overflow: hidden;
    background: var(--bg2); border-bottom: 1px solid var(--border);
    padding: 0.6rem 0; margin-top: 64px;
  }
  .ticker-wrap::before, .ticker-wrap::after {
    content: ''; position: absolute; top: 0; width: 120px; height: 100%;
    z-index: 2; pointer-events: none;
  }
  .ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--bg2), transparent); }
  .ticker-wrap::after { right: 0; background: linear-gradient(to left, var(--bg2), transparent); }
  .ticker-track {
    display: flex; gap: 0;
    animation: ticker 40s linear infinite;
    width: max-content;
  }
  .ticker-track:hover { animation-play-state: paused; }
  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .ticker-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 0 2rem; white-space: nowrap; font-size: 0.8rem;
  }
  .ticker-item .tag {
    background: var(--bg3); border: 1px solid var(--border);
    padding: 0.3rem 0.8rem; border-radius: 20px; font-weight: 500;
    color: var(--text);
  }
  .ticker-item .stat { color: var(--accent); font-weight: 600; font-size: 0.78rem; }
  .ticker-dot { color: var(--border2); font-size: 1.2rem; }

  /* HERO */
  .hero {
    min-height: 90vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 5rem 5% 4rem;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(200,245,66,0.07) 0%, transparent 70%);
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--bg2); border: 1px solid var(--border2);
    padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.82rem;
    color: var(--muted); margin-bottom: 2rem; position: relative; z-index: 1;
  }
  .hero-badge span { color: var(--accent); }
  .hero h1 {
    font-size: clamp(2.4rem, 4vw, 4.5rem); font-weight: 800;
    line-height: 1.1; max-width: 800px;
    position: relative; z-index: 1; margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
  }
  .hero h1 em { font-style: normal; color: var(--accent); }
  .hero p {
    font-size: 1.1rem; color: var(--muted); max-width: 500px;
    position: relative; z-index: 1; margin-bottom: 2.5rem;
  }
  .hero-btns {
    display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
    position: relative; z-index: 1;
  }
  .btn-primary {
    background: var(--accent); color: #0a0a0a;
    padding: 0.8rem 2rem; border-radius: 8px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.92rem;
    text-decoration: none; transition: all 0.2s;
  }
  .btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }
  .btn-secondary {
    background: transparent; color: var(--text);
    padding: 0.8rem 2rem; border-radius: 8px;
    border: 1px solid var(--border2);
    font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.92rem;
    text-decoration: none; transition: all 0.2s;
  }
  .btn-secondary:hover { border-color: var(--muted); }

  /* LOGOS */
  .logos-section {
    padding: 3rem 5%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
  }
  .logos-label {
    text-align: center; font-size: 0.78rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--muted); margin-bottom: 2rem;
  }
  .logos-grid {
    display: flex; align-items: center; justify-content: center;
    gap: 3rem; flex-wrap: wrap;
  }
  .logo-placeholder {
    height: 28px; display: flex; align-items: center;
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 1.1rem; color: rgba(255,255,255,0.2);
    letter-spacing: 0.05em;
  }

  /* SECTION BASE */
  section { padding: 6rem 5%; }
  .section-label {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--accent); font-weight: 600; margin-bottom: 1rem;
  }
  .section-title {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
    letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 1rem;
  }
  .section-sub { color: var(--muted); max-width: 480px; margin-bottom: 3rem; }
  .team .section-sub, .faq .section-sub { margin-left: auto; margin-right: auto; }

  /* SERVICES */
  .services { background: var(--bg); }
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
  }
  .service-card {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 16px; padding: 2rem;
    transition: border-color 0.2s, transform 0.2s;
  }
  .service-card:hover { border-color: var(--border2); transform: translateY(-3px); }
  .service-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(200,245,66,0.1); border: 1px solid rgba(200,245,66,0.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem; font-size: 1.3rem;
  }
  .service-card h3 {
    font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem;
  }
  .service-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
  .service-tag {
    display: inline-block; margin-top: 1.2rem;
    background: rgba(200,245,66,0.08); color: var(--accent);
    padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.78rem; font-weight: 500;
  }

  /* ABOUT / STATS */
  .about { background: var(--bg2); }
  .about-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .about-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  }
  .stat-card {
    background: var(--bg3); border: 1px solid var(--border);
    border-radius: 12px; padding: 1.5rem;
  }
  .stat-num {
    font-family: 'Montserrat', sans-serif; font-size: 2.5rem;
    font-weight: 800; color: var(--accent); line-height: 1;
    margin-bottom: 0.4rem;
  }
  .stat-label { color: var(--muted); font-size: 0.85rem; }

  /* PRICING */
  .pricing { background: var(--bg); }
  .pricing-toggle {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 3rem;
  }
  .toggle-btn {
    background: none; border: 1px solid var(--border); color: var(--muted);
    padding: 0.5rem 1.2rem; border-radius: 6px; cursor: pointer;
    font-family: 'Montserrat', sans-serif; font-size: 0.88rem;
    transition: all 0.2s;
  }
  .toggle-btn.active {
    background: var(--accent); color: #0a0a0a;
    border-color: var(--accent); font-weight: 600;
  }
  .pricing-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem; max-width: 800px;
  }
  .price-card {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 16px; padding: 2.5rem;
    transition: border-color 0.2s;
    position: relative;
  }
  .price-card.featured {
    border-color: var(--accent);
    background: linear-gradient(160deg, rgba(200,245,66,0.05) 0%, var(--bg2) 60%);
  }
  .popular-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #0a0a0a;
    padding: 0.25rem 1rem; border-radius: 20px;
    font-size: 0.75rem; font-weight: 700; font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
  }
  .price-name { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.3rem; }
  .price-amount {
    font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 800;
    line-height: 1; margin-bottom: 0.3rem;
  }
  .price-amount span { font-size: 1.2rem; font-weight: 500; color: var(--muted); }
  .price-desc { color: var(--muted); font-size: 0.85rem; margin-bottom: 2rem; }
  .price-features { list-style: none; margin-bottom: 2rem; }
  .price-features li {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.6rem 0; border-bottom: 1px solid var(--border);
    font-size: 0.88rem; color: var(--muted);
  }
  .price-features li:last-child { border-bottom: none; }
  .check { color: var(--accent); font-size: 1rem; flex-shrink: 0; }
  .btn-price {
    display: block; text-align: center;
    padding: 0.85rem; border-radius: 8px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem;
    text-decoration: none; transition: all 0.2s; cursor: pointer;
    border: none;
  }
  .btn-price-outline {
    background: transparent; color: var(--text);
    border: 1px solid var(--border2);
  }
  .btn-price-outline:hover { border-color: var(--accent); color: var(--accent); }
  .btn-price-solid { background: var(--accent); color: #0a0a0a; }
  .btn-price-solid:hover { background: var(--accent2); }

  /* REVIEWS */
  .reviews { background: var(--bg2); overflow: hidden; }
  .reviews-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
  }
  .review-card {
    background: var(--bg3); border: 1px solid var(--border);
    border-radius: 16px; padding: 1.8rem;
    transition: border-color 0.2s;
  }
  .review-card:hover { border-color: var(--border2); }
  .stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 1rem; }
  .review-card blockquote {
    font-size: 0.92rem; line-height: 1.7; color: var(--text);
    margin-bottom: 1.5rem; font-style: normal;
  }
  .reviewer { display: flex; align-items: center; gap: 0.8rem; }
  .reviewer-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--bg2); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.8rem;
    color: var(--accent);
  }
  .reviewer-name { font-weight: 600; font-size: 0.9rem; }
  .reviewer-role { color: var(--muted); font-size: 0.8rem; }

  /* WHY US */
  .why-us { background: var(--bg); }
  .comparison-table {
    width: 100%; border-collapse: collapse; margin-top: 3rem;
    font-size: 0.9rem;
  }
  .comparison-table th {
    padding: 1rem 1.5rem; text-align: left;
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    border-bottom: 1px solid var(--border);
  }
  .comparison-table th:first-child { color: var(--muted); font-weight: 500; }
  .comparison-table th.us { color: var(--accent); }
  .comparison-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
  }
  .comparison-table td.us { color: var(--text); }
  .x-icon { color: #555; }
  .check-icon { color: var(--accent); }

  /* TEAM */
  .team { background: var(--bg2); text-align: center; }
  .team-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem; margin-top: 3rem; max-width: 960px; margin-left: auto; margin-right: auto;
  }
  .team-card {
    background: var(--bg3); border: 1px solid var(--border);
    border-radius: 16px; padding: 1.5rem; text-align: center;
    transition: border-color 0.2s, transform 0.2s;
    
  }
  .team-card:hover { border-color: var(--border2); transform: translateY(-3px); }
  .team-avatar {
    width: 150px; height: 150px; border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.3rem;
    color: var(--accent);
    overflow: hidden;
  }
  .team-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
  .team-card p { color: var(--muted); font-size: 0.82rem; }

  /* FAQ */
  .faq { background: var(--bg); text-align: center; }
  .faq-list { max-width: 720px; margin-top: 3rem; margin-left: auto; margin-right: auto; text-align: left; }
  .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
  }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 1rem; color: var(--text);
    user-select: none;
  }
  .faq-q:hover { color: var(--accent); }
  .faq-icon {
    width: 24px; height: 24px; border-radius: 50%;
    border: 1px solid var(--border2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--muted); flex-shrink: 0;
    transition: all 0.2s;
  }
  .faq-item.open .faq-icon { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }
  .faq-a {
    color: var(--muted); font-size: 0.9rem; line-height: 1.7;
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .faq-item.open .faq-a { max-height: 300px; padding-top: 1rem; }

  /* CONTACT */
  .contact { background: var(--bg2); }
  .contact-inner {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start;
  }
  .contact-info { margin-top: 1rem; }
  .contact-item { margin-bottom: 1.5rem; }
  .contact-item-label {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--muted); margin-bottom: 0.3rem;
  }
  .contact-item a { color: var(--text); text-decoration: none; font-size: 0.95rem; }
  .contact-item a:hover { color: var(--accent); }
  .contact-form { display: flex; flex-direction: column; gap: 1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group label { font-size: 0.82rem; color: var(--muted); }
  .form-group input, .form-group select, .form-group textarea {
    background: var(--bg3); border: 1px solid var(--border);
    border-radius: 8px; padding: 0.75rem 1rem;
    color: var(--text); font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
    outline: none; transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--border2);
  }
  .form-group select { appearance: none; }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .btn-submit {
    background: var(--accent); color: #0a0a0a;
    padding: 0.9rem 2rem; border-radius: 8px; border: none; cursor: pointer;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.92rem;
    align-self: flex-start; transition: background 0.2s;
  }
  .btn-submit:hover { background: var(--accent2); }

  /* FOOTER */
  footer {
    background: var(--bg); border-top: 1px solid var(--border);
    padding: 4rem 5% 2rem;
  }
  .footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem; padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
  }
  .footer-brand p { color: var(--muted); font-size: 0.88rem; margin-top: 0.8rem; max-width: 240px; }
  .footer-newsletter { margin-top: 1.2rem; display: flex; gap: 0.5rem; }
  .footer-newsletter input {
    flex: 1; background: var(--bg2); border: 1px solid var(--border);
    border-radius: 6px; padding: 0.6rem 0.8rem; color: var(--text);
    font-size: 0.85rem; outline: none;
  }
  .footer-newsletter button {
    background: var(--accent); color: #0a0a0a; border: none;
    border-radius: 6px; padding: 0.6rem 1rem; cursor: pointer;
    font-weight: 600; font-size: 0.82rem;
  }
  .footer-col h5 {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 0.85rem; margin-bottom: 1rem; color: var(--text);
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col a { color: var(--muted); text-decoration: none; font-size: 0.88rem; }
  .footer-col a:hover { color: var(--text); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 1.5rem; font-size: 0.82rem; color: var(--muted);
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
    .comparison-table { font-size: 0.78rem; }
    .comparison-table th, .comparison-table td { padding: 0.7rem; }
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-up { animation: fadeUp 0.6s ease forwards; }
  .delay-1 { animation-delay: 0.1s; opacity: 0; }
  .delay-2 { animation-delay: 0.2s; opacity: 0; }
  .delay-3 { animation-delay: 0.3s; opacity: 0; }
  .delay-4 { animation-delay: 0.4s; opacity: 0; }

  /* Cursor glow */
  .cursor-glow {
    position: fixed; width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,245,66,0.04) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
    transform: translate(-50%, -50%);
    transition: left 0.1s ease, top 0.1s ease;
  }