.faq-card {
    background: rgba(30, 27, 75, 0.95);
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(124,58,237,0.10);
    border: 1px solid rgba(124,58,237,0.13);
    margin-bottom: 0.15rem;
    padding: 0.4rem 1rem 0.4rem 1rem;
    transition: box-shadow 0.2s, border-color 0.2s;
    position: relative;
    max-width: 500px;
    width: 100%;
}
.faq-card[open] {
    box-shadow: 0 8px 32px rgba(124,58,237,0.18);
    border-color: var(--primary-color);
}
.faq-card summary {
    font-size: 1.13rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.6rem 0 0.6rem 0;
    outline: none;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(124,58,237,0.10);
    border-radius: 1rem 1rem 0 0;
    position: relative;
}
.faq-card summary::-webkit-details-marker {
    display: none;
}
.faq-card summary:after {
    content: "\25BC";
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-left: 0.7rem;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), color 0.2s;
}
.faq-card[open] summary:after {
    content: "\25B2";
    color: var(--secondary-color);
    transform: rotate(180deg) scale(1.1);
}
.faq-q {
    font-size: 1.13rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.faq-a {
    color: var(--text-secondary);
    font-size: 1.08rem;
    padding: 0.6rem 0.2rem 0.6rem 0.2rem;
    line-height: 1.8;
    font-weight: 400;
    background: none;
    border-radius: 0 0 1rem 1rem;
}
.faq-list {
    display: block;
    max-width: 600px;
    margin: 0.2rem auto 0.2rem auto;
}
@media (max-width: 600px) {
    .faq-list {
        max-width: 100%;
    }
    .faq-section h2 {
        font-size: 1.4rem;
    }
    .faq-card summary, .faq-a {
        font-size: 1rem;
        padding-left: 0.1rem;
        padding-right: 0.1rem;
    }
}
.faq-chevron-svg {
    display: inline-block;
    margin-right: 0.5em;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1);
}
.faq-item[open] .faq-chevron-svg {
    transform: rotate(180deg);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7c3aed;
    --primary-dark: #6d28d9;
    --secondary-color: #ec4899;
    --background: #0f172a;
    --surface: #1e293b;
    --surface-light: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --accent: #06b6d4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(100, 116, 139, 0.1);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 2rem 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #60a5fa 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-light) 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 8px solid #1e293b;
}

.phone-image {
    max-width: 300px;
    height: auto;
}

.phone-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

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

.features h2,
.how-it-works h2,
.discover h2,
.download h2,
.faq h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    text-align: center;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.2);
}


.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-icon img {
    filter: invert(48%) sepia(77%) saturate(7492%) hue-rotate(246deg) brightness(90%) contrast(101%);
    /* This filter gives a purple accent. Adjust as needed for your brand colour. */
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

/* How It Works */
.how-it-works {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 2rem;
}

.steps {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

.step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
}


.recommendation-example {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.example-card {
    background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(236,72,153,0.12) 100%);
    border: 1.5px solid var(--primary-color);
    border-radius: 1.25rem;
    box-shadow: 0 6px 32px rgba(124,58,237,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.example-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.example-icon {
    width: 36px;
    height: 36px;
    filter: invert(48%) sepia(77%) saturate(7492%) hue-rotate(246deg) brightness(90%) contrast(101%);
}

.example-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.example-content {
    width: 100%;
}

.example-main {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.example-highlight {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    border-radius: 0.5rem;
    padding: 0.1em 0.5em;
    font-weight: 600;
}

.example-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Discover Section */
.discover {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-light) 100%);
    padding: 80px 2rem;
    margin: 80px 0;
}

.discover-content {
    max-width: 1200px;
    margin: 0 auto;
}

.discover-content h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.discover-content > p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.list-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.checkmark {
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.list-item p {
    color: var(--text-secondary);
}

/* Download Section */
.download {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 2rem;
    text-align: center;
}

.download h2 {
    margin-bottom: 0.5rem;
}

.download > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border: 2px solid var(--surface-light);
    background: transparent;
    color: var(--text-primary);
    border-radius: 0.75rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ios-btn:hover {
    border-color: var(--primary-color);
    background: rgba(124, 58, 237, 0.1);
}

.note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Contact Section */
.contact {
    max-width: 1200px;
    margin: 80px auto;
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 1rem;
    display: none;
}

.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-decoration: none;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

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


.faq-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
    width: 100%;
}

.faq-item {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* ...existing code... */
}

.faq-item[open] {
    min-height: 120px;
}


.faq-item {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item[open] {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.faq-item summary {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.7rem 0.5rem;
    outline: none;
    list-style: none;
    transition: color 0.3s;
}

.faq-item[open] summary {
    color: var(--secondary-color);
}

.faq-item div {
    color: var(--text-secondary);
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 1rem;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.footer {
    background: var(--surface);
    border-top: 1px solid rgba(100, 116, 139, 0.1);
    padding: 3rem 2rem 1.5rem;
    margin-top: 80px;
}

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

.footer-section h4 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

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

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

.footer-section 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(--primary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(100, 116, 139, 0.1);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 2rem 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .features h2,
    .how-it-works h2,
    .discover h2,
    .download h2,
    .faq h2 {
        font-size: 2rem;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

        /* Classic FAQ list style */
        .faq-container {
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
            margin-top: 1.5rem;
        }
        .faq-list-item {
            background: none;
            border: none;
            border-radius: 0;
            box-shadow: none;
            margin: 0;
            padding: 0;
        }
        .faq-list-item summary {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            cursor: pointer;
            padding: 0.25rem 0;
            outline: none;
            transition: color 0.2s;
            list-style: none;
        }
        .faq-list-item[open] summary {
            color: var(--secondary-color);
        }
        .faq-list-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-list-item summary:after {
            content: "▼";
            float: right;
            font-size: 1rem;
            color: var(--primary-color);
            transition: transform 0.2s;
        }
        .faq-list-item[open] summary:after {
            content: "▲";
            color: var(--secondary-color);
        }
        .faq-list-item div {
            color: var(--text-secondary);
            font-size: 1rem;
            padding: 0 0 0.2rem 0;
            margin-left: 0.5rem;
            margin-right: 0.5rem;
        }
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }
}
