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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 50%, #000000 100%);
    min-height: 100vh;
}

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

/* Hero Section */
.hero {
    padding: 2rem 0 4rem;
    text-align: center;
    background: transparent;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.app-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.app-rating {
    margin-bottom: 3rem;
}

.rating-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.rating-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.users-count {
    font-size: 0.9rem;
    color: #ccc;
}

.headline {
    margin-bottom: 3rem;
}

.headline h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.headline h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e74c3c;
}

.highlight {
    color: #e74c3c;
}

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

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #000;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    min-width: 200px;
}

/* Hover effects removed */

.app-store-btn i {
    font-size: 1.5rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-title {
    font-size: 0.8rem;
    opacity: 0.8;
}

.btn-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
}

/* App Image Section */
.app-image {
    padding: 4rem 0;
    background: transparent;
    display: flex;
    justify-content: center;
}

.app-photo {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.app-header {
    text-align: center;
    margin-bottom: 2rem;
}

.app-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.app-subtitle {
    font-size: 0.9rem;
    color: #ccc;
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.before-after-preview {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.before, .after {
    flex: 1;
    text-align: center;
}

.photo-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 0.5rem;
}

.label {
    font-size: 0.8rem;
    color: #ccc;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.feature-item i {
    color: #e74c3c;
    font-size: 1.2rem;
}

.feature-item span {
    font-size: 0.9rem;
}

.app-navigation {
    display: flex;
    justify-content: space-around;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #ccc;
}

.nav-item.active {
    color: #e74c3c;
}

.nav-item i {
    font-size: 1.2rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: transparent;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* transition removed */
    backdrop-filter: blur(10px);
}

/* Hover effects removed */

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 4rem 0;
    background: transparent;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: transparent;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    /* transition removed */
}

/* Hover effects removed */

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .headline h1 {
        font-size: 2.2rem;
    }
    
    .headline h2 {
        font-size: 1.2rem;
    }
    
    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-store-btn {
        min-width: 250px;
    }
    
    .app-photo {
        max-width: 250px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    /* Privacy and Support Pages */
    .privacy-wrapper,
    .support-wrapper {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .privacy-wrapper h1,
    .support-wrapper h1 {
        font-size: 2rem;
    }
    
    .privacy-wrapper h2,
    .support-wrapper h2 {
        font-size: 1.3rem;
    }
    
    .privacy-wrapper h3,
    .support-wrapper h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .headline h1 {
        font-size: 1.8rem;
    }
    
    .headline h2 {
        font-size: 1rem;
    }
    
    .app-photo {
        max-width: 200px;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Privacy and Support Pages - Small Mobile */
    .privacy-wrapper,
    .support-wrapper {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .privacy-wrapper h1,
    .support-wrapper h1 {
        font-size: 1.8rem;
    }
    
    .privacy-wrapper h2,
    .support-wrapper h2 {
        font-size: 1.2rem;
    }
    
    .privacy-wrapper h3,
    .support-wrapper h3 {
        font-size: 1rem;
    }
    
    .privacy-wrapper p,
    .support-wrapper p {
        font-size: 0.9rem;
    }
    
    .privacy-wrapper ul,
    .support-wrapper ul {
        padding-left: 1.5rem;
    }
    
    .faq-item {
        padding: 0.8rem;
    }
}

/* Animations removed */

/* Privacy Policy Styles */
.privacy-content {
    padding: 4rem 0;
    background: transparent;
}

.privacy-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-wrapper h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}

.effective-date {
    text-align: center;
    color: #ccc;
    font-style: italic;
    margin-bottom: 2rem;
}

.privacy-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 0.5rem;
}

.privacy-wrapper p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-wrapper ul {
    color: #ccc;
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-wrapper li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.privacy-wrapper a {
    color: #e74c3c;
    text-decoration: none;
}

/* Hover effects removed */

.back-button {
    margin-top: 2rem;
    text-align: center;
}

.back-button .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Support/Contact Page Styles */
.support-content {
    padding: 4rem 0;
    background: transparent;
}

.support-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-wrapper h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
}

.support-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 0.5rem;
}

.support-wrapper h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 1.5rem 0 0.5rem 0;
}

.support-wrapper p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.welcome-text {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.support-wrapper ul {
    color: #ccc;
    margin: 1rem 0;
    padding-left: 2rem;
}

.support-wrapper li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.support-wrapper a {
    color: #e74c3c;
    text-decoration: none;
}

/* Hover effects removed */

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #e74c3c, transparent);
    margin: 2rem 0;
    border-radius: 1px;
}

.faq-item {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

/* Smooth scrolling removed */