:root {
    --bg-color: #08030c;
    --card-bg: rgba(20, 10, 30, 0.4);
    --card-border: rgba(126, 34, 206, 0.15);
    --text-main: #f8f6fb;
    --text-muted: #948ea5;
    --primary-neon: #7e22ce; 
    --primary-neon-glow: rgba(126, 34, 206, 0.5);
    --secondary-neon: #d946ef; 
    --danger: #ef4444;
    --success: #10b981;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo span {
    font-family: 'Outfit', sans-serif;
}

/* Background Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.35;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-neon);
    top: -150px;
    left: -150px;
    animation: float-slow 12s infinite alternate;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-neon);
    top: 50%;
    right: -100px;
    animation: float-slow 10s infinite alternate-reverse;
}

/* Glass & Card Base */
.glass-effect {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
}

/* Typography */
.text-gradient {
    background: linear-gradient(135deg, #e879f9, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    z-index: 1000;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.2px;
}

.nav-icon {
    width: 32px;
    height: 32px;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-main);
}

/* Buttons */
.btn-primary, .btn-primary-small, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary-small {
    padding: 10px 24px;
    background: var(--primary-neon);
    color: white;
    font-size: 0.9rem;
}

.btn-primary-small:hover {
    box-shadow: 0 0 24px var(--primary-neon-glow);
    background: #9333ea;
}

