
:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --accent-color: #00c9a7;
    --background-color: #0a0e27;
    --surface-color: #1a1f3a;
    --text-color: #ffffff;
    --text-secondary: #b0b8d4;
    --card-color: #141829;
    --border-color: #2d3748;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --gradient-secondary: linear-gradient(135deg, #2575fc 0%, #00c9a7 100%);
    --brand-spacing: 1rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.1);
}

.navbar-logo ion-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.navbar-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.navbar-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: var(--accent-color);
}

.navbar-cta {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
}

/* Hero Section */
.hero {
    position: relative;
    margin-top: 60px;
    padding: 120px 2rem 80px;
    background: var(--background-color);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.1;
    animation: blob-animation 8s infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    top: 50%;
    left: -50px;
    animation-delay: 2s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--accent-color);
    bottom: -100px;
    right: 10%;
    animation-delay: 4s;
}

@keyframes blob-animation {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(106, 17, 203, 0.1);
    color: var(--accent-color);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid var(--accent-color);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(106, 17, 203, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(106, 17, 203, 0.5);
}

.btn-secondary {
    background: var(--card-color);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--background-color);
    box-shadow: 0 10px 30px rgba(0, 201, 167, 0.3);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn ion-icon {
    font-size: 1.3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* App Badge */
.app-badge {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.1), rgba(37, 117, 252, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(106, 17, 203, 0.1);
}

.app-badge:hover {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.15), rgba(37, 117, 252, 0.15));
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(106, 17, 203, 0.15);
}

.app-badge-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.app-store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.store-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 201, 167, 0.2);
}

.store-button.google-play:hover {
    border-color: #34a853;
    box-shadow: 0 8px 24px rgba(52, 168, 83, 0.15);
}

.store-button.apple-app {
    opacity: 0.6;
    cursor: not-allowed;
}

.store-button.apple-app:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-color: rgba(255, 255, 255, 0.2);
    transform: none;
    box-shadow: none;
}

.store-icon {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.store-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.store-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.store-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    padding: 100px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

/* Staggered animation for feature cards */
.feature-card {
    animation: slideInUp 0.6s ease-out both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.08), rgba(37, 117, 252, 0.08));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    pointer-events: none;
}

.feature-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(106, 17, 203, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.12), rgba(37, 117, 252, 0.12));
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.2), rgba(37, 117, 252, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon ion-icon {
    font-size: 2rem;
    color: var(--secondary-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Why Us Section */
.why-us {
    padding: 100px 2rem;
    background: linear-gradient(180deg, rgba(106, 17, 203, 0.1), transparent);
}

.why-us {
    max-width: 1200px;
    margin: 0 auto;
}

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

.why-card {
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.08), rgba(37, 117, 252, 0.08));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.why-card:hover {
    border-color: var(--accent-color);
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 201, 167, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.12), rgba(37, 117, 252, 0.12));
}

.why-card ion-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Use Cases Section */
.use-cases {
    padding: 100px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.use-case {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.08), rgba(37, 117, 252, 0.08));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.use-case:hover {
    border-color: var(--secondary-color);
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 60px rgba(37, 117, 252, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.12), rgba(37, 117, 252, 0.12));
}

.use-case ion-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.use-case h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.use-case p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Screenshots Section */
.screenshots {
    padding: 100px 2rem;
    background: linear-gradient(180deg, transparent, rgba(37, 117, 252, 0.1));
}

.screenshots {
    max-width: 1400px;
    margin: 0 auto;
}

.screenshots-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.screenshot-item {
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.screenshot-item:nth-child(2) {
    animation-delay: 0.5s;
}

.screenshot-item:nth-child(3) {
    animation-delay: 1s;
}

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

.screenshot {
    width: 300px;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.screenshot-label {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Testimonials Section */
.testimonial {
    padding: 100px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.08), rgba(37, 117, 252, 0.08));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 201, 167, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.12), rgba(37, 117, 252, 0.12));
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 80px 2rem;
    background: var(--gradient-primary);
    text-align: center;
    margin: 80px 2rem;
    border-radius: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 60px rgba(106, 17, 203, 0.3);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.cta-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta .btn {
    background: white;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta .btn:hover {
    background: var(--text-secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.cta-subtext {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: var(--card-color);
    padding: 60px 2rem 20px;
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-logo ion-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.footer-logo h4 {
    margin: 0;
    font-size: 1.2rem;
}

.footer-logo p {
    margin: 0.25rem 0 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-secondary);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem !important;
    margin-top: 0.5rem !important;
}

.social-links li {
    margin: 0 !important;
}

.social-links ion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover ion-icon {
    color: var(--primary-color);
    transform: scale(1.2) translateY(-3px);
}

.footer-divider {
    max-width: 1200px;
    margin: 2rem auto;
    height: 1px;
    background: var(--border-color);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    .hero {
        padding: 80px 1.5rem 60px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .features,
    .why-us,
    .use-cases,
    .screenshots,
    .testimonial {
        padding: 60px 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .screenshots-container {
        gap: 1.5rem;
    }

    .screenshot {
        width: 250px;
    }

    .feature-card,
    .why-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .cta {
        margin: 40px 1rem;
        padding: 50px 1.5rem;
    }

    .footer-content {
        gap: 1.5rem;
    }
}

/* Quick Banner */
.quick-banner {
    background: linear-gradient(90deg, rgba(106, 17, 203, 0.1), rgba(37, 117, 252, 0.1), rgba(0, 201, 167, 0.1));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2.5rem;
    margin: 0;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.banner-item ion-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* Enhanced Button Styles */
.btn-glow {
    box-shadow: 0 10px 30px rgba(106, 17, 203, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

/* Grid Pattern Background */
.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* FAQ Section */
.faq {
    padding: 100px 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.08), rgba(37, 117, 252, 0.08));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(106, 17, 203, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    color: var(--text-color);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.1), rgba(37, 117, 252, 0.1));
    color: var(--accent-color);
}

.faq-question ion-icon {
    font-size: 1.3rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question ion-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.05), rgba(37, 117, 252, 0.05));
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Enhanced Testimonial Styles */
.testimonial-role {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 0.3rem;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    .banner-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .banner-item {
        flex-direction: column;
        text-align: center;
    }

    .app-badge {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .app-store-buttons {
        flex-direction: column;
        width: 100%;
    }

    .store-button {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .footer-logo {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .app-badge {
        padding: 1rem;
        gap: 1rem;
    }

    .app-badge-label {
        font-size: 0.75rem;
    }

    .store-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .store-icon {
        font-size: 1.3rem;
    }

    .store-text {
        gap: 0.1rem;
    }

    .store-label {
        font-size: 0.65rem;
    }

    .store-name {
        font-size: 0.85rem;
    }

    .footer-contact {
        font-size: 0.85rem;
    }
}
