/* style.css - FieldServ.ai Global Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #1e293b;
    --dark-secondary: #334155;
    --gold: #ffffff;
    --orange: #ea580c;
    --white: #ffffff;
    --gray: rgba(255, 255, 255, 0.9);
    --light-gray: rgba(255, 255, 255, 0.7);
    --card-bg: rgba(255, 255, 255, 0.1);
    --card-border: rgba(255, 255, 255, 0.2);
    --primary-blue: #1e40af;
    --secondary-blue: #1e293b;
    --light-blue: rgba(30, 41, 59, 0.05);
    --accent-orange: #ea580c;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-light: #e2e8f0;
    --background-light: #f8fafc;
    --background-muted: #f1f5f9;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: white;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
}

/* Animated background */
.particle-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(30, 64, 175, 0.1);
    opacity: 0.3;
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-100px) translateX(100px); }
    66% { transform: translateY(100px) translateX(-100px); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 24px 5%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

nav.scrolled {
    padding: 20px 5%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-login {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.nav-login:hover {
    color: var(--primary-blue);
    background: var(--background-muted);
    border-color: var(--primary-blue);
}

.cta-button {
    background: var(--primary-blue);
    color: var(--white) !important;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.15);
    letter-spacing: 0.025em;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.25);
    background: #1d4ed8;
}

.outline-button {
    padding: 12px 30px;
    border: none;
    color: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    background: var(--orange);
}

.outline-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 130, 0, 0.3);
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 5% 40px;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    text-align: left;
    padding-right: 40px;
}

.hero-text .hero-badge {
    text-align: left;
    display: inline-block;
    margin: 0 0 24px 0;
}

.hero-image {
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(to right, #9333ea, #3b82f6);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.gradient-headline {
    font-size: clamp(36px, 6.5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--text-primary);
    margin-top: 0;
}

.hero-subtitle {
    font-size: clamp(16px, 2.8vw, 22px);
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 400;
    letter-spacing: 0.3px;
    max-width: 580px;
    line-height: 1.6;
    margin-top: 16px;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Power Statement */
.power-statement {
    padding: 100px 5%;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
}

.power-statement h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: #1e40af;
    font-weight: 700;
}

/* Features Grid */
.features {
    padding: 120px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 24px;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 20px;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: 0 12px 40px rgba(30, 64, 175, 0.15);
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 64, 175, 0.08);
    border: 1px solid rgba(30, 64, 175, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-primary) !important;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-primary) !important;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
}

/* Empire Section */
.empire-section {
    padding: 120px 5%;
    background-color: white;
    text-align: center;
    position: relative;
}

.empire-section h2 {
    font-size: clamp(40px, 6vw, 64px);
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--text-primary);
}

.empire-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
}

.stat-label {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Mobile App Section */
.mobile-section {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
    background-color: white;
}

.mobile-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    min-height: auto;
}

.mobile-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 80vh;
}

.mobile-text h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 30px;
    color: var(--text-primary);
}

.mobile-text p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.app-note {
    background: rgba(249, 130, 0, 0.1);
    border: 1px solid var(--orange);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    font-size: 16px;
    color: #1f2937;
}

.mobile-mockup {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 80vh;
    gap: 20px;
}

.app-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.app-button {
    background: #000000;
    border: none;
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
}

.app-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.app-button i {
    font-size: 32px;
}

.app-button-text {
    text-align: left;
}

.app-button-text span {
    display: block;
    font-size: 14px;
    opacity: 0.7;
}

.app-button-text strong {
    display: block;
    font-size: 18px;
}

.mobile-mockup {
    position: relative;
    text-align: center;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    padding: 20px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #1e40af;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 5%;
    background-color: white;
}

