@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #4A3AFF;
  --primary-hover: #3a2bd1;
  --bg-color: #ffffff;
  --bg-secondary: #f8f9fa; /* slightly off white */
  --text-main: #0B0F19; /* very dark blue/black */
  --text-secondary: #6B7280;
  --border-color: #E5E7EB;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  --transition: all 0.3s ease;
}

/* Base resets */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--text-main); letter-spacing: -0.02em; }
p { color: var(--text-secondary); }

/* Utilities */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.5rem; font-size: 0.95rem; font-weight: 600;
  border-radius: var(--radius-md); cursor: pointer; transition: var(--transition);
  border: 1px solid transparent; gap: 0.5rem;
}
.btn-primary { background-color: var(--primary); color: white; box-shadow: 0 4px 14px 0 rgba(74, 58, 255, 0.39); }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(74, 58, 255, 0.23); }
.btn-outline { background-color: white; color: var(--text-main); border-color: var(--border-color); box-shadow: var(--shadow-sm); }
.btn-outline:hover { background-color: var(--bg-secondary); }
.btn-block { width: 100%; display: flex; }

/* Navbar */
.navbar { padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; background-color: var(--bg-color); z-index: 1; }
.nav-logo { font-size: 1.25rem; font-weight: 800; color: var(--text-main); display: flex; align-items: center; gap: 0.5rem; letter-spacing: -0.04em; }
.nav-center { display: flex; gap: 2rem; align-items: center; }
.nav-center a { font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); }
.nav-center a:hover { color: var(--text-main); }
.nav-right { display: flex; gap: 1.5rem; align-items: center; }
.theme-toggle { background: none; border: none; font-size: 1.1rem; color: var(--text-main); cursor: pointer; }
.login-link { font-size: 0.95rem; font-weight: 500; color: var(--text-main); }
.nav-right .btn-primary { padding: 0.6rem 1.25rem; font-size: 0.9rem; border-radius: var(--radius-md); box-shadow: none; }
.mobile-menu-toggle { display: none; background: none; border: none; color: var(--text-main); font-size: 1.5rem; cursor: pointer; }

/* Hero Section */
.hero { padding: 5rem 0 7rem; display: flex; align-items: center; gap: 4rem;  }
.hero-content { flex: 1; }
.label-small { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; display: inline-block;}
.hero h1 { font-size: 4rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; }
.hero h1 .text-primary { color: var(--primary); }
.hero p { font-size: 1.125rem; margin-bottom: 2.5rem; max-width: 500px; color: #4B5563; }
.hero-buttons { display: flex; gap: 1rem; }
.hero-image-wrapper { flex: 1; position: relative; }
.hero-image { width: 100%; border-radius: var(--radius-xl); transition: transform 0.3s ease; }
.hero-image:hover { transform: translateY(-10px); }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.25rem; font-weight: 800; margin-bottom: 0.75rem; }
.section-header p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* Layouts Showcase Section */
.layout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    padding: 20px 0;
}

.layout-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease;
}

.layout-card {
    background-color: #f4f5f8;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.02);
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.layout-card a {
    display: block;
    width: 100%;
    aspect-ratio: 16/10;
    text-decoration: none;
}

.layout-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 6px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.05);
}

.layout-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.layout-item:hover {
    transform: translateY(-5px);
}

.layout-item:hover .layout-card {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

@media (max-width: 992px) {
    .layout-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .layout-grid {
        grid-template-columns: 1fr;
    }
}

/* Features */
.features { padding: 6rem 0; background-color: var(--bg-secondary); }
.features-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-rows: minmax(150px, auto);
  gap: 1.5rem;
}
.feat-card {
  background: white; border-radius: var(--radius-xl); padding: 2.5rem;
  border: 1px solid var(--border-color); display: flex; flex-direction: column;
}
.feat-card.blue-card { background-color: var(--primary); color: white; border: none; }
.feat-card.blue-card h3, .feat-card.blue-card p { color: white; }
.feat-card.blue-card .feat-icon { color: white; }
.feat-icon { color: var(--primary); font-size: 1.5rem; margin-bottom: 1rem; }
.feat-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.feat-card p { font-size: 0.95rem; margin-bottom: 1.5rem; }
.feat-card-image { margin-top: auto; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.1); }
.bottom-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }

