/* Global Vars & Reset */
:root {
    /* OLD THEME (Indigo/Slate) 
    --primary-color: #4F46E5;
    --primary-hover: #4338ca;
    --secondary-color: #0f172a;
    --accent-color: #6366f1;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    --success: #10b981;
    */

    /* NEW THEME (Lime/Lemon) */
    --primary-color: #BBD915;
    /* Primary: Accent/Highlights */
    --primary-hover: #a3be12;
    --secondary-color: #111827;
    /* Accent: Text/Dark elements */
    --accent-color: #FFF44F;
    /* Secondary: Secondary highlights */

    --text-dark: #111827;
    --text-muted: #4b5563;

    --bg-light: #F9FBE7;
    /* Background: Page background */
    --bg-white: #ffffff;
    --bg-dark: #111827;

    --success: #10b981;
    --border-color: #e2e8f0;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --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 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-med: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    /* Changed directly to bg-light as requested for page bg */
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button,
.btn {
    cursor: pointer;
    font-family: inherit;
    border: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utilities */
.section-padding {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--bg-white);
}

/* Navbar */
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-light);
    /* Default matches page background */
    border-bottom: 1px solid transparent;
    /* Hidden initially */
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.05em;
    text-decoration: none;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo-img {
    height: 40px;
    width: auto;
}

.logo .dot {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    transition: var(--transition-fast);
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    /* Dark text on bright lime background */
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
}

.btn-secondary:hover {
    color: var(--primary-color);
}

.btn-outline {
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--text-dark);
}

.btn-outline:hover {
    background: var(--bg-light);
    border-color: var(--text-dark);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 10rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(187, 217, 21, 0.15);
    /* Primary with opacity */
    color: var(--text-dark);
    border: 1px solid var(--primary-color);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-trust {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-trust .rating i {
    color: var(--accent-color);
    /* Secondary: Yellow */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    /* To ensure visibility on light bg */
}

/* Hero Image / Mockup */
.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}


.dashboard-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.1s ease-out;
    /* Smooth follow */
    transform-style: preserve-3d;
}

/* Remove hover effect as JS handles it now */
/* .dashboard-mockup-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
} */

.dashboard-mockup-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg), 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Floating Cards Effect */
.floating-card {
    position: absolute;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.c-1 {
    top: 20%;
    left: -30px;
}

.c-1 i {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 5px;
    border-radius: 50%;
}

.c-1 .text-lines span {
    display: block;
    width: 60px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 2px;
}

.c-2 {
    bottom: 40px;
    right: -20px;
    animation-delay: 1.5s;
}

.c-2 i {
    color: #16a34a;
    /* Green for growth chart */
    font-size: 1.5rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


/* Brands Section */
.brands {
    margin: 2rem 0;
    padding: 2rem 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.brand-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 2rem;
    opacity: 0.6;
}

.brand-logo {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0;
}

.brand-logo span {
    font-weight: 400;
}

/* Features */
.section-header {
    margin-bottom: 4rem;
}

.subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition-med);
    background: white;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--bg-light);
    /* Light Lime Page BG */
    color: var(--secondary-color);
    /* Dark Text */
    border: 1px solid var(--primary-color);
}

/* Removed individual rainbow colors to stick to palette */
.blue,
.purple,
.pink,
.orange,
.cyan,
.green {
    /* fallback or override if needed */
    background: var(--bg-light);
    color: var(--text-dark);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}


