        /* --- CSS Reset & Global Styles --- */
        :root {
            --primary-blue: #007BFF;
            --light-bg: #FFFFFF;
            --card-bg: #F8F9FA;
            --text-primary: #212529;
            --text-secondary: #6c757d;
            --border-color: #dee2e6;
--card:#121A2A;
--radius: 18px;
--radius-sm: 12px;
      --grid-gap: 18px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-primary);
            line-height: 1.7;
        }

        /* --- Animated Canvas Background --- */
        #particle-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1; /* Puts it behind everything */
        }

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 100px 0;
        }

        h1, h2, h3 {
            line-height: 1.2;
            font-weight: 700;
        }

        h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 4rem;
        }

        p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #0056b3;
        }

        .btn {
            display: inline-block;
            background: var(--primary-blue);
            color: #fff;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn:hover {
            background: #0069d9;
            transform: translateY(-2px);
        }

        /* --- Header & Navigation --- */
        .main-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
            padding: 15px 0;
            transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
        }
        
        .main-header.scrolled {
            background-color: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .main-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .logo svg {
            width: 40px;
            height: 40px;
            margin-right: 12px;
        }

        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: var(--text-primary);
            font-weight: 600;
            padding-bottom: 5px;
            border-bottom: 2px solid transparent;
        }

        .nav-links a:hover {
            color: var(--primary-blue);
            border-bottom-color: var(--primary-blue);
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: var(--text-primary);
            margin: 5px;
            transition: all 0.3s ease;
        }

        /* --- Hero Section --- */
        #hero {
            min-height: calc(100vh - 70px);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
        }

        #hero .sub-headline {
            font-size: 1.25rem;
            max-width: 650px;
            margin: 0 auto 2.5rem auto;
            color: var(--text-secondary);
        }
        
        /* --- Social Proof Section --- */
        #social-proof {
            padding: 40px 0;
            text-align: center;
        }
        
        #social-proof .container {
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            padding-top: 40px;
            padding-bottom: 40px;
        }
        
        #social-proof p {
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--text-secondary);
        }

        .partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap; /* allow wrapping */
}

.partner-logos img {
    height: 200px;
    width: auto;
}

/* mobile: stack logos vertically */
@media (max-width: 768px) {
    .partner-logos {
        flex-direction: column;
        gap: 20px; /* smaller gap for vertical layout */
    }
.partner-logos img {
    height: 150px;
    width: auto;
}

}


        /* --- Why Us Section --- */
        .why-us-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .why-us-card {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }

        .why-us-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        .why-us-card h3 svg {
            width: 28px;
            height: 28px;
            margin-right: 10px;
            color: var(--primary-blue);
        }

        /* --- Features Section --- */
        #features {
            background-color: var(--card-bg);
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-item {
            text-align: center;
            padding: 20px;
        }

        .feature-item svg {
            width: 48px;
            height: 48px;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
        }

        .feature-item h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        /* --- Pricing Section --- */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            align-items: center;
        }

        .pricing-card {
            background: var(--light-bg);
            padding: 40px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
        }
        
        .pricing-card.popular {
            border: 2px solid var(--primary-blue);
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .pricing-card .price {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .pricing-card .features-list {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }

        .pricing-card .features-list li {
            margin-bottom: 0.75rem;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
        }
        
        .pricing-card .features-list li svg {
            width: 18px;
            height: 18px;
            color: var(--primary-blue);
            margin-right: 10px;
            flex-shrink: 0;
        }

        .pricing-card .btn {
            width: 100%;
        }

        #pricing .pricing-footer {
            text-align: center;
            margin-top: 4rem;
            color: var(--text-secondary);
        }

        /* --- About Section --- */
        #about {
            background-color: var(--card-bg);
        }
        #about .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        /* --- Contact Section --- */
        .contact-content {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-form {
            display: grid;
            gap: 20px;
            text-align: left;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .contact-form label {
            margin-bottom: 5px;
            font-weight: 600;
        }

        .contact-form input,
        .contact-form select,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            background-color: var(--light-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
        }
        
        .contact-form input:focus,
        .contact-form select:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
        }

        .contact-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .contact-form .btn {
            justify-self: center;
            width: 200px;
            margin-top: 1rem;
        }
        
        #contact .contact-footer {
            margin-top: 2rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* --- Footer --- */
        .main-footer {
            background: var(--card-bg);
            text-align: center;
            padding: 40px 0;
            border-top: 1px solid var(--border-color);
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        
        .footer-links {
            margin-top: 10px;
        }

        .footer-links a {
            margin: 0 10px;
            color: var(--text-secondary);
        }
        .footer-links a:hover {
            color: var(--primary-blue);
        }

        /* --- Responsive Design --- */
        @media(max-width: 992px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2.2rem; }
            .pricing-grid { grid-template-columns: 1fr; }
            .pricing-card { max-width: 500px; margin: 0 auto; }
            .pricing-card.popular { transform: scale(1); }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                right: -100%;
                top: 0;
                height: 100vh;
                width: 60%;
                max-width: 300px;
                background: var(--light-bg);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.4s ease-in-out;
                border-left: 1px solid var(--border-color);
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            }

            .nav-links.nav-active {
                right: 0;
            }

            .nav-links li {
                margin: 20px 0;
            }

            .hamburger {
                display: block;
            }

            .hamburger.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
            .hamburger.toggle .line2 { opacity: 0; }
            .hamburger.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
            
            h1 { font-size: 2.5rem; }
            section { padding: 80px 0; }

            .why-us-grid { grid-template-columns: 1fr; }
        }

