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

/* Navigation */
.navigation {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
    padding: 20px;
    display: flex;
    align-items: center;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    transition: all 0.3s ease;
    opacity: 1;
}

.nav-link:hover {
    color: #ffffff;
    opacity: 0.8;
    transform: translateY(-1px);
}

.nav-link.download-nav {
    background: #2D1B69;
    color: #ffffff;
    border: 1px solid #2D1B69;
    border-radius: 25px;
    padding: 10px 20px;
}

.nav-link.download-nav:hover {
    background: #1a0f4a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 27, 105, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    min-height: 100vh;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #2D1B69;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2D1B69;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2D1B69;
}

p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* App Store Button */
.app-store-button {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.app-store-button:hover {
    transform: translateY(-2px);
}

.app-store-img {
    height: 60px;
    width: auto;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: block;
}

/* Hero Section */
.hero {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f8f7ff 0%, #7869E6 50%, #c4b5fd 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 60px;
    max-width: 1200px;
}

.hero-left {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

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

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0px;
    width: 100%;
}

.baby-logo {
    margin-bottom: 0px;
}

.baby-image {
    width: 280px;
    height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
    animation: unblur 2s ease-out forwards;
}

@keyframes unblur {
    0% {
        filter: blur(20px) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        filter: blur(10px) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
        opacity: 0.7;
        transform: scale(0.9);
    }
    100% {
        filter: blur(0px) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
        opacity: 1;
        transform: scale(1);
    }
}

.baby-image:hover {
    transform: scale(1.05);
}

.hero-title {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 4.5rem;
    color: #2D1B69;
    margin-bottom: 0px;
    letter-spacing: -0.02em;
    margin-top: -10px;
    animation: fadeInUp 1.5s ease-out 0.5s both;
    white-space: nowrap;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.hero-phone {
    position: relative;
    max-width: 100%;
}

.hero-screenshot {
    width: 100%;
    max-width: 300px;
    height: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 1.5s ease-out 1s both;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.hero-screenshot:hover {
    transform: scale(1.08) translateY(-10px) rotateY(5deg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Content Section for other pages */
.content-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f7ff 0%, #c4b5fd 100%);
}

.content-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.back-button {
    display: inline-block;
    color: #2D1B69;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 24px;
    border: 2px solid #2D1B69;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.back-button:hover {
    background: #2D1B69;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 27, 105, 0.3);
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    backdrop-filter: blur(8px);
}

.contact-info a {
    color: #2D1B69;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}
    margin-bottom: 10px;
    font-weight: 400;
    margin-top: 0px;
    animation: fadeInUp 1.5s ease-out 0.8s both;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 0px;
    animation: fadeInUp 1.5s ease-out 1.1s both;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #7869E6;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: #ffffff;
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
}

.features-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.feature-item {
    text-align: center;
    flex: 0 0 auto;
    min-width: 0;
    width: 220px;
}

.feature-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 15px;
}

/* Features CTA */
.features-cta {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.watch-tutorial-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #2D1B69;
    border: 2px solid #2D1B69;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.watch-tutorial-btn:hover {
    transform: translateY(-2px);
    background: #2D1B69;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(45, 27, 105, 0.3);
}

.watch-tutorial-btn .youtube-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.watch-tutorial-btn:hover .youtube-icon {
    transform: scale(1.1);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #E0E0FF 0%, #7869E6 50%, #F0F0FF 75%, #FFFFFF 100%);
}

.pricing h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: #2D1B69;
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
}

.pricing-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    padding: 30px 25px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(45, 27, 105, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7869E6, #2D1B69);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(45, 27, 105, 0.15);
}

.pricing-card.popular {
    border-color: #2D1B69;
    transform: scale(1.05);
    background: linear-gradient(145deg, #ffffff 0%, #f0f2ff 100%);
    box-shadow: 0 20px 40px rgba(45, 27, 105, 0.15);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 30px 60px rgba(45, 27, 105, 0.2);
}

.card-header {
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2D1B69;
    font-weight: 600;
}

.price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2D1B69;
    margin-bottom: 15px;
}

.price span {
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
}

.price-subtitle {
    color: #7869E6;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.savings {
    background: #2D1B69;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2D1B69, #7869E6);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(45, 27, 105, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.features-list li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.features-list li:last-child {
    border-bottom: none;
}

.check {
    color: #2D1B69;
    font-weight: bold;
    font-size: 1.2rem;
    background: #f0f2ff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-btn {
    background: white;
    color: #2D1B69;
    border: 2px solid #2D1B69;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.pricing-btn:hover {
    background: #2D1B69;
    color: white;
    transform: translateY(-2px);
}

.pricing-btn.primary {
    background: #2D1B69;
    color: white;
}

.pricing-btn.primary:hover {
    background: #1a0f4a;
    transform: translateY(-2px);
}

/* SEO Content Section */
.seo-content {
    padding: 80px 0;
    background: #ffffff;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.seo-content h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #2D1B69;
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
}

.seo-content > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.seo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.seo-feature {
    text-align: center;
    padding: 30px 20px;
}

.seo-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2D1B69;
    font-weight: 600;
}

.seo-feature p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.seo-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8f7ff 0%, #e0e0ff 100%);
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.seo-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #2D1B69;
    font-weight: 600;
}