/* Metrics */
/* Metrics - Old Palette Redesign */
.metrics {
    background-color: #F9FBE7;
    /* Using site main bg (Lime Light) as requested */
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.metric-item {
    background: white;
    padding: 3rem 1.5rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    border-radius: 4px;
    /* Clean look */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.metric-item h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: inline-block;
    color: #0f172a;
    /* Slate 900 */
    line-height: 1;
}

.metric-item span {
    font-size: 2.5rem;
    color: #0f172a;
    /* Slate 900 - Matching number */
    font-weight: 800;
    line-height: 1;
}

.metric-item p {
    color: #64748b;
    /* Slate 500 */
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* Responsive Metrics */
@media (max-width: 900px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.user-info h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.user-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #FAFBF6;
    border-radius: var(--border-radius-lg);
    padding: 0 2rem;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    background: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
}

.faq-question .icon {
    transition: transform 0.3s ease;
    background: var(--bg-white);
    border-radius: 50%;
    padding: 5px;
    box-shadow: var(--shadow-sm);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}

/* CTA */
.cta-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    border-radius: var(--border-radius-lg);
}

.cta-box h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    color: #e2e8f0;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #FAFBF6;
    /* Off-white / very light gray-lime tint */
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand p {
    margin-top: 1rem;
    color: var(--text-muted);
    max-width: 300px;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.footer-col a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 1.2rem;
}

.social-links a:hover {
    color: var(--primary-color);
}

html {
    scroll-behavior: smooth;
}

/* Animations Logic classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}


/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-container {
        flex-wrap: wrap;
        /* Allow items to wrap when menu opens */
    }

    .nav-links,
    .nav-actions {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding-top: 1.5rem;
        background: white;
        /* Ensure readability */
        padding-bottom: 1rem;
        border-top: 1px solid var(--border-color);
    }

    .navbar.active {
        background: white;
        /* Force solid bg when open */
    }

    .navbar.active .nav-links,
    .navbar.active .nav-actions {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
    }

    .metrics-grid {
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Testimonials V2 - Grid Layout matching reference image */
.testimonial-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card-v2 {
    /* Using OLD THEME colors as requested for this section */
    background-color: #FAFBF6;
    /* Off-white */
    padding: 2rem;
    border-radius: 24px;
    /* Large rounded corners as per image */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.avatar-v2 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.card-header h4 {
    margin: 0;
    font-size: 1rem;
    color: #1e293b;
    /* Slate 800 - Contrast Text */
    font-weight: 700;
    line-height: 1.2;
}

.card-header span {
    font-size: 0.85rem;
    display: block;
    color: #64748b;
    /* Slate 500 - Muted Text */
    font-weight: 500;
}

.quote-v2 {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
    /* Slate 700 */
    margin: 0;
}

/* Responsive adjustments for Testimonials Grid */
@media (max-width: 1200px) {
    .testimonial-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonial-grid-v2 {
        grid-template-columns: 1fr;
    }
}

/* Data Model Section (New) */
.data-model {
    background-color: #F9FBE7;
    /* Updated to requested Lime BG */
}

.model-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.model-content {
    flex: 1;
}

.model-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
    /* Old Dark Heading */
}

.model-sub {
    font-size: 1.1rem;
    color: #64748b;
    /* Old Muted Text */
    margin-bottom: 3rem;
    max-width: 500px;
}

.model-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.m-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.mf-icon {
    color: #BBD915;
    /* Old Theme Primary: Indigo */
    font-size: 1.5rem;
    margin-top: -5px;
}

.m-feature h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #1e293b;
    /* Old Theme Text Dark */
}

.m-feature p {
    font-size: 0.95rem;
    color: #64748b;
    /* Old Theme Text Muted */
    line-height: 1.5;
}

/* Right Visual */
.model-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.visual-bg {
    background: linear-gradient(135deg, #a3be12 0%, #BBD915 100%);
    /* background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%); */
    /* background: linear-gradient(135deg, #BBD915 100%); */
    /* Light blueish/cool bg similar to image */
    padding: 3rem;
    border-radius: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    /* Changed to flex to align content */
    flex-direction: column;
    /* Stack children vertically */
    align-items: center;
    /* Center children horizontally */
}

.visual-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    width: 100%;
    /* Ensure card takes full width of container padding allows */
}

.vc-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 1rem;
}

.vc-icon {
    width: 36px;
    height: 36px;
    background: #e0e7ff;
    /* Soft Indigo */
    color: #4338ca;
    /* Indigo Dark */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc-header span {
    font-weight: 700;
    color: #1e293b;
    /* Old Theme Text Dark */
}

.vc-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vc-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8fafc;
}

.vc-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e293b;
    /* Old Theme Text Dark */
    font-weight: 500;
}

.vc-item i {
    color: #94a3b8;
}

.vc-right {
    color: #64748b;
    /* Old Theme Text Muted */
    font-size: 0.85rem;
}

.vc-more {
    margin-top: 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vc-btn-container {
    margin-top: 2rem;
    text-align: center;
    z-index: 2;
    position: relative;
}

.btn-connect {
    background: #4F46E5;
    /* Old Theme Primary: Indigo */
    color: white;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
    border-radius: 30px;
    padding: 0.75rem 2rem;
}

.btn-connect:hover {
    background: #4338ca;
    /* Darker Indigo */
}

@media (max-width: 900px) {
    .model-grid {
        flex-direction: column;
        text-align: center;
    }

    .m-feature {
        flex-direction: column;
        align-items: center;
    }

    .visual-bg {
        padding: 2rem;
    }
}

/* Contact Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: all 0.2s;
}

.modal-close:hover {
    background: #e2e8f0;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(187, 217, 21, 0.1);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
}

@media (max-width: 600px) {
    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}