@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Sora:wght@400;500;600;700&display=swap');

:root {
    /* Primary blue palette */
    --primary: #194FF9;
    --primary-light: #7595FB;
    --primary-lighter: #BACAFD;
    --primary-lightest: #E8EDFE;
    --primary-dark: #0F32A1;
    
    /* Secondary dark blue palette */
    --secondary: #09256B;
    --secondary-light: #5C71A5;
    --secondary-lighter: #8596C2;
    --secondary-lightest: #AFBCDF;
    --secondary-dark: #071E56;
    
    /* Additional colors from the screenshot */
    --accent: #34c759;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, .logo, .btn, .nav-links a, .section-header h2, .countdown-item span {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 40px;
}

.logo svg {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    height: 100%;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    transition: color 0.3s;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.nav-links a svg {
    color: var(--primary);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a .en-content,
.nav-links a .pl-content {
    display: none;
}

.nav-links a .en-content.active,
.nav-links a .pl-content.active {
    display: inline;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-switch button {
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.4;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 4px;
    width: 36px;
    height: 36px;
}

.language-switch button span {
    width: 30px;
    height: 22px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.language-switch button.active {
    opacity: 1;
}

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.btn:hover {
    background-color: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    margin-left: 15px;
    box-shadow: none;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.launch-countdown {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    margin: -50px auto 0;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.launch-countdown h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 32px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.countdown-item {
    background-color: var(--primary);
    color: white;
    padding: 15px;
    border-radius: 5px;
    min-width: 80px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.countdown-item span {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    font-family: 'Sora', sans-serif;
}

.countdown-item p {
    font-size: 0.9rem;
    margin-top: 5px;
    font-family: 'Inter', sans-serif;
}

.features {
    padding: 100px 0 60px;
    background-color: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-lightest);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.feature-card h3 {
    font-size: 23px;
    margin-bottom: 15px;
    color: var(--secondary);
    font-weight: 700;
}

.feature-card p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.5;
}

.how-it-works {
    padding: 60px 0;
    background-color: white;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 30px 0;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    font-family: 'Sora', sans-serif;
}

.step h3 {
    margin-bottom: 15px;
    color: var(--secondary);
    font-size: 23px;
    font-weight: 700;
}

.step p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.5;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-light);
    display: block;
}

.demo-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--light);
}

.demo-section h2 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
}

.demo-section p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.5;
}

.demo-img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact {
    padding: 80px 0;
    background-color: white;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.5;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-lightest);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 50px;
}

.contact-text h3 {
    font-size: 18px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
}

.contact-text p, .contact-text a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
    line-height: 1.4;
}

.contact-text a:hover {
    color: var(--primary);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--primary-lightest);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary);
    font-weight: 500;
    font-family: 'Sora', sans-serif;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--primary-lighter);
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: 'Inter', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-lightest);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-primary {
    background-color: var(--primary);
    width: 100%;
    font-size: 16px;
    padding: 14px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

footer {
    background-color: var(--secondary);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent);
}

.footer-col p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: var(--accent);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .navbar {
        flex-direction: column;
        height: auto;
        gap: 20px;
        padding: 15px 0;
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .contact-content {
        flex-direction: column;
    }

    .hero .btn-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero .btn {
        width: 100%;
    }
}

/* Initial language state */
.pl-content {
    display: none;
}

.pl-content.active {
    display: block;
}

.en-content {
    display: none;
}

.en-content.active {
    display: block;
}

.uk-content {
    display: none;
}

.uk-content.active {
    display: block;
}

.de-content {
    display: none;
}

.de-content.active {
    display: block;
}

.fr-content {
    display: none;
}

.fr-content.active {
    display: block;
}

/* Special handling for navbar spans */
.nav-links a .pl-content.active,
.nav-links a .en-content.active,
.nav-links a .uk-content.active,
.nav-links a .de-content.active,
.nav-links a .fr-content.active {
    display: inline;
}

.nav-links a .pl-content,
.nav-links a .en-content,
.nav-links a .uk-content,
.nav-links a .de-content,
.nav-links a .fr-content {
    display: none;
}

/* Language switcher dropdown */
.language-switch {
    position: relative;
    display: flex;
    align-items: center;
}

.language-dropdown {
    display: flex;
    align-items: center;
    background: var(--light);
    border: 1px solid var(--primary-lighter);
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    gap: 8px;
    font-size: 14px;
    color: var(--secondary);
    transition: all 0.3s;
}

.language-dropdown:hover {
    border-color: var(--primary);
}

.language-dropdown span.fi {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.language-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--primary-lighter);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    min-width: 150px;
    display: none;
    margin-top: 5px;
}

.language-dropdown-content.show {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid var(--primary-lightest);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: var(--primary-lightest);
}

.language-option.active {
    background: var(--primary-lighter);
    font-weight: 500;
}

.language-option span.fi {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.language-name {
    font-weight: normal;
}

/* Specific for German & French language content */
.de-content h2, .fr-content h2 {
    color: var(--secondary);
}

.de-content .btn-primary, .fr-content .btn-primary {
    background-color: var(--primary);
}

.de-content .btn-primary:hover, .fr-content .btn-primary:hover {
    background-color: var(--primary-dark);
} 