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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo span {
    color: #1e293b;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #1e293b;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: white;
    padding-top: 80px;
}

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

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #2563eb;
}

.hero-content p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

.btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #2563eb;
    color: #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

/* Apps Section */
.apps {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-title p {
    color: #64748b;
    font-size: 1.1rem;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.app-showcase {
    display: flex;
    justify-content: center;
}

.app-showcase .app-card {
    max-width: 500px;
    width: 100%;
}

.app-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.store-badge {
    display: flex;
    align-items: center;
}

.store-badge img {
    height: 45px;
    width: auto;
}

.app-buttons .btn {
    height: 45px;
    display: flex;
    align-items: center;
    padding: 0 25px;
}

.app-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #2563eb, #7c3aed);
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.app-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 20px;
    object-fit: cover;
}

.app-card h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.app-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #f8fafc;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #2563eb;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #64748b;
    line-height: 1.8;
}

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

/* Footer */
footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-brand h3 span {
    color: #60a5fa;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
    color: #64748b;
}

/* Responsive - Tablet */
@media (max-width: 968px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

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

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

    .apps {
        padding: 60px 0;
    }

    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .app-card {
        padding: 30px 20px;
    }

    .app-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .faq {
        padding: 60px 0;
    }

    .faq-question {
        padding: 20px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Responsive - Mobile */
@media (max-width: 576px) {
    .logo {
        font-size: 1.2rem;
    }

    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 60px;
    }

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

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

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

    .btn {
        width: 100%;
        padding: 14px 25px;
    }

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

    .app-card:hover {
        transform: none;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 18px 15px;
    }

    .faq-answer p {
        padding: 0 15px 18px;
        font-size: 0.9rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: 20px;
    }

    footer {
        padding: 40px 0 20px;
    }
}

/* Jotir Hero Section */
.jotir-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: white;
    padding-top: 80px;
}

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

.jotir-hero-content {
    max-width: 600px;
}

.jotir-mockup {
    display: flex;
    justify-content: center;
}

.jotir-mockup .phone-mockup {
    width: 240px;
    height: 480px;
    background: linear-gradient(145deg, #1e293b, #334155);
    border-radius: 35px;
    padding: 8px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
}

.jotir-mockup .phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #f97316, #ea580c);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.jotir-mockup .phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jotir-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.jotir-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
}

.jotir-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.jotir-tagline {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 40px;
}

.jotir-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1e293b;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.2rem;
}

.jotir-buttons {
    display: flex;
    gap: 15px;
}

.jotir-legal {
    margin-top: 25px;
    font-size: 0.85rem;
    color: #64748b;
}

.jotir-legal a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s;
}

.jotir-legal a:hover {
    color: #2563eb;
}

@media (max-width: 968px) {
    .jotir-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .jotir-title {
        justify-content: center;
    }

    .jotir-mockup {
        order: -1;
    }

    .jotir-mockup .phone-mockup {
        width: 200px;
        height: 400px;
        border-radius: 30px;
    }

    .jotir-features {
        justify-content: center;
    }

    .jotir-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .jotir-logo {
        width: 80px;
        height: 80px;
    }

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

    .jotir-tagline {
        font-size: 1rem;
    }

    .jotir-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .jotir-mockup .phone-mockup {
        width: 180px;
        height: 360px;
        border-radius: 25px;
    }
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    background: white;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.legal-content .last-updated {
    color: #64748b;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.legal-content h2 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: #2563eb;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .legal-page {
        padding: 100px 0 60px;
    }

    .legal-content h1 {
        font-size: 1.75rem;
    }

    .legal-content h2 {
        font-size: 1.2rem;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .container {
        padding: 0 15px;
    }

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

    .app-card {
        padding: 25px 15px;
    }
}
