/* CSS Custom Properties (Variables) */
:root {
    /* Colors */
    --primary: #3b82f6;
    --primary-dark: #1e40af;
    --primary-light: #60a5fa;
    --secondary: #f1f5f9;
    --accent: #0ea5e9;
    --trust-teal: #14b8a6;
    --professional-dark: #1e293b;
    --text-muted: #64748b;
    --background: #ffffff;
    --background-light: #f8fafc;
    --border: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-light));
    --gradient-hero: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(14, 165, 233, 0.05));
    --gradient-card: linear-gradient(135deg, #ffffff, rgba(241, 245, 249, 0.3));
    
    /* Shadows */
    --shadow-soft: 0 10px 30px -10px rgba(59, 130, 246, 0.1);
    --shadow-card: 0 4px 20px -2px rgba(59, 130, 246, 0.08);
    --shadow-feature: 0 8px 25px -8px rgba(59, 130, 246, 0.15);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 5rem 0;
    --card-padding: 2rem;
    
    /* Border radius */
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--professional-dark);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container and layout */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    line-height: 1;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 12px 35px -10px rgba(59, 130, 246, 0.2);
}

.btn-secondary {
    background-color: var(--background);
    color: var(--professional-dark);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background-color: var(--gray-100);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-small {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem; /* Slightly larger font */
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 1rem;
    height: 1rem;
}

/* Navigation */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.nav-brand .logo {
    height: 2.5rem;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    background: none;
    border: none;
    color: var(--professional-dark);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: var(--professional-dark);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--professional-dark);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

.mobile-nav {
    display: none;
    background-color: var(--background);
    border-top: 1px solid var(--border);
}

.mobile-nav-content {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    background: none;
    border: none;
    color: var(--professional-dark);
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0;
    text-align: left;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-container {
    position: relative; 
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--professional-dark);
}

.text-primary {
    color: var(--primary);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--trust-teal);
}

.trust-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--professional-dark);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image {
    position: absolute;
    top: 5rem;
    right: 0;
    padding: 2rem;
}

.hero-logo {
    position: relative;
}

.hero-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    filter: blur(3rem);
    opacity: 0.2;
    transform: scale(1.1);
}

.hero-logo img {
    width: 100%;
    max-width: 500px;  /* Adjust this number as you like */
    height: auto;
    object-fit: contain;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--professional-dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 48rem;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background-color: var(--background);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    padding: var(--card-padding);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-feature);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--professional-dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.feature-benefits {
    list-style: none;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--professional-dark);
}

.feature-benefits li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background-color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Use Cases Section */
.use-cases {
    padding: var(--section-padding);
    background: var(--gradient-hero);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.use-case-card {
    background-color: var(--background);
    border-radius: var(--radius-xl);
    padding: var(--card-padding);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-feature);
}

.use-case-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.use-case-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.use-case-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--professional-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.use-case-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
}

.use-case-features {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.use-case-features h4 {
    font-weight: 600;
    color: var(--professional-dark);
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.use-case-features ul {
    list-style: none;
}

.use-case-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--professional-dark);
}

.use-case-features li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background-color: var(--primary);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.use-case-stats {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* About Section */
.about {
    padding: var(--section-padding);
    background-color: var(--background);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-badge-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(20, 184, 166, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--trust-teal);
}

.trust-badge-title {
    font-weight: 600;
    color: var(--professional-dark);
}

.trust-badge-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-feature);
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Demo Section */
.demo {
    padding: var(--section-padding);
    background: var(--gradient-hero);
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.demo-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demo-benefit-card {
    background-color: var(--background);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.demo-benefit-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    margin: 0 auto 1rem;
}

.demo-benefit-card h3 {
    font-weight: 600;
    color: var(--professional-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.demo-benefit-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.demo-form-container {
    display: flex;
    flex-direction: column;
}

.demo-form-card {
    background-color: var(--background);
    border-radius: var(--radius-xl);
    padding: var(--card-padding);
    box-shadow: var(--shadow-card);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--professional-dark);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-muted);
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--professional-dark);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 6rem;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: var(--background);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-card {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    padding: var(--card-padding);
    box-shadow: var(--shadow-card);
}

.contact-header {
    margin-bottom: 1.5rem;
}

.contact-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--professional-dark);
    margin-bottom: 0.5rem;
}

.contact-header p {
    color: var(--text-muted);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.contact-method-content h4 {
    font-weight: 600;
    color: var(--professional-dark);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-method-content p {
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-method-content span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.contact-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-cta-card {
    background-color: var(--background);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.contact-cta-card.primary {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-feature);
}

.contact-cta-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-cta-card.primary h3 {
    color: white;
}

.contact-cta-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-cta-card.primary p {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background-color: var(--professional-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo img {
    height: 2rem;
    width: auto;
}

.footer-description {
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-badge svg {
    width: 1rem;
    height: 1rem;
    color: var(--trust-teal);
}

.footer-badge span {
    font-size: 0.75rem;
    color: #cbd5e1;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h3 {
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a,
.footer-column button {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.footer-column a:hover,
.footer-column button:hover {
    color: var(--primary);
}

.footer-separator {
    height: 1px;
    background-color: #475569;
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #cbd5e1;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}
html, body {
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.hero-container,
.about-container,
.demo-container,
.contact-container {
  width: 100%;
  max-width: 100%; /* Ensure no container exceeds screen width */
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .demo-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    :root {
        --card-padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.4s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .nav-fixed,
    .footer {
        display: none;
    }
    
    .hero {
        padding-top: 2rem;
    }
    
    * {
        box-shadow: none !important;
    }
}
/* ======= your original CSS stays as is above ======= */

/* ========= RESPONSIVE MEDIA QUERIES ========= */
@media (max-width: 1024px) {
  .hero-container,
  .about-container,
  .demo-container,
  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .features-grid,
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* Make mobile nav bold */
.mobile-nav button {
    font-weight: 700;
}
.use-case-value {
    font-size: 1.5rem; /* Increase font size */
    font-weight: 700;
    color: var(--primary); /* Same blue as .stat-value */
    line-height: 1.4;
    display: block;
    margin-top: 0.5rem;
}
@media (max-width: 768px) {
    .hero-image {
        position: static;  /* remove absolute positioning on mobile */
        padding: 0;
        margin-top: 2rem;
        display: flex;
        justify-content: center;
    }

    .hero-logo img {
        max-width: 250px;
    }
}