.seo-cta ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.seo-cta li {
    padding: 8px 0;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .seo-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .seo-content h2 {
        font-size: 2rem;
    }
    
    .seo-cta {
        padding: 30px 20px;
    }
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #7869E6;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: white;
    border-top: 1px solid #eee;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6A5ACD;
}

.footer-copyright {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .workflow-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navigation {
        padding: 12px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
        text-align: center;
    }

    .hero-logo {
        align-items: center;
    }

    .hero-screenshot {
        max-width: 240px;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .baby-image {
        width: 200px;
        height: 200px;
    }

    .app-store-img {
        height: 50px;
    }

    .workflow-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .features-grid {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        overflow-x: visible;
    }

    .feature-item {
        width: 140px;
        flex: 0 0 calc(50% - 10px);
    }

    .feature-image {
        max-width: 120px;
    }

    .phone-frame {
        width: 140px;
        height: 280px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        gap: 20px;
    }

    .content-section {
        padding: 100px 0 80px;
    }

    .content-wrapper {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 0;
        padding-top: 100px;
        min-height: 100vh;
        background: linear-gradient(135deg, #f8f7ff 0%, #7869E6 50%, #c4b5fd 100%);
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
        text-align: center;
    }

    .hero-logo {
        align-items: center;
    }

    .hero-screenshot {
        max-width: 220px;
    }

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

    .baby-image {
        width: 160px;
        height: 160px;
    }

    .app-store-img {
        height: 45px;
    }

    .workflow-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        overflow-x: visible;
    }

    .feature-item {
        width: 120px;
        flex: 0 0 calc(50% - 7.5px);
    }

    .feature-image {
        max-width: 100px;
    }

    .phone-frame {
        width: 120px;
        height: 240px;
    }

    .features {
        padding: 60px 0;
    }

    .cta {
        padding: 60px 0;
    }

    .content-section {
        padding: 80px 0 60px;
    }

    .content-wrapper {
        padding: 0 20px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: #2D1B69;
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(45, 27, 105, 0.08);
    border: 2px solid #7869E6;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(45, 27, 105, 0.12);
    transform: translateY(-2px);
}

.faq-item.open {
    box-shadow: 0 10px 30px rgba(45, 27, 105, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

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

.faq-item.open .faq-question {
    border-bottom-color: #e5e7ff;
    background: #f8f9ff;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2D1B69;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
    text-align: center;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #7869E6;
    background: #f0f2ff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-toggle {
    background: #2D1B69;
    color: white;
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-answer a {
    color: #7869E6;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    color: #2D1B69;
    text-decoration: underline;
}

.faq-answer strong {
    font-weight: 700;
    color: #2D1B69;
}

.faq-answer .download-link {
    color: #7869E6;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-answer .download-link:hover {
    color: #2D1B69;
    text-decoration: underline;
}

/* Mobile responsiveness for FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 15px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.95rem;
    }
    
    .faq-toggle {
        width: 30px;
        height: 30px;
        font-size: 1.3rem;
    }
}