/* Dashboard Mockup Section */
.intelligent-surface { padding: 6rem 0; background-color: var(--bg-secondary); position: relative; }
.dashboard-mockup {
  background: white; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); border: 1px solid var(--border-color);
  padding: 1.5rem; display: flex; gap: 1.5rem; position: relative; overflow: hidden; min-height: 400px;
}
.mockup-sidebar { width: 80px; display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.mockup-icon { width: 32px; height: 32px; background: #EEF2FF; border-radius: 8px; }
.mockup-icon.active { background: var(--primary); }
.mockup-content { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.mockup-header { height: 24px; width: 150px; background: #F3F4F6; border-radius: 4px; }
.mockup-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.mockup-card { height: 120px; background: #F9FAFB; border-radius: 12px; }
.mockup-main { height: 200px; background: #F9FAFB; border-radius: 12px; }
.experience-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: white; padding: 1rem 2rem; border-radius: var(--radius-full);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1); font-weight: 700; color: var(--text-main);
}

/* Pricing */
.pricing { padding: 6rem 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; align-items: center; }
.pricing-card {
  background: white; border: 1px solid var(--border-color); border-radius: var(--radius-xl);
  padding: 2.5rem 2rem; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.pricing-card.blue-card { background: var(--primary); color: white; border: none; transform: scale(1.05); box-shadow: var(--shadow-lg); position: relative; }
.pricing-card.blue-card h3, .pricing-card.blue-card .price, .pricing-card.blue-card p, .pricing-card.blue-card li { color: white; }
.popular-badge { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255,255,255,0.2); color: white; padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; }
.pricing-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.price { font-size: 3rem; font-weight: 800; margin-bottom: 1.5rem; }
.price span { font-size: 1rem; font-weight: 500; color: var(--text-secondary); }
.pricing-card.blue-card .price span { color: rgba(255,255,255,0.8); }
.pricing-features { margin-bottom: 2rem; flex-grow: 1; display: flex; flex-direction: column; gap: 1rem; }
.pricing-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; font-weight: 500; }
.pricing-features i { color: #10B981; font-size: 1.1rem; }
.pricing-card.blue-card .pricing-features i { color: white; }

/* Testimonials */
.testimonials { padding: 6rem 0; background-color: var(--bg-secondary); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.test-card { background: white; border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); }
.stars { color: var(--primary); font-size: 0.9rem; margin-bottom: 1rem; display: flex; gap: 0.25rem; }
.test-text { font-size: 1rem; font-style: italic; color: #4B5563; margin-bottom: 2rem; line-height: 1.6; }
.test-author { display: flex; align-items: center; gap: 1rem; }
.test-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.test-author-info h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.1rem; }
.test-author-info p { font-size: 0.8rem; color: var(--text-secondary); margin: 0; }

/* Final CTA */
.cta-section { padding: 6rem 0; }
.cta-box {
  background-color: var(--primary); border-radius: var(--radius-xl); padding: 4rem 2rem;
  text-align: center; color: white; box-shadow: 0 20px 40px rgba(74, 58, 255, 0.2);
}
.cta-box h2 { color: white; font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.cta-box p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-box .btn { background: white; color: var(--primary); padding: 1rem 2rem; font-size: 1.05rem; }

/* Footer */
.footer { padding: 2rem 0; border-top: 1px solid var(--border-color); margin-top: 2rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: var(--text-secondary); font-weight: 500; }
.footer-left h4 { color: var(--text-main); font-size: 1rem; letter-spacing: -0.02em; margin-bottom: 0.2rem; }
.footer-left p { font-size: 0.7rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { transition: var(--transition); text-transform: uppercase; letter-spacing: 0.05em; color: #9CA3AF; }
.footer-links a:hover { color: var(--text-main); }
.footer-social { display: flex; gap: 1rem; font-size: 1.1rem; color: #9CA3AF; }
.footer-social a:hover { color: var(--primary); }

/* Form Styles (Auth Pages) retention */
.auth-container { min-height: 100vh; display: flex; align-items: center; justify-content: center; background-color: var(--bg-secondary); padding: 2rem; }
.auth-card { background: var(--bg-color); padding: 3rem 2.5rem; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); width: 100%; max-width: 450px; }
.auth-header { text-align: center; margin-bottom: 2rem; }
.auth-header .nav-logo { justify-content: center; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.5rem; color: var(--text-main); font-size: 0.875rem; }
.form-control { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border-color); border-radius: var(--radius-md); font-family: inherit; font-size: 1rem; color: var(--text-main); background-color: var(--bg-color); transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(74, 58, 255, 0.1); }
.form-options { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; font-size: 0.875rem; }
.form-check { display: flex; align-items: center; gap: 0.5rem; }
.text-primary:hover { text-decoration: underline; }
.auth-footer { text-align: center; margin-top: 1.5rem; font-size: 0.875rem; }

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding: 4rem 0; gap: 2rem; }
  .hero-buttons { justify-content: center; }
  .features-grid, .bottom-features { grid-template-columns: 1fr; }
  .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card.blue-card { transform: scale(1); }
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
}

/* Dark Mode Core Theme */
body.dark-mode {
  --bg-color: #0f172a;
  --bg-secondary: #0B0F19;
  --text-main: #f8fafc;
  --text-secondary: #cbd5e1;
  --border-color: #334155;
}
body.dark-mode .nav-logo { color: #f8fafc; }
body.dark-mode .nav-center a { color: #cbd5e1; }
body.dark-mode .nav-center a:hover { color: #f8fafc; }
body.dark-mode .theme-toggle, body.dark-mode .login-link { color: #f8fafc; }
body.dark-mode .feat-card, body.dark-mode .dashboard-mockup, body.dark-mode .pricing-card:not(.blue-card), body.dark-mode .test-card, body.dark-mode .layout-card, body.dark-mode .hero-testimonial, body.dark-mode .float-card:not(.center-card), body.dark-mode .foundation-card, body.dark-mode .wol-card, body.dark-mode .ss-card, body.dark-mode .faq-container { background: #1e293b; border-color: #334155; }
body.dark-mode .hero-image-wrapper img { opacity: 0.8; }
body.dark-mode .mockup-sidebar, body.dark-mode .mockup-content .mockup-header, body.dark-mode .mockup-icon { background: #334155; }
body.dark-mode .mockup-card, body.dark-mode .mockup-main { background: #0f172a; }
body.dark-mode .auth-card { background: #1e293b; border: 1px solid #334155; }
body.dark-mode .form-control { background: #0f172a; border-color: #334155; color: #f8fafc; }
body.dark-mode .btn-outline { background: #1e293b; color: #f8fafc; border-color: #334155; }


        /* New specific styling for index.html */
        .navbar .nav-logo {
            font-size: 1.5rem;
        }
        .nav-center a.active {
            color: var(--primary);
            border-bottom: 2px solid var(--primary);
            padding-bottom: 4px;
        }
        .btn-pill {
            border-radius: 9999px;
            padding: 0.6rem 1.5rem !important;
        }

        /* Hero Section Updates */
        .hero {
            padding: 6rem 0;
            gap: 2rem;
            align-items: center;
        }
        .hero-content {
            flex: 1;
            max-width: 550px;
        }
        .label-pill {
            display: inline-block;
            background: #eef2ff;
            color: var(--primary);
            padding: 0.4rem 1rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
        }
        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            color: var(--text-main);
        }
        .gradient-text {
            background: linear-gradient(135deg, #a855f7, #6366f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-content p {
            font-size: 1.1rem;
            color: #6b7280;
            margin-bottom: 2.5rem;
            max-width: 480px;
        }
        .hero-testimonial {
            margin-top: 2rem;
            padding: 1.5rem;
            background: var(--bg-color);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid var(--border-color);
            max-width: 400px;
        }
        .hero-testimonial .stars {
            color: var(--primary);
            font-size: 0.8rem;
            margin-bottom: 0.75rem;
            display: flex;
            gap: 0.2rem;
        }
        .hero-testimonial .test-text {
            font-size: 0.95rem;
            font-style: italic;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }
        .hero-testimonial .test-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .hero-testimonial .test-author img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }
        .hero-testimonial .test-author h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-main);
            margin: 0;
        }
        .hero-testimonial .test-author-info p {
            font-size: 0.75rem;
            color: var(--text-secondary);
            margin: 0;
        }

        /* Hero Visual / Floating Cards */
        .hero-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        .floating-cards {
            display: flex;
            gap: 1.25rem;
            transform: rotate(-15deg); 
        }
        .col {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }
        .col-1 { margin-top: 60px; }
        .col-2 { margin-top: 0; }
        .col-3 { margin-top: -60px; }

        .float-card {
            width: 100px;
            height: 100px;
            background: var(--bg-color);
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: var(--primary);
            transition: transform 0.3s ease;
        }
        .float-card.dark-icon { color: var(--text-secondary); }
        .float-card:hover {
            transform: translateY(-5px);
        }
        .float-card.center-card {
            background: linear-gradient(135deg, #a855f7, #6366f1);
            color: white;
            width: 125px;
            height: 125px;
            font-size: 2.5rem;
            margin: -12.5px -12.5px;
            z-index: 2;
            box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
        }

        /* Stats Section */
        .stats-section {
            background: var(--bg-secondary);
            padding: 0.5rem 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .stats-grid {
            display: flex;
            justify-content: space-around;
            align-items: center;
        }
        .stat-item {
            text-align: center;
        }
        .stat-num {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            color: var(--text-secondary);
        }

        /* Trusted Logos - Infinite Slider */
        .trusted-section {
            padding: 4rem 0;
            overflow: hidden;
            background: var(--bg-color);
        }
        .trusted-slider-wrapper {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }
        .trusted-track {
            display: flex;
            align-items: center;
            width: max-content;
            animation: scroll-trust 20s linear infinite;
        }
        .trusted-track:hover {
            animation-play-state: paused;
        }
        .logo-item {
            font-size: 1.75rem;
            font-weight: 800;
            color: #9ca3af;
            letter-spacing: 0.02em;
            padding: 0 4rem;
            flex-shrink: 0;
            transition: color 0.3s ease;
        }
        .logo-item:hover {
            color: #4b5563;
        }
        .logo-item.italic {
            font-style: italic;
            font-family: serif;
        }
        
        @keyframes scroll-trust {
            0% { transform: translateX(0); }
            100% { transform: translateX(-33.33333%); }
        }

        /* Showcase Demos */
        .showcase-section {
            padding: 6rem 0;
        }
        .showcase-section .label-small {
            color: var(--primary);
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            display: block;
        }
        .text-left {
            text-align: left;
            margin-bottom: 4rem;
        }
        .demos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .demo-card h3 {
            margin-top: 1.5rem;
            font-size: 1.15rem;
            margin-bottom: 0.5rem;
        }
        .demo-card p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .demo-img-wrapper {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            background-color: var(--bg-secondary);
            aspect-ratio: 16/10;
        }
        .demo-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            display: block;
            transition: transform 0.3s ease;
        }
        .demo-card:hover .demo-img-wrapper img {
            transform: scale(1.05);
        }

        /* Bottom CTA */
        .bottom-cta {
            padding: 4rem 0 7rem;
        }
        .cta-gradient-box {
            background: linear-gradient(135deg, #a855f7, #6366f1);
            border-radius: 20px;
            padding: 5rem 3rem;
            text-align: center;
            color: white;
            box-shadow: 0 20px 50px rgba(168, 85, 247, 0.25);
        }
        .cta-gradient-box h2 {
            color: white;
            font-size: 2.75rem;
            margin-bottom: 2.5rem;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }
        .btn-cta {
            padding: 1rem 2rem;
            font-size: 1.05rem;
            font-weight: 600;
        }
        .bg-white {
            background: var(--bg-color);
            color: var(--primary);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .bg-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            background: #f8f9fa;
        }
        .btn-glass {
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
        }
        .btn-glass:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }

        /* Footer override */
        .site-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 3rem 0;
            margin-top: 0;
        }
        .site-footer .footer-left p {
            font-size: 0.85rem;
            color: #9ca3af;
            font-weight: 400;
        }
        .site-footer .footer-links {
            display: flex;
            gap: 2rem;
        }
        .site-footer .footer-links a {
            font-size: 0.9rem;
            color: #6b7280;
            font-weight: 500;
            text-transform: none;
            letter-spacing: normal;
        }
        .site-footer .footer-links a:hover {
            color: var(--text-main);
        }

        /* Solid Foundation */
        .foundation-section {
            padding: 6rem 0;
            text-align: center;
        }
        .foundation-header {
            margin-bottom: 4rem;
        }
        .foundation-header h2 {
            font-size: 2.25rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
        }
        .foundation-header p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .foundation-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            overflow: hidden;
            background: var(--bg-color);
        }
        .foundation-card {
            padding: 2.5rem;
            text-align: left;
            border-right: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .foundation-card:nth-child(3n) {
            border-right: none;
        }
        .foundation-card:nth-last-child(-n+3) {
            border-bottom: none;
        }
        .f-card-img {
            height: 80px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            font-size: 3.5rem;
            color: var(--primary);
            opacity: 0.2;
        }
        .foundation-card h3 {
            font-size: 1.15rem;
            margin-bottom: 0.5rem;
            color: var(--text-main);
        }
        .foundation-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Package Section */
        .package-section {
            padding: 5rem 0;
        }
        .package-box {
            background: var(--bg-secondary);
            border-radius: 24px;
            padding: 5rem 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 0;
        }
        .package-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: auto;
            opacity: 0.05;
            pointer-events: none;
        }
        .package-box h2 {
            font-size: 2.25rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }
        .package-box p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }
        .package-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem 4rem;
            max-width: 800px;
            margin: 0 auto 3.5rem;
            text-align: left;
            position: relative;
            z-index: 1;
        }
        .package-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-main);
        }
        .package-features li i {
            color: #10b981;
        }
        .package-box .btn-dark {
            background: var(--text-main);
            color: var(--bg-color);
            padding: 1rem 2.5rem;
            font-size: 1.05rem;
            border-radius: 12px;
            position: relative;
            z-index: 1;
            display: inline-block;
            font-weight: 600;
            transition: transform 0.3s ease;
        }
        .package-box .btn-dark:hover {
            background: #1f2937;
            transform: translateY(-2px);
        }

        /* Wall of Love */
        .wall-of-love { padding: 6rem 0; background-color: var(--bg-secondary); }
        .wol-header { text-align: center; margin-bottom: 4rem; }
        .wol-header h2 { font-size: 2.25rem; font-weight: 800; margin-bottom: 0.75rem; }
        .wol-header p { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
        .wol-masonry {
            column-count: 3;
            column-gap: 1.5rem;
        }
        .wol-card {
            break-inside: avoid;
            background: var(--bg-color);
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            border: 1px solid var(--border-color);
        }
        .wol-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        .wol-card-header img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
        }
        .wol-card-info h4 {
            font-size: 1rem;
            margin: 0;
            color: var(--text-main);
        }
        .wol-card-info span {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }
        .wol-card p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .wol-btn-container { text-align: center; margin-top: 2rem; }

        /* Success Stories */
        .success-stories { padding: 5rem 0; background: var(--bg-color); }
        .ss-header { text-align: center; margin-bottom: 4rem; }
        .ss-header h2 { font-size: 2.25rem; font-weight: 800; margin-bottom: 0.75rem; }
        .ss-header p { font-size: 1.1rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto; }
        
        .ss-card {
            display: flex;
            background: var(--bg-color);
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            border: 1px solid var(--border-color);
            overflow: hidden;
            max-width: 1000px;
            margin: 0 auto;
        }
        .ss-image {
            flex: 1;
            position: relative;
            background: var(--bg-secondary);
        }
        .ss-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 350px;
        }
        .ss-content {
            flex: 1;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .ss-quote-icon {
            font-size: 2rem;
            color: #cbd5e1;
            margin-bottom: 1.5rem;
        }
        .ss-content p {
            font-size: 1rem;
            color: var(--text-main);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        .ss-author {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
        }
        .ss-controls {
            display: flex;
            justify-content: flex-end;
            gap: 0.5rem;
            margin-top: 1.5rem;
            margin-bottom: 3rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        .ss-controls button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--border-color);
            background: var(--bg-color);
            color: var(--text-main);
            cursor: pointer;
            transition: all 0.2s;
        }
        .ss-controls button:hover {
            background: var(--bg-secondary);
            border-color: var(--text-secondary);
        }
        .ss-bottom-action { text-align: center; }
        .btn-solid-dark {
            background: var(--text-main);
            color: var(--bg-color);
            padding: 0.9rem 2.5rem;
            border-radius: 9999px;
            font-weight: 600;
            transition: transform 0.2s;
            display: inline-block;
        }
        .btn-solid-dark:hover { background: #1f2937; transform: translateY(-2px); }

        /* FAQ Section */
        .faq-section { padding: 6rem 0; background-color: var(--bg-secondary); }
        .faq-header { text-align: center; margin-bottom: 4rem; }
        .faq-header h2 { font-size: 2.25rem; font-weight: 800; margin-bottom: 0.75rem; }
        .faq-header p { font-size: 1.1rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto; }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--bg-color);
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            border: 1px solid var(--border-color);
            padding: 1rem 2rem;
        }
        
        details.faq-item {
            border-bottom: 1px solid var(--border-color);
            padding: 1.25rem 0;
            transition: all 0.3s ease;
        }
        details.faq-item:last-child {
            border-bottom: none;
        }
        
        summary.faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            list-style: none;
            color: var(--text-main);
        }
        summary.faq-question::-webkit-details-marker {
            display: none; 
        }
        
        summary.faq-question i {
            color: #6b7280;
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }
        
        details[open] > summary.faq-question i.fa-plus {
            display: none;
        }
        details:not([open]) > summary.faq-question i.fa-minus {
            display: none;
        }
        
        .faq-answer {
            padding-top: 1rem;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .faq-footer {
            text-align: center;
            margin-top: 3rem;
            font-size: 0.95rem;
            color: var(--text-secondary);
        }
        .faq-footer a {
            color: var(--primary);
            font-weight: 600;
        }
        .faq-footer a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .hero { flex-direction: column; text-align: center; padding: 4rem 0; }
            .hero-testimonial { margin: 2rem auto 0; text-align: left; }
            .hero-visual { margin-top: 3rem; }
            .stats-grid, .trusted-logos { flex-direction: column; gap: 3rem; }
            .demos-grid { grid-template-columns: 1fr; padding: 15px;}
            .foundation-grid { grid-template-columns: 1fr; }
            .foundation-card { border-right: none; }
            .foundation-card:not(:last-child) { border-bottom: 1px solid var(--border-color); }
            .package-features { grid-template-columns: 1fr; gap: 1rem; }
            .wol-masonry { column-count: 2; }
            .ss-card { flex-direction: column; }
            .ss-image { height: 300px; }
            .ss-content { padding: 2.5rem; }
            .site-footer { flex-direction: column; gap: 2rem; text-align: center; }
            .cta-buttons { flex-direction: column; }
            .mobile-menu-toggle { display: block; }
            .nav-center { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg-color); padding: 1rem; box-shadow: var(--shadow-sm); z-index: 1000; align-items: flex-start; }
            .nav-center.active { display: flex; }
            .dashboard-mockup { flex-direction: column; padding: 1rem; }
            .mockup-sidebar { width: 100%; flex-direction: row; justify-content: center; margin-bottom: 1rem; }
            .mockup-grid { grid-template-columns: 1fr; }
            .floating-cards { display: none; }
        }
        @media (max-width: 600px) {
            .wol-masonry { column-count: 1; }
            .hero h1 { font-size: 2.5rem; }
            .nav-right .login-link { display: none; }
        }

        /* Dropdown Menu Styles */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            border: 1px solid var(--border-color);
            z-index: 9999;
            overflow: hidden;
            margin-top: 4px;
        }

        .dropdown-menu.show {
            display: block !important;
        }

        .dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            color: var(--text-main);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: background-color 0.2s ease;
            border-bottom: 1px solid var(--border-color);
        }

        .dropdown-menu a:last-child {
            border-bottom: none;
        }

        .dropdown-menu a:hover {
            background-color: var(--bg-secondary);
        }

        .dropdown-menu a i {
            width: 16px;
            text-align: center;
            color: var(--text-secondary);
        }

        .dropdown-toggle {
            position: relative;
            cursor: pointer;
        }

        .dropdown-toggle::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
