/* Cultioo Desktop Apps Overview */

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #000000;
    min-height: 100vh;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 40px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: none;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header:hover {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: none;
}

.header h1 {
    font-size: 2rem;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.header .big {
    color: #000000;
}

.header .bite {
    color: rgba(0, 0, 0, 0.35);
    font-weight: 400;
}

main {
    width: min(1200px, 92vw);
    margin: 0 auto;
    padding-top: 140px;
    padding-bottom: 48px;
}

.hero {
    text-align: center;
    margin-bottom: 56px;
    animation: fadeUp 0.7s ease-out;
}

.eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(2rem, 4.8vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.lead {
    max-width: 860px;
    margin: 0 auto;
    color: rgba(0, 0, 0, 0.62);
    line-height: 1.7;
    font-size: 1.05rem;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 34px;
}

.app-card {
    border: none;
    border-radius: 28px;
    padding: 28px;
    background: #f6f6f6;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    animation: fadeUp 0.8s ease-out;
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.badge {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(0, 0, 0, 0.62);
    border: none;
    border-radius: 999px;
    padding: 7px 12px;
    margin-bottom: 14px;
}

.card-top h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.card-top p {
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.55;
    font-size: 0.96rem;
}

.feature-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    left: 0;
    top: 0.55em;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    background: #000000;
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 700;
    width: fit-content;
    min-width: 250px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.site-footer {
    background: #ffffff;
    padding: 40px 40px 28px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 20px;
}

.footer-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #111111;
}

.footer-copy {
    font-size: 0.78rem;
    color: #cccccc;
}

.footer-lang {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-lang select {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 36px 8px 16px;
    border: none;
    border-radius: 50px;
    background: #f4f4f4 url('data:image/svg+xml;utf8,<svg fill="%23111" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 12px center/16px 16px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    color: #111111;
    cursor: pointer;
    min-width: 148px;
    transition: background 0.2s ease;
}

.footer-lang select:hover {
    background-color: #ebebeb;
}

.footer-lang select option {
    background: #ffffff;
    color: #111111;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .app-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    main {
        padding-top: 120px;
    }

    .header {
        padding: 18px 16px;
    }

    .header h1 {
        font-size: 1.4rem;
    }

    .app-card {
        border-radius: 22px;
        padding: 22px;
    }

    .card-top h2 {
        font-size: 1.6rem;
    }

    .cta {
        width: 100%;
        min-width: 0;
    }

    .site-footer {
        padding: 32px 20px 20px;
    }
}
