:root{
    
    --primary-color: #37365e; 
    --secondary-color: #1D2B3A; 
    --accent-color: #FFD700; 
    --bg-color: #FFFFFF;
    --bg-light: #F7F9FC;
    --text-color: #1D2B3A;
    --text-light: #5A6470;
    --border-color: #E5E9F0;

    
    --hero-bg-gradient: linear-gradient(135deg, #F7F9FC 0%, #E5E9F0 100%);
    --gradient-text: linear-gradient(90deg, var(--primary-color), #00c6ff);

    
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;

    
    --spacing-unit: 1rem;
    --container-width: 1200px;
    --header-height: 80px;

    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 15px 30px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --transition-fast: all 0.2s ease-in-out;
    --transition-slow: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}*, *::before, *::after{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}body{
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--bg-color);
    font-smooth: always;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}h1, h2, h3, h4, h5, h6{
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-color);
}a{
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}.container{
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 2);
}.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent; 
    transition: all 0.3s ease;
}.header.scrolled{
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}.nav-brand{
    display: flex;
    align-items: center;
}.logo{
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 0.75rem;
    object-fit: contain;
}.legal-page .effective-date{
    font-family: 'Space Grotesk', sans-serif;
}.legal-page h1{
    font-family: 'Space Grotesk', sans-serif;
}.brand-name{
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-secondary);
}.nav-links{
    display: flex;
    align-items: center;
}.download-btn{
    background: var(--secondary-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
}.download-btn:hover{
    background: var(--primary-color);
    box-shadow: var(--shadow-md);
}.hero{
    padding: calc(var(--header-height) + 5rem) 0 5rem;
    background: var(--bg-light);
    text-align: center;
    overflow: hidden;
}.hero-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}.hero-text{
    max-width: 700px;
}.hero-ratings{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}.stars{
    font-size: 1.2rem;
    color: var(--accent-color);
}.hero-ratings p{
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}.hero-title{
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}.hero-subtitle{
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}.hero-actions{
    display: flex;
    justify-content: center;
    align-items: center;
}.cta-button.primary{
    background: var(--secondary-color);
    color: #fff !important;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-slow);
}.cta-button.primary:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(29, 43, 58, 0.2);
    background: var(--primary-color);
}.cta-button{
    background-color: white;
    color: black !important;
    border: 1px solid #ddd;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-align: left;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}.cta-button:hover{
    background: #f0f0f0;
    color: black;
}.footer .store-icon{
    width: 28px;
    height: 28px;
    margin-right: 12px;
}.footer .store-text{
    display: flex;
    flex-direction: column;
}.footer .store-small{
    font-size: 0.75rem;
    opacity: 0.8;
    line-height: 1;
}.footer .store-large{
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
}.apple-icon{
    width: 1.5rem;
    height: 1.5rem;
}.hero-visual{
    position: relative;
    width: 100%;
    margin-top: 3rem;
    min-height: 400px; 
    display: flex;
    align-items: center;
    justify-content: center;
}.features{
    padding: 100px 0;
    background: var(--bg-color);
}.section-header{
    text-align: center;
    margin-bottom: 60px;
}.section-title{
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}.section-subtitle{
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}.feature-card-simple{
    text-align: center;
}.feature-icon{
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}.feature-title{
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}.feature-description{
    color: var(--text-light);
    line-height: 1.6;
}.faq{
    padding: 100px 0;
    background: var(--bg-light);
}.faq-item{
    border-bottom: 1px solid var(--border-color);
}.faq-question{
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}.faq-icon::before{
    content: '+';
    font-size: 1.5em;
    color: var(--text-color-secondary);
    transition: transform 0.3s ease;
}.faq-item.open .faq-icon::before{
    transform: rotate(45deg);
    content: '-';
}.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}.faq{
    padding: 80px 0;
    background: var(--bg-light);
}.faq-item{
    border-bottom: 1px solid var(--border-color);
}.faq-question{
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}.faq-question .faq-icon::before{
    content: '+';
    font-size: 1.5em;
    color: var(--text-color-secondary);
    transition: transform 0.3s ease;
}.faq-item.open .faq-question .faq-icon::before{
    transform: rotate(45deg);
    content: '-';
}.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}.faq-answer p{
    padding: 0 0 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}.footer{
    padding: 100px 0;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
}.footer-content{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}.footer-promo{
    max-width: 500px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}.download-title{
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
    background: none;
}.download-subtitle{
    font-size: 1.1rem;
    color: var(--text-color-secondary);
}.footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    font-size: 0.9rem;
    color: var(--text-color-secondary);
}.footer-links a{
    margin-left: 20px;
    color: var(--text-color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}.footer-links a:hover{
    color: var(--primary-color);
}.legal-page{
    padding: 100px 0 50px;
    background: var(--bg-light);
    color: #fff;
    text-align: center;
}.footer-content{
    max-width: 700px;
    margin: 0 auto;
}.footer .download-btn{
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    flex-direction: column;
}.footer .download-btn:hover{
    background-color: #eee;
}.footer-bottom{
    margin-top: 4rem;
    opacity: 0.6;
    font-size: 0.9rem;
}@media (max-width: 768px) {.hero-title{
        font-size: 2.5rem;
    }.hero-subtitle{
        font-size: 1.1rem;
    }.hero-text{
        text-align: center;
    }.hero-actions{
        justify-content: center;
    }.hero-visual{
        min-height: 300px; 
    }}.footer .store-icon{
    width: 28px;
    height: 28px;
    margin-right: 12px;
}.footer .store-text{
    font-size: 1rem;
    color: #000;
    opacity: 0.8;
}.footer-links a:hover{
    text-decoration: underline;
}.legal-page{
    padding-top: 120px;
    padding-bottom: 80px;
    max-width: 800px;
    margin: 0 auto;
}.legal-page h1{
    font-size: 2.5rem;
    margin-bottom: 20px;
}.legal-page h2{
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
}.legal-page p{
    line-height: 1.7;
    margin-bottom: 15px;
}@media (max-width: 768px) {.hero-text{
        text-align: center;
    }.hero-actions{
        justify-content: center;
    }.hero-visual{
        min-height: 300px; 
    }}.hero-screenshots{
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
}.screenshot-container{
    display: flex;
    gap: 16px;
    padding: 20px 40px;
    overflow-x: auto;
    overflow-y: visible;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    max-width: 100%;
    margin: 0 auto;
}.screenshot-container::-webkit-scrollbar{
    display: block; 
    height: 8px; 
}.screenshot-container::-webkit-scrollbar-track{
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}.screenshot-container::-webkit-scrollbar-thumb{
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.05);
}.screenshot-container::-webkit-scrollbar-thumb:hover{
    background: rgba(0, 0, 0, 0.3);
}.screenshot{
    flex: 0 0 auto;
    width: auto;
    max-width: 320px;
    height: auto;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    object-fit: contain;
    border: none;
    background: transparent;
    padding: 0;
}.screenshot:hover{
    transform: translateY(-8px) scale(1.02);
}.hero-visual{
    position: relative;
    width: 100%;
    margin-top: 3rem;
    min-height: 400px; 
    display: flex;
    align-items: center;
    justify-content: center;
}.features{
    padding: 100px 0;
    background: var(--bg-color);
}.section-header{
    text-align: center;
    margin-bottom: 60px;
}.section-title{
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}.section-subtitle{
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}.feature-card-simple{
    text-align: center;
}.feature-icon{
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}.feature-title{
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}.feature-description{
    color: var(--text-light);
    line-height: 1.6;
}.faq{
    padding: 100px 0;
    background: var(--bg-light);
}.faq-item{
    border-bottom: 1px solid var(--border-color);
}.faq-question{
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}.faq-question .faq-icon::before{
    content: '+';
    font-size: 1.5em;
    color: var(--text-color-secondary);
    transition: transform 0.3s ease;
}.faq-item.open .faq-question .faq-icon::before{
    transform: rotate(45deg);
    content: '-';
}.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}.faq-answer p{
    padding: 0 0 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}.footer{
    padding: 100px 0;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
}.footer-content{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}.footer-promo{
    max-width: 500px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}.download-title{
    font-size: 2rem;
    margin-bottom: 10px;
}.download-subtitle{
    font-size: 1.1rem;
    color: var(--text-color-secondary);
}.footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    font-size: 0.9rem;
    color: var(--text-color-secondary);
}.footer-links a{
    margin-left: 20px;
    color: var(--text-color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}.footer-links a:hover{
    color: var(--primary-color);
}.legal-page{
    padding: 100px 0 50px;
    background: var(--bg-light);
    color: #fff;
    text-align: center;
}.footer-content{
    max-width: 700px;
    margin: 0 auto;
}.footer .download-btn{
    background: white;
    color: black;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}.footer .download-btn:hover{
    background: #f0f0f0;
    color: black;
}.footer-bottom{
    margin-top: 4rem;
    opacity: 0.6;
    font-size: 0.9rem;
}@media (max-width: 768px) {.hero-title{
        font-size: 2.5rem;
    }.hero-subtitle{
        font-size: 1.1rem;
    }.hero-text{
        text-align: center;
    }.hero-actions{
        justify-content: center;
    }.hero-visual{
        min-height: 300px; 
    }}.footer .store-icon{
    width: 28px;
    height: 28px;
    margin-right: 12px;
}.footer .store-text{
    font-size: 1rem;
    color: #000;
    opacity: 0.8;
}.footer-links a:hover{
    text-decoration: underline;
}.legal-page{
    padding-top: 120px;
    padding-bottom: 80px;
    max-width: 800px;
    margin: 0 auto;
}.legal-page h1{
    font-size: 2.5rem;
    margin-bottom: 20px;
}.legal-page h2{
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
}.legal-page p{
    line-height: 1.7;
    margin-bottom: 15px;
}@media (max-width: 768px) {.hero-text{
        text-align: center;
    }.hero-actions{
        justify-content: center;
    }.hero-visual{
        min-height: 300px; 
    }}.hero{
    padding: calc(var(--header-height) + 5rem) 0 5rem;
    background: var(--bg-light);
    text-align: center;
    overflow: hidden;
}.hero-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}.hero-text{
    max-width: 700px;
}.hero-ratings{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}.stars{
    font-size: 1.2rem;
    color: var(--accent-color);
}.hero-ratings p{
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}.hero-title{
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}.hero-subtitle{
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}.hero-actions{
    display: flex;
    justify-content: center;
    align-items: center;
}.cta-button.primary{
    background: var(--secondary-color);
    color: #fff !important;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-slow);
}.cta-button.primary:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(29, 43, 58, 0.2);
    background: var(--primary-color);
}.cta-button{
    background-color: white;
    color: black !important;
    border: 1px solid #ddd;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-align: left;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}.cta-button:hover{
    background: #f0f0f0;
    color: black;
}.footer .store-icon{
    width: 28px;
    height: 28px;
    margin-right: 12px;
}.footer .store-text{
    display: flex;
    flex-direction: column;
}.footer .store-small{
    font-size: 0.75rem;
    opacity: 0.8;
    line-height: 1;
}.footer .store-large{
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
}.apple-icon{
    width: 1.5rem;
    height: 1.5rem;
}.hero-visual{
    position: relative;
    width: 100%;
    margin-top: 3rem;
    min-height: 400px; 
    display: flex;
    align-items: center;
    justify-content: center;
}.features{
    padding: 100px 0;
    background: var(--bg-color);
}.section-header{
    text-align: center;
    margin-bottom: 60px;
}.section-title{
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}.section-subtitle{
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}.feature-card-simple{
    text-align: center;
}.feature-icon{
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}.feature-title{
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}.feature-description{
    color: var(--text-light);
    line-height: 1.6;
}.faq{
    padding: 100px 0;
    background: var(--bg-light);
}.faq-item{
    border-bottom: 1px solid var(--border-color);
}.faq-question{
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}.faq-question .faq-icon::before{
    content: '+';
    font-size: 1.5em;
    color: var(--text-color-secondary);
    transition: transform 0.3s ease;
}.faq-item.open .faq-question .faq-icon::before{
    transform: rotate(45deg);
    content: '-';
}.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}.faq-answer p{
    padding: 0 0 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}.footer{
    padding: 100px 0;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
}.footer-content{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}.footer-promo{
    max-width: 500px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}.download-title{
    font-size: 2rem;
    margin-bottom: 10px;
}.download-subtitle{
    font-size: 1.1rem;
    color: var(--text-color-secondary);
}.footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    font-size: 0.9rem;
    color: var(--text-color-secondary);
}.footer-links a{
    margin-left: 20px;
    color: var(--text-color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}.footer-links a:hover{
    color: var(--primary-color);
}.legal-page{
    padding: 100px 0 50px;
    background: var(--bg-light);
    color: #fff;
    text-align: center;
}.footer-content{
    max-width: 700px;
    margin: 0 auto;
}.footer .download-btn{
    background: white;
    color: black;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}.footer .download-btn:hover{
    background: #f0f0f0;
    color: black;
}.footer-bottom{
    margin-top: 4rem;
    opacity: 0.6;
    font-size: 0.9rem;
}@media (max-width: 768px) {.hero-title{
        font-size: 2.5rem;
    }.hero-subtitle{
        font-size: 1.1rem;
    }.hero-text{
        text-align: center;
    }.hero-actions{
        justify-content: center;
    }.hero-visual{
        min-height: 300px; 
    }}.footer .store-icon{
    width: 28px;
    height: 28px;
    margin-right: 12px;
}.footer .store-text{
    font-size: 1rem;
    color: #000;
    opacity: 0.8;
}.footer-links a:hover{
    text-decoration: underline;
}.legal-page{
    padding-top: 120px;
    padding-bottom: 80px;
    max-width: 800px;
    margin: 0 auto;
}.legal-page h1{
    font-size: 2.5rem;
    margin-bottom: 20px;
}.legal-page h2{
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
}.legal-page p{
    line-height: 1.7;
    margin-bottom: 15px;
}@media (max-width: 768px) {.hero-text{
        text-align: center;
    }.hero-actions{
        justify-content: center;
    }.hero-visual{
        min-height: 300px; 
    }}.hero-screenshots{
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
}.screenshot-container{
    display: flex;
    gap: 16px;
    padding: 20px 40px;
    overflow-x: auto;
    overflow-y: visible;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    max-width: 100%;
    margin: 0 auto;
}.screenshot-container::-webkit-scrollbar{
    display: block; 
    height: 8px; 
}.screenshot-container::-webkit-scrollbar-track{
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}.screenshot-container::-webkit-scrollbar-thumb{
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.05);
}.screenshot-container::-webkit-scrollbar-thumb:hover{
    background: rgba(0, 0, 0, 0.3);
}.screenshot{
    flex: 0 0 auto;
    width: auto;
    max-width: 320px;
    height: auto;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    object-fit: contain;
    border: none;
    background: transparent;
    padding: 0;
}.screenshot:hover{
    transform: translateY(-8px) scale(1.02);
}.hero-visual{
    position: relative;
    width: 100%;
    margin-top: 3rem;
    min-height: 400px; 
    display: flex;
    align-items: center;
    justify-content: center;
}.features{
    padding: 100px 0;
    background: var(--bg-color);
}.section-header{
    text-align: center;
    margin-bottom: 60px;
}.section-title{
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}.section-subtitle{
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}.feature-card-simple{
    text-align: center;
}.feature-icon{
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}.feature-title{
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}.feature-description{
    color: var(--text-light);
    line-height: 1.6;
}.faq{
    padding: 100px 0;
    background: var(--bg-light);
}.faq-item{
    border-bottom: 1px solid var(--border-color);
}.faq-question{
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}.faq-question .faq-icon::before{
    content: '+';
    font-size: 1.5em;
    color: var(--text-color-secondary);
    transition: transform 0.3s ease;
}.faq-item.open .faq-question .faq-icon::before{
    transform: rotate(45deg);
    content: '-';
}.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}.faq-answer p{
    padding: 0 0 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}.footer{
    padding: 100px 0;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
}.footer-content{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}.footer-promo{
    max-width: 500px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}.download-title{
    font-size: 2rem;
    margin-bottom: 10px;
}.download-subtitle{
    font-size: 1.1rem;
    color: var(--text-color-secondary);
}.footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    font-size: 0.9rem;
    color: var(--text-color-secondary);
}.footer-links a{
    margin-left: 20px;
    color: var(--text-color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}.footer-links a:hover{
    color: var(--primary-color);
}.legal-page{
    padding: 100px 0 50px;
    background: var(--bg-light);
    color: #fff;
    text-align: center;
}.footer-content{
    max-width: 700px;
    margin: 0 auto;
}.footer .download-btn{
    background: white;
    color: black;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}.footer .download-btn:hover{
    background: #f0f0f0;
    color: black;
}.footer-bottom{
    margin-top: 4rem;
    opacity: 0.6;
    font-size: 0.9rem;
}@media (max-width: 768px) {.hero-title{
        font-size: 2.5rem;
    }.hero-subtitle{
        font-size: 1.1rem;
    }.hero-text{
        text-align: center;
    }.hero-actions{
        justify-content: center;
    }.hero-visual{
        min-height: 300px; 
    }}.footer .store-icon{
    width: 28px;
    height: 28px;
    margin-right: 12px;
}.footer .store-text{
    font-size: 1rem;
    color: #000;
    opacity: 0.8;
}.footer-links a:hover{
    text-decoration: underline;
}.legal-page{
    padding-top: 120px;
    padding-bottom: 80px;
    max-width: 800px;
    margin: 0 auto;
}.legal-page h1{
    font-size: 2.5rem;
    margin-bottom: 20px;
}.legal-page h2{
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
}.legal-page p{
    line-height: 1.7;
    margin-bottom: 15px;
}@media (max-width: 768px) {.hero-text{
        text-align: center;
    }.hero-actions{
        justify-content: center;
    }.hero-visual{
        min-height: 300px; 
    }}.footer-links{
    display: flex;
    align-items: center;
    gap: 15px;
}.footer-link{
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}.footer-link:hover{
    color: #fff;
    text-decoration: underline;
}.footer-separator{
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}.footer-copyright{
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}.footer-copyright p{
    margin: 0;
}@media (max-width: 768px) {.footer-bottom{
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }.footer-links{
        justify-content: center;
    }}@media (max-width: 768px) {.hero-visual{
        min-height: auto !important;
        padding: 20px 0;
    }.screenshot-container{
        padding: 15px !important;
        gap: 12px !important;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }.screenshot{
        max-width: 280px !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }}.faq-item{
    border-bottom: 1px solid var(--border-color);
}.faq-item summary{
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: relative;
}.faq-item summary::-webkit-details-marker{
    display: none;
}.faq-item summary::after{
    content: '+';
    font-size: 1.5em;
    color: var(--text-color-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
    padding-left: 1rem;
    display: inline-block;
    width: 1em;
    height: 1em;
    text-align: center;
    line-height: 1;
    transform-origin: center center;
}.faq-item[open] summary::after{
    transform: rotate(45deg);
}.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}.faq-answer p{
    padding: 0 0 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}.faq-item[open] .faq-answer{
    max-height: 500px;
}.footer-download{
    margin-top: 2rem;
}.footer-promo h2,
.footer-promo p{
    text-align: center;
}@media (max-width: 768px) {.logo{
        width: 2rem;
        height: 2rem;
        margin-right: 0.5rem;
    }.brand-name{
        font-size: 1.3rem;
    }}.legal-page{
    padding: 120px 0 80px;
    background: #ffffff;
    color: #333;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}.legal-page h1{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}.legal-page h2{
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #333;
}.legal-page h2:first-of-type{
    margin-top: 2rem;
}.legal-page p{
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #333;
    font-size: 1.05rem;
}.legal-page ul, .legal-page ol{
    margin: 1.5rem 0;
    padding-left: 2rem;
}.legal-page li{
    margin-bottom: 0.8rem;
    line-height: 1.6;
}.legal-page ul li::marker{
    color: var(--primary-color);
    font-weight: bold;
}.legal-page ol li::marker{
    color: var(--primary-color);
    font-weight: bold;
}.legal-page strong{
    color: var(--secondary-color);
    font-weight: 600;
}.legal-page a{
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}.legal-page a:hover{
    color: var(--secondary-color);
    text-decoration: underline;
}.legal-page blockquote{
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    border-radius: 0 8px 8px 0;
}.legal-page .legal-number{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}.legal-navigation h3{
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}.legal-nav-list li{
    margin-bottom: 0.5rem;
}.legal-nav-list a{
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}.legal-nav-list a:hover{
    color: var(--primary-color);
}.legal-page .last-updated{
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}@media (max-width: 768px) {.legal-page{
        padding: 100px 1rem 60px;
    }.legal-page h1{
        font-size: 2rem;
    }.legal-page h2{
        font-size: 1.4rem;
        margin-top: 2rem;
    }.legal-page p{
        font-size: 1rem;
    }}@media (max-width: 480px) {.legal-page{
        padding: 80px 0.5rem 40px;
    }.legal-page h1{
        font-size: 1.8rem;
    }.legal-page h2{
        font-size: 1.3rem;
    }}.how-it-works{
    padding: 100px 0;
    background-color: var(--bg-light);
}.how-it-works-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
    margin-top: 60px;
}.how-it-works-step{
    text-align: center;
}.step-number{
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin-bottom: 1rem;
}.step-title{
    font-size: 1.5rem;
    font-family: var(--font-secondary);
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}.step-description{
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}.testimonials{
    padding: 100px 0;
    background-color: var(--bg-color);
}.testimonials-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 2.5);
    margin-top: 60px;
}.testimonial-card{
    background-color: var(--bg-light);
    padding: calc(var(--spacing-unit) * 2);
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
}.testimonial-card:hover{
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}.testimonial-text{
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}.testimonial-author{
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}.testimonial-author::before{
    content: '— ';
}.brand-name{
    font-family: 'Space Grotesk', sans-serif;
}