* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #E6E0D4;
    color: #2F2F2F;
    line-height: 1.6;
}

/* Header Navigation */
.header {
    background-color: #F5F3EF;
    box-shadow: 0 2px 4px rgba(47, 47, 47, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #325E34;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-icon .cls-1 {
    fill: #9C6D3C;
}

.logo-icon .cls-2 {
    fill: #325E34;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: #2F2F2F;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav a:hover {
    background-color: #E6E0D4;
    color: #325E34;
}

.nav a.active {
    background-color: #325E34;
    color: #F5F3EF;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 4px;
    margin-left: 16px;
}

.lang-btn {
    background: none;
    border: 1px solid #325E34;
    color: #325E34;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: #E6E0D4;
}

.lang-btn.active {
    background-color: #325E34;
    color: #F5F3EF;
}

.mobile-language-switcher {
    padding: 16px 24px;
    border-top: 1px solid #E5E5E5;
    display: flex;
    gap: 8px;
}

.mobile-language-switcher .lang-btn {
    flex: 1;
    padding: 12px;
    font-size: 16px;
}

/* Mobile Navigation */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: #325E34;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}

.mobile-nav {
    display: none;
    background-color: #F5F3EF;
    border-top: 1px solid #E5E5E5;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 16px 24px;
    color: #2F2F2F;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    border-bottom: 1px solid #E5E5E5;
    cursor: pointer;
}

.mobile-nav a:hover {
    background-color: #E6E0D4;
    color: #325E34;
}

.mobile-nav a.active {
    background-color: #325E34;
    color: #F5F3EF;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* Page Content */
.page-content {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #F5F3EF 0%, #E6E0D4 100%);
    border-radius: 24px;
    padding: 80px 60px;
    box-shadow: 0 8px 32px rgba(47, 47, 47, 0.1);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23325E34' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #2F2F2F;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #325E34 0%, #9C6D3C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-highlight .feature-icon {
    font-size: 1.5rem;
}

.feature-highlight span:last-child {
    color: #325E34;
    font-weight: 600;
    font-size: 1rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.coming-soon-primary {
    background: linear-gradient(135deg, #325E34 0%, #4A7C4E 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: default;
    box-shadow: 0 4px 16px rgba(50, 94, 52, 0.3);
    position: relative;
    overflow: hidden;
}

.coming-soon-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.coming-soon-secondary {
    background: transparent;
    color: #325E34;
    border: 2px solid #325E34;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: default;
    transition: all 0.3s ease;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 280px;
    height: 280px;
    filter: drop-shadow(0 8px 32px rgba(50, 94, 52, 0.2));
}

.hero-logo .cls-1 {
    fill: #9C6D3C;
}

.hero-logo .cls-2 {
    fill: #325E34;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2F2F2F;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    margin-bottom: 100px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(47, 47, 47, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(47, 47, 47, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2F2F2F;
    margin-bottom: 16px;
}

.feature-card p {
    color: #666666;
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works-section {
    margin-bottom: 100px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    padding: 40px 20px;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #325E34 0%, #9C6D3C 100%);
    color: white;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(50, 94, 52, 0.3);
}

.process-step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2F2F2F;
    margin-bottom: 16px;
}

.process-step p {
    color: #666666;
    line-height: 1.7;
}

/* Why Smultron Section */
.why-smultron-section {
    background: linear-gradient(135deg, #2F2F2F 0%, #4A4A4A 100%);
    color: white;
    padding: 80px 60px;
    border-radius: 20px;
    margin-bottom: 60px;
    text-align: center;
}

.why-smultron-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.2;
}

.why-smultron-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Final CTA Section */
.cta-section {
    background: linear-gradient(135deg, #9C6D3C 0%, #C88B5A 100%);
    color: white;
    padding: 80px 60px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.cta-section .coming-soon-primary {
    background: white;
    color: #9C6D3C;
}

.cta-section .coming-soon-primary::before {
    background: linear-gradient(90deg, transparent, rgba(156,109,60,0.1), transparent);
}

.cta-section .coming-soon-secondary {
    border-color: white;
    color: white;
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(47, 47, 47, 0.1);
    text-align: center;
    margin-bottom: 40px;
}

.contact-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2F2F2F;
    margin-bottom: 16px;
}

.contact-section p {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.email-container {
    background: #F5F3EF;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.email-display {
    color: #325E34;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    flex: 1;
    text-align: center;
}

.copy-button {
    background: #325E34;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.copy-button:hover {
    background: #4A7C4E;
    transform: translateY(-1px);
}

.copy-button.copied {
    background: #9C6D3C;
}

.copy-feedback {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #2F2F2F;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.copy-feedback.show {
    opacity: 1;
}

/* Legal Section */
.legal-section {
    padding: 20px 0;
}

.legal-intro {
    text-align: center;
    margin-bottom: 40px;
}

.legal-intro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2F2F2F;
    margin-bottom: 16px;
}

.legal-intro p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
}

.legal-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.legal-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(47, 47, 47, 0.1);
    transition: all 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(47, 47, 47, 0.15);
}

.legal-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2F2F2F;
    margin-bottom: 12px;
}

.legal-card p {
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.legal-card a {
    color: #325E34;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.legal-card a:hover {
    border-bottom-color: #325E34;
    color: #4A7C4E;
}

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    font-size: 1.1rem;
    color: #666666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .language-switcher {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-features {
        align-items: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .coming-soon-primary,
    .coming-soon-secondary {
        padding: 16px 24px;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .main-content {
        padding: 20px 16px;
    }

    .hero-section,
    .features-section,
    .how-it-works-section,
    .why-smultron-section,
    .cta-section {
        padding: 40px 20px;
    }

    .email-container {
        flex-direction: column;
        gap: 12px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .legal-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
} 