/* badges */
.stat{
  display:inline-flex;          /* make each badge act like a pill */
  align-items:center;
  gap:10px;
  padding:10px 12px;
  background:rgba(0,123,255,.1);
  border:1px solid rgba(255,255,255,.06);
  border-radius:12px;
  max-width:240px;
  white-space:nowrap;           /* keep text on one line per pill */
  margin:6px 8px;               /* spacing so they never touch/overlap */
}

/* mobile: stack & center nicely */
@media (max-width:768px){
  .stat{
    display:block;              /* each pill on its own line */
    width:max-content;          /* keep pill snug to its content */
    margin:8px auto;            /* centered */
  }
}

/* --- How It Works (dark contrast section) --- */
#how-it-works{
  background:#0f172a;           /* dark slate contrast */
  color:#e9eef6;
  padding:100px 0;
overflow: hidden;
}

#how-it-works h2{
  color:#fff;
  margin-bottom:2.5rem;
}
.hiw-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr;
  gap:30px;
}
.hiw-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  padding:24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.hiw-card h3{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:1.05rem;
  margin-bottom:14px;
  color:#fff;
}
.hiw-card p{
  color:#b8c2d6;
}

/* code block look */
.hiw-code{
  background:rgba(0,0,0,0.35);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:10px;
  padding:16px;
  overflow:auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size:.9rem;
  line-height:1.5;
  color:#dbe7ff;
  margin:12px 0 10px;
}

/* checklist panel */
.hiw-checklist{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  padding:24px;
}
.hiw-checklist ul{
  list-style:none;
  display:grid;
  gap:12px;
  margin:0;
  padding:0;
}
.hiw-checklist li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#d7e2f6;
}
.hiw-checklist small{
  display:block;
  color:#9fb0cc;
  margin-top:10px;
}

/* ensure grid stacks cleanly on phones */
@media (max-width: 768px){
  #how-it-works { padding: 72px 0; }
  .container { padding: 0 16px; }                /* a bit more side padding on small screens */
  .hiw-grid { grid-template-columns: 1fr; gap:16px; align-items: start; }
  .hiw-card, .hiw-checklist { padding:16px; border-radius:10px; max-width:100%; }
  
  /* code block: wrap long lines/URLs so it doesn't push the layout */
  .hiw-code{
    max-width:100%;
    white-space: pre-wrap;        /* allow wrapping */
    word-break: break-word;       /* break long tokens */
    overflow-wrap: anywhere;      /* force wrap if needed */
    -webkit-overflow-scrolling: touch;
    font-size: .85rem;
  }
}

/* Footer layout */
.main-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  text-align: left;
}

.main-footer .footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-secondary);
}

.main-footer .footer-right {
  margin-left: auto;
}

/* mobile stack */
@media (max-width: 768px) {
  .main-footer .container {
    flex-direction: column;
    text-align: center;
  }
  .main-footer .footer-right {
    margin-left: 0;
  }
}

.report-preview {
  margin-top: 20px;
  text-align: center;
}

.report-preview img {
  width: 100%;
  max-width: 500px;   /* keeps it tidy */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
