
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #ffffff;
    color: #000000;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.topbar {
    padding: 32px 0 12px;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.logo {
    width: 160px;
    height: auto;
    object-fit: contain;
}

.top-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    font-size: 20px;
    line-height: 1.2;
}

.top-contacts a {
    color: #000;
}

.main-section {
    padding: 20px 0 48px;
}

.section-label {
    color: #7d7d7d;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(48px, 7vw, 82px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.rotator-wrap {
    height: 92px;
    overflow: hidden;
    position: relative;
    margin-bottom: 34px;
}

.rotator {
    transition: transform .7s cubic-bezier(.77,0,.18,1);
}

.rotator-item {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1;
    font-weight: 800;
    color: #1d55ff;
    white-space: nowrap;
    letter-spacing: -0.04em;
}

.timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 42px;
    flex-wrap: wrap;
}

.timer-box {
    width: 92px;
    height: 92px;
    border: 1px solid #dfe5ff;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.timer-box span {
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
}

.timer-box small {
    margin-top: 6px;
    font-size: 14px;
    color: #555;
}

.timer-separator {
    font-size: 42px;
    font-weight: 600;
}

.illustration {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    margin: 0 auto 34px;
}

.catalog-link {
    font-size: 28px;
    font-weight: 400;
    color: #000;
    margin: 0;
}

.catalog-link a {
    color: #1d55ff;
    font-weight: 600;
}

.footer {
    padding: 48px 20px 36px;
}

.footer-block {
    margin-bottom: 32px;
    font-size: 22px;
    line-height: 1.7;
}

.footer-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer a {
    color: #1d55ff;
}

.footer-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 18px;
}

.footer-legal {
    max-width: 720px;
    margin: 0 auto;
    font-size: 8px;
    line-height: 1.7;
    color: #666;
}

@media (max-width: 768px) {

    .topbar-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .top-contacts {
        align-items: center;
        font-size: 18px;
    }

    .section-label {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .hero-title {
        margin-bottom: 16px;
    }

    .rotator-wrap {
        height: 62px;
    }

    .rotator-item {
        height: 62px;
        font-size: 34px;
        white-space: normal;
        padding: 0 10px;
    }

    .catalog-link {
        font-size: 22px;
    }

    .footer-block {
        font-size: 18px;
    }
}