/* CTA Section */
.cta-section {
    padding: 120px 5%;
    text-align: center;
    background-color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cta-section h2 {
    font-size: clamp(40px, 6vw, 56px);
    margin-bottom: 20px;
    color: var(--text-primary);
}

.cta-section p {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Footer */
footer {
    padding: 80px 5% 60px;
    background: var(--secondary-blue);
    border-top: 1px solid var(--border-light);
    color: white;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-column a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Large Desktop Responsive */
@media (min-width: 1400px) {
    nav {
        padding: 24px 8%;
    }
    
    .hero {
        padding: 150px 8% 40px;
    }
}

/* Desktop Responsive */
@media (max-width: 1399px) and (min-width: 1200px) {
    nav {
        padding: 24px 6%;
    }
    
    .hero {
        padding: 145px 6% 40px;
    }
}

/* Laptop Responsive */
@media (max-width: 1199px) and (min-width: 1025px) {
    nav {
        padding: 22px 5%;
    }
    
    .hero {
        padding: 135px 5% 40px;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    nav {
        padding: 20px 5%;
    }
    
    .hero {
        padding: 130px 5% 40px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 80px 5% 80px; /* Less top padding on mobile */
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--primary-blue);
        cursor: pointer;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .mobile-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
/* Container for content pages */
.container {
    max-width: 1200px; /* Changed from 900px */
    margin: 0 auto;
    padding: 120px 5% 120px; /* Extra top padding for fixed nav */
}
/* Privacy/Terms/Support specific styles */
.privacy-header,
.terms-header,
.support-header {
    text-align: center;
    margin-bottom: 60px;
}

.last-updated {
    color: var(--gray);
    font-size: 16px;
}

/* Content sections */
.privacy-section,
.terms-section,
.support-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.privacy-section:hover,
.terms-section:hover {
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.02);
}

/* Support grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.support-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #ffffff;
}

/* Highlight boxes */
.highlight-box {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
}

.highlight-box h3 {
    color: var(--gold);
}

/* Table of Contents */
.toc {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    position: relative; /* Add this */
    z-index: 1; /* Add this to keep it below other elements */
}

.toc h3 {
    color: var(--gold);
    margin-bottom: 20px;
}

.toc ul {
    list-style: none;
    margin-left: 0;
}

.toc li {
    margin-bottom: 12px;
}

.toc a {
    color: var(--gray);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc a:hover {
    color: var(--gold);
    text-decoration: none;
}

/* FAQ Styles */
.faq-section {
    margin-bottom: 80px;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: var(--gray);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
    line-height: 1.8;
    display: none; /* Hidden by default */
}

.faq-answer a {
    color: var(--gold);
    text-decoration: none;
}

/* Contact section */
.contact-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 60px 40px;
}

.contact-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-info a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

/* Support link */
.support-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.support-link:hover {
    gap: 12px;
}



/* Important notice */
.important-notice {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    color: #FF3B30;
}

/* Agreement box */
.agreement-box {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 60px 0;
}

.agreement-box h3 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 20px;
}

.agreement-box p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
}

/* Update h2 styles for all pages */
h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--gold);
}

h3 {
    font-size: 20px;
    margin: 20px 0 15px;
    color: var(--white);
}

/* Terms page number badges */
.number {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
}
/* Fix any floating/overlapping issues with sections */
.privacy-section,
.terms-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative; /* Add this */
    z-index: 2; /* Higher than TOC */
}

/* Ensure proper stacking context */
main {
    position: relative;
    z-index: 1;
}

/* Hero title styling */
.hero-title {
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.1;
}

/* Gradient headline class - mimics h1 exactly */
.gradient-headline {
    background: linear-gradient(to bottom, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    text-align: left;
    margin: 0;
    padding: 0;
    display: block;
    letter-spacing: -0.5px;
}



/* Specific sizing for different headline types */
h1.gradient-headline {
    font-size: clamp(32px, 5vw, 48px);
}

h2.gradient-headline {
    font-size: clamp(32px, 5vw, 48px);
}

/* Tablet Responsive Hero Section */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero {
        padding: 130px 5% 40px;
    }
    
    .hero-grid {
        gap: 40px;
    }
    
    .hero-text {
        padding-right: 20px;
    }
}

/* Small Tablet Responsive Hero Section */
@media (max-width: 900px) and (min-width: 769px) {
    .hero {
        padding: 125px 5% 40px;
    }
    
    .hero-grid {
        gap: 30px;
    }
    
    .hero-text {
        padding-right: 15px;
    }
}

/* Mobile Responsive Hero Section */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 5% 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        padding-right: 0;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-text .hero-badge {
        text-align: center;
        margin: 0 auto 24px auto;
    }
    
    .gradient-headline {
        font-size: clamp(28px, 5vw, 40px);
        line-height: 1.3;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: clamp(14px, 2vw, 18px);
        max-width: 100%;
        margin: 0 auto 32px auto;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image img {
        max-width: 90%;
        margin: 0 auto;
    }
}

/* AI Tools Grid Responsive */
@media (max-width: 1200px) {
    .ai-tools-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .ai-tools-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* Features Grid Responsive for 3x3 layout */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}