/* Base Variables */
:root {
    --primary: #527866; /* Green */
    --primary-light: #709d88;
    --primary-dark: #3a594b;
    --secondary: #14b8a6; /* Teal accent */
    --secondary-dark: #0d9488;
    --bg-dark: #0f172a; /* Slate 900 */
    --bg-darker: #020617; /* Slate 950 */
    --bg-card: rgba(30, 41, 59, 0.7); /* Slate 800 with opacity */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
    
    --gradient-primary: linear-gradient(135deg, #527866 0%, #3a594b 100%);
    --gradient-secondary: linear-gradient(135deg, #14b8a6 0%, #527866 100%);
    --gradient-dark: linear-gradient(to bottom right, #0f172a, #020617);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(82, 120, 102, 0.5);
    
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-main);
    line-height: 1.6;
}

body {
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(82, 120, 102, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(20, 184, 166, 0.1), transparent 25%);
    background-attachment: fixed;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: white;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

/* Glassmorphism Components */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1), var(--shadow-glow);
    border-color: rgba(82, 120, 102, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.25rem 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: white;
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: white;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: white;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background glow for hero */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(82, 120, 102, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(20, 184, 166, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.customer-portal-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
}

.customer-portal-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.customer-portal-card p {
    margin-bottom: 0;
    font-size: 0.875rem;
    max-width: 250px;
}

/* Hero Mockup Graphic */
.hero-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-mockup {
    width: 100%;
    max-width: 500px;
    height: 400px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    height: 40px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
}

.dots span:nth-child(2) { background: #f59e0b; }
.dots span:nth-child(3) { background: #709d88; }

.mockup-body {
    display: flex;
    flex: 1;
}

.mockup-sidebar {
    width: 80px;
    background: rgba(0, 0, 0, 0.1);
    border-right: 1px solid var(--border-color);
}

.mockup-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-stats {
    display: flex;
    gap: 1rem;
}

.stat-card {
    flex: 1;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card:nth-child(1) { background: linear-gradient(135deg, rgba(82, 120, 102, 0.2), transparent); }
.stat-card:nth-child(2) { background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), transparent); }

.mockup-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.list-item {
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 3s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Features Section */
.features {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

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

.feature-card {
    padding: 2.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Comparison Section */
.comparison {
    padding: 6rem 0;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.problem-box {
    padding: 3rem;
    border-radius: var(--radius-xl);
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.problem-title {
    color: #ef4444; /* Red */
    margin-bottom: 2rem;
}

.solution-box {
    padding: 3rem;
    background: linear-gradient(145deg, rgba(82, 120, 102, 0.1), rgba(30, 41, 59, 0.8));
    border-color: rgba(82, 120, 102, 0.2);
    transform: scale(1.05);
    z-index: 10;
}

.solution-title {
    color: var(--primary-light);
    margin-bottom: 2rem;
}

.problem-list li, .solution-list li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.problem-list li strong, .solution-list li strong {
    display: block;
    color: white;
    margin-bottom: 0.25rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0 8rem;
}

.cta-box {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(82, 120, 102, 0.2));
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.cta-box h2 {
    margin-bottom: 1.5rem;
}

.cta-box p {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-dark);
    padding: 6rem 0 4rem;
    color: var(--text-main);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-color);
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card .card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
}

.contact-card .email-icon {
    background: rgba(82, 120, 102, 0.15);
    color: #527866;
    box-shadow: 0 4px 10px rgba(82, 120, 102, 0.2);
}

.contact-card .chat-icon {
    background: rgba(20, 184, 166, 0.15);
    color: #0d9488;
    box-shadow: 0 4px 10px rgba(20, 184, 166, 0.2);
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.btn-outline-blue {
    background: transparent;
    border: 2px solid #527866;
    color: #527866;
    padding: 0.6rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    width: 100%;
    max-width: 250px;
    margin-top: auto;
}

.btn-outline-blue:hover {
    background: rgba(82, 120, 102, 0.05);
}

.btn-outline-blue i.fa-whatsapp {
    color: #25D366;
    margin-right: 10px;
    font-size: 1.3rem;
    vertical-align: middle;
}

.contact-footer-text {
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
}

.contact-footer-text a {
    color: #527866;
    text-decoration: none;
}

.contact-footer-text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.contact-link {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.contact-link:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container, .comparison-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .customer-portal-card {
        text-align: left;
    }
    
    .solution-box {
        transform: scale(1);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links.active, .nav-actions.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(2, 6, 23, 0.95);
        backdrop-filter: blur(12px);
        padding: 2rem;
        border-bottom: 1px solid var(--border-color);
        z-index: 99;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-container {
        grid-template-columns: 1fr;
    }
}

/* Auth Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    width: 100%;
    max-width: 420px;
    position: relative;
    padding: 2.5rem;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 1.25rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-modal:hover {
    background: rgba(255,255,255,0.2);
}

.auth-form h2 {
    margin-bottom: 0.5rem;
}

.auth-form p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.hidden {
    display: none !important;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: white;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(82, 120, 102, 0.05);
}

.btn-full {
    width: 100%;
    margin-top: 0.5rem;
}

.auth-switch {
    text-align: center;
    font-size: 0.875rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.auth-switch a {
    color: var(--primary-light);
    font-weight: 600;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    min-width: 300px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.toast-show {
    transform: translateX(0);
}

.toast-success { border-left: 4px solid var(--primary); }
.toast-error { border-left: 4px solid #ef4444; }

.toast-title {
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.toast-message {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}
.faq-question:hover {
    color: var(--primary);
}
.faq-icon {
    color: var(--primary);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(15, 23, 42, 0.4);
}
.faq-answer p {
    padding: 0 1.5rem;
    margin: 0;
    color: var(--text-gray);
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

/* Floating Pill Navigation Override */
.navbar {
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    max-width: 1000px !important;
    border-radius: 50px !important;
    background: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    padding: 0.5rem 2rem !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}
.nav-container {
    height: auto !important;
    min-height: 60px !important;
}
body {
    padding-top: 100px !important; /* Offset for pill */
}

/* Bento Box Feature Grid */
.feature-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
}
.bento-large {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    background: linear-gradient(135deg, rgba(30,41,59,0.8) 0%, rgba(16,185,129,0.1) 100%) !important;
}
.bento-large h3 {
    font-size: 2rem !important;
}
.bento-large p {
    font-size: 1.1rem !important;
}
@media (max-width: 900px) {
    .feature-grid { grid-template-columns: 1fr !important; }
    .bento-large { grid-column: span 1 !important; grid-row: span 1 !important; }
}

/* 3D Hover Effects */
.feature-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s !important;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 2px solid transparent;
    border-radius: inherit;
    transition: border-color 0.4s;
    pointer-events: none;
}
.feature-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15) !important;
}
.feature-card:hover::before {
    border-color: rgba(16, 185, 129, 0.5);
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Search Modal */
.faq-modal-container {
    width: 90%;
    max-width: 1000px;
    padding: 3rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.faq-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.faq-modal-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}
.faq-search-wrapper {
    position: relative;
    margin-bottom: 2rem;
}
.faq-search-wrapper .search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 1.2rem;
}
.faq-search-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: rgba(15, 23, 42, 0.4);
    color: var(--text-dark);
    font-size: 1.1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}
.faq-search-wrapper input:focus {
    border-color: var(--primary);
}
.faq-modal-list .faq-item {
    margin-bottom: 1rem;
}
.faq-modal-right img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    border-radius: 20px;
}

@media (max-width: 900px) {
    .faq-modal-grid {
        grid-template-columns: 1fr;
    }
    .faq-modal-right {
        display: none;
    }
    .faq-modal-container {
        padding: 2rem;
    }
}

/* New FAQ Layout Overrides */
.faq-modal-grid-new {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: start;
}
.still-questions-block {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    color: white;
    box-shadow: 0 20px 40px rgba(16,185,129,0.25);
}
.still-questions-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}
.still-questions-block p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.still-questions-block a {
    display: block;
    text-align: center;
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.still-questions-block a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
    .faq-modal-grid-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