.btn-primary {
    padding: 16px 40px;
    background: linear-gradient(135deg, #a855f7, #7e22ce);
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(126, 34, 206, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.4);
}

.btn-secondary {
    padding: 15px 38px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}
.faq-icon-box.blue { background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2); color: #3B82F6; }
.faq-icon-box.purple { background: rgba(139, 92, 246, 0.1); border: 1px solid rgba(139, 92, 246, 0.2); color: #8B5CF6; }
.faq-icon-box.red { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); color: #EF4444; }
.faq-icon-box.green { background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); color: #10B981; }
.faq-icon-box.orange { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.2); color: #F59E0B; }
.faq-icon-box.gray { background: rgba(156, 163, 175, 0.1); border: 1px solid rgba(156, 163, 175, 0.2); color: #9CA3AF; }

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 20px 80px;
}

.hero-content {
    max-width: 850px;
}

.icon-container {
    margin-bottom: 40px;
}

.hero-icon {
    width: 140px;
    height: 140px;
    filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.6));
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Bento Grid (Features) */
.features-section {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 24px;
    grid-auto-flow: dense;
}

.bento-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: #1E0A3A; /* Deep Surface Purple */
    border: 1px solid rgba(157, 78, 221, 0.2); /* Vibrant Purple border */
    border-radius: 24px;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(157, 78, 221, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(157, 78, 221, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(157, 78, 221, 0.3);
}

.bento-card:hover::before {
    opacity: 1;
}

.card-large {
    grid-column: span 2;
    grid-row: span 2;
    background: #10081C; /* Dark Purple */
}

.card-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.card-small {
    grid-column: span 1;
    grid-row: span 1;
}

.card-wide {
    grid-column: span 4;
}

.card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.row-layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.text-content {
    flex: 1;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.bento-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    flex-grow: 1;
}

/* Mock UI Elements (Productivity Feel) */
.mock-ui {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-stat {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.text-danger { color: var(--danger); }
.text-success { color: var(--success); }
.mt-10 { margin-top: 24px; }

.progress-bar-container {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 10px;
}

.danger-bar { background: var(--danger); }
.success-bar { background: var(--success); }

/* Mock Streak */
.mock-streak {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.day {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}
.category-badge.blue { background: rgba(59, 130, 246, 0.12); color: #3B82F6; border: 1px solid rgba(59, 130, 246, 0.3); }
.category-badge.purple { background: rgba(139, 92, 246, 0.12); color: #8B5CF6; border: 1px solid rgba(139, 92, 246, 0.3); }
.category-badge.red { background: rgba(239, 68, 68, 0.12); color: #EF4444; border: 1px solid rgba(239, 68, 68, 0.3); }
.category-badge.green { background: rgba(16, 185, 129, 0.12); color: #10B981; border: 1px solid rgba(16, 185, 129, 0.3); }
.category-badge.orange { background: rgba(245, 158, 11, 0.12); color: #F59E0B; border: 1px solid rgba(245, 158, 11, 0.3); }
.category-badge.gray { background: rgba(156, 163, 175, 0.12); color: #9CA3AF; border: 1px solid rgba(156, 163, 175, 0.3); }

.day.active {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.4);
}

.day.current {
    background: var(--primary-neon);
    color: white;
    box-shadow: 0 0 15px var(--primary-neon-glow);
}

/* Mock Toggle */
.mock-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.toggle-track {
    width: 60px;
    height: 32px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    transition: background 0.3s;
}

.toggle-track.active {
    background: var(--primary-neon);
}

.toggle-thumb {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-track.active .toggle-thumb {
    transform: translateX(28px);
}

.toggle-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Audience Section */
.audience-section {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.audience-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.audience-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    transition: all 0.3s;
}

.audience-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.audience-card.professional {
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.08) 0%, rgba(0,0,0,0) 100%);
    border-color: rgba(168, 85, 247, 0.2);
}

.pro-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.audience-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.audience-card h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.audience-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 20px 40px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-icon {
    width: 28px;
    height: 28px;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-main);
}

/* Animations */
@keyframes float-slow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 60px); }
}

.floating-anim {
    animation: float 5s ease-in-out infinite;
}

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

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-wide, .card-large, .card-medium {
        grid-column: span 2;
    }
    .audience-bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-actions { flex-direction: column; }
    .nav-links { display: none; }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .card-wide, .card-large, .card-medium, .card-small {
        grid-column: span 1;
        grid-row: auto;
    }
    .row-layout {
        flex-direction: column;
        align-items: flex-start;
    }
    .audience-bento {
        grid-template-columns: 1fr;
    }
    .cta-buttons { flex-direction: column; }
}

/* Clean Mockup Showcase */
.mockup-section {
    padding: 80px 20px 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.mockup-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.clean-phone {
    width: 280px;
    height: 580px;
    background: #1E0A3A;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px -12px rgba(157, 78, 221, 0.25);
    border: 1px solid rgba(157, 78, 221, 0.15);
    position: relative;
    transition: transform 0.3s ease;
}
.center-phone {
    transform: translateY(-20px);
    box-shadow: 0 35px 60px -15px rgba(157, 78, 221, 0.4);
    border-color: rgba(157, 78, 221, 0.4);
}
.clean-screen {
    background: #10081C;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
}
/* App Guard Mock Screens CSS */
.mock-bg {
    background: #0B0514;
    color: #fff;
    font-family: 'Inter', sans-serif;
}
.mock-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}
.mock-header-row.left-align {
    justify-content: flex-start;
}
.mock-icon {
    font-size: 1.2rem;
    cursor: pointer;
}
.mock-tabs {
    display: flex;
    background: #170C27;
    border-radius: 12px;
    padding: 4px;
    margin-top: 20px;
}
.mock-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}
.active-tab {
    background: #7E22CE;
    color: white;
}
.badge {
    background: #EF4444;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    margin-left: 4px;
}
.mock-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    overflow-y: auto;
}
.mock-list-item {
    display: flex;
    align-items: center;
    background: #170C27;
    padding: 12px;
    border-radius: 16px;
}
.highlighted-item {
    border: 1px solid #9D4EDD;
    position: relative;
    background: rgba(157, 78, 221, 0.05);
}
.mock-app-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 16px;
}
.insta { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.bg-blue::before { background: #3B82F6; }
.bg-purple::before { background: #8B5CF6; }
.bg-red::before { background: #EF4444; }
.bg-green::before { background: #10B981; }
.bg-orange::before { background: #F59E0B; }
.bg-gray::before { background: #9CA3AF; }
.wa { background: #25D366; }
.yt { background: #fff; color: #FF0000; font-size: 1.8rem; }
.yt-large { width: 64px; height: 64px; font-size: 2.5rem; background: #fff; color: #FF0000; margin-right: 20px; border-radius: 16px; }
.yt-huge { width: 80px; height: 80px; font-size: 3rem; background: #fff; color: #FF0000; border-radius: 20px; }
.chrome { background: conic-gradient(#ea4335 0 120deg, #34a853 120deg 240deg, #fbbc04 240deg 360deg); }
.mock-app-info { flex: 1; }
.mock-app-name { font-weight: 600; font-size: 1rem; margin-bottom: 2px; }
.mock-app-time { font-size: 0.8rem; color: #948ea5; }
.mock-arrow { font-size: 1.5rem; color: #948ea5; }
.mock-pointer { position: absolute; right: -10px; bottom: -10px; font-size: 2.5rem; animation: float 2s infinite; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5)); }

.mock-app-header { display: flex; align-items: center; }
.mock-section-title { font-size: 0.85rem; color: #948ea5; text-align: center; margin: 24px 0 12px; }
.mock-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mock-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.mock-grid-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.1); padding: 16px 8px; border-radius: 12px; text-align: center; font-size: 0.85rem; color: #948ea5; background: #170C27; }
.active-btn { border-color: #9D4EDD; color: #9D4EDD; background: rgba(157, 78, 221, 0.05); }
.mock-btn-icon { font-size: 1.4rem; margin-bottom: 8px; }
.mock-picker { display: flex; flex-direction: column; align-items: center; justify-content: center; margin-top: 12px; }
.picker-row { display: flex; gap: 40px; font-size: 1.5rem; font-weight: 500; padding: 12px 24px; align-items: center; }
.picker-row.highlight { background: #170C27; border-radius: 12px; width: 100%; justify-content: center; border: 1px solid rgba(255,255,255,0.05); }
.picker-row small { font-size: 0.9rem; color: #948ea5; font-weight: 400; margin-left: 4px; }
.mock-bottom-btn { background: #7E22CE; color: white; text-align: center; padding: 16px; border-radius: 12px; font-weight: 600; cursor: pointer; width: 100%; box-shadow: 0 4px 15px rgba(126, 34, 206, 0.4); }
.mock-bottom-btn.outlined { background: transparent; border: 1px solid #9D4EDD; box-shadow: none; color: white; }

.mock-shield { font-size: 1.5rem; background: rgba(157, 78, 221, 0.2); padding: 8px; border-radius: 12px; }
.mock-center-icon { display: flex; justify-content: center; margin: 40px 0; }
.glow-yt { box-shadow: 0 0 60px rgba(157, 78, 221, 0.6); }
.mock-quote { text-align: center; font-size: 0.95rem; line-height: 1.6; margin-bottom: 40px; font-weight: 500; }
.mock-timer-card { background: #170C27; padding: 16px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); margin-bottom: 16px; }
.mock-timer-text { font-size: 2rem; font-weight: 700; text-align: center; margin-top: 8px; }

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.15rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}
.faq-icon {
    font-size: 1.5rem;
    color: #9D4EDD;
    transition: transform 0.3s;
}
.faq-question.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 24px;
}
.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
}
.faq-question.active + .faq-answer {
    padding-bottom: 24px;
    max-height: 300px;
}

@media (max-width: 900px) {
    .center-phone {
        transform: translateY(0);
    }
    .hero-title {
        font-size: 3.2rem;
    }
    .section-title {
        font-size: 2.4rem;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .card-large, .card-medium, .card-small, .card-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    .navbar {
        width: 95%;
        padding: 12px 16px;
    }
    .nav-links {
        display: none; /* Hide navigation links on small screens */
    }
    .hero {
        padding: 140px 16px 60px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    .hero-icon {
        width: 100px;
        height: 100px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }
    .hero-actions .btn-primary, .hero-actions .btn-secondary {
        width: 100%;
        margin-bottom: 16px;
    }
    .section-title {
        font-size: 2rem;
    }
    .row-layout {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    .mock-grid-2, .mock-grid-3 {
        grid-template-columns: 1fr;
    }
    .picker-row {
        flex-direction: column;
        gap: 16px;
    }
    .faq-section {
        padding: 60px 16px;
    }
}
