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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f8f9fa;
    color: #2c3e50;
    line-height: 1.6;
}

.language-switcher-top {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 0.5rem;
    z-index: 1000;
    background: white;
    padding: 0.5rem;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lang-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    color: #555;
}

.lang-btn:hover {
    background: #f0f0f0;
}

.lang-btn.active {
    background: #2c3e50;
    color: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 120px 60px 80px;
    text-align: center;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.logo-image {
    max-width: 180px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-tagline {
    font-size: 1.1rem;
    opacity: 0.85;
    font-weight: 300;
}

/* Story Section */
.story-section {
    padding: 80px 60px;
    background: white;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.story-image {
    position: sticky;
    top: 100px;
}

.story-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.philosophy {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #2c3e50;
    border-radius: 8px;
    font-style: italic;
    font-size: 1.1rem;
    color: #2c3e50;
}

/* Tools Section */
.tools-section {
    padding: 80px 60px;
    background: #f8f9fa;
}

.tools-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.tools-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.tool-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
    position: relative;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #2c3e50;
}

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

.tool-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.tool-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1rem;
}

.feature-tag {
    background: #f0f0f0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
}

.coming-soon {
    display: inline-block;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.store-link {
    display: inline-block;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
    border: none;
    cursor: pointer;
}

.store-link:hover {
    background: linear-gradient(135deg, #229954 0%, #1e8449 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.store-link:active {
    transform: translateY(0);
}

/* Mission Section */
.mission-section {
    padding: 80px 60px;
    background: white;
}

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.mission-card {
    padding: 40px 30px;
    border-left: 4px solid #2c3e50;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
}

.mission-card:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.mission-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.mission-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.mission-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Affiliate Section */
.affiliate-section {
    padding: 80px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.affiliate-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
}

.affiliate-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.affiliate-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
    transition: transform 0.3s, box-shadow 0.3s;
}

.affiliate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.affiliate-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.affiliate-logo h3 {
    font-size: 3rem;
    margin: 0;
}

.affiliate-description {
    flex: 1;
}

.affiliate-description p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.affiliate-link {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.affiliate-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
}

/* Contact Section */
.contact-section {
    padding: 80px 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.email-display {
    background: white;
    color: #2c3e50;
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.email-display:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.email-icon {
    font-size: 1.5rem;
}

.email-address {
    font-size: 1.2rem;
    font-weight: 600;
}

.email-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1a252f;
    color: white;
    padding: 40px 60px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.footer-logo-image {
    max-width: 120px;
    height: auto;
    border-radius: 8px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-image:hover {
    opacity: 1;
}

.footer-content p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-copyright {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 30px 60px;
    }

    .logo-image {
        max-width: 140px;
    }

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

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

    .story-section,
    .tools-section,
    .mission-section,
    .affiliate-section,
    .contact-section,
    .footer {
        padding: 60px 30px;
    }

    .footer-logo-image {
        max-width: 90px;
    }

    .story-content h2,
    .tools-section h2,
    .mission-section h2,
    .affiliate-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .affiliate-content {
        flex-direction: column;
        text-align: center;
    }

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

    .tools-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }
}