* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #ffffff;
    color: #111827;
}

/* ---------- HEADER ---------- */

header {
    height: 80px;
    padding: 0 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 1px solid #ececec;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 10px; 
}

.company-name {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* ---------- LANGUAGE ---------- */

.language {
    display: flex;
    gap: 8px;
}

.language button {
    background: transparent;
    border: none;
    color: #6b7280;

    padding: 10px 14px;
    border-radius: 10px;

    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;

    transition: 0.2s;
}

.language button:hover {
    background: #f5f5f5;
    color: #111827;
}

.language button.active {
    background: #111827;
    color: white;
}

/* ---------- MAIN ---------- */

main {
    height: calc(100vh - 80px);

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 40px;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.05em;
}

p {
    margin-top: 20px;
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
}