:root {
    --bg-primary: #111111;
    --bg-secondary: #1a1a1a;
    --text-primary: #F0F0F0;
    --text-secondary: #BABABA;
    --accent: #CC0B0D;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

.font-lato {
    font-family: 'Lato', sans-serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.a4-page {
    width: 210mm;
    max-width: 100%;
    min-height: 297mm;
    margin: 0 auto;
    padding: 20mm 18mm;
    background: var(--bg-primary);
}

@media screen and (max-width: 800px) {
    .a4-page {
        padding: 6vw 5vw;
        min-height: auto;
    }
}

/* Logo */

.logo-name .logo-title,
.logo-www {
    font-size: 26px;
    font-family: Megrim;
}

.logo-name {
    position: relative;
    width: 12vw;
    height: 30px;
}

.logo-name .logo-title {
    position: absolute;
    top: 0;
    left: 0;
}

.logo-www {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wB,
.logo-w0,
.logo-wA {
    position: absolute;
    margin-bottom: -25px;
}

.logo-wB {
    transform: rotate(120deg);
    transform-origin: center -1px;
}

.logo-wA {
    transform: rotate(-120deg);
    transform-origin: center -1px;
}


.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--text-secondary);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checkbox-custom:hover {
    border-color: var(--accent);
}

.checkbox-custom.checked {
    border-color: var(--accent);
    background: var(--accent);
}

.checkbox-custom.checked svg {
    opacity: 1;
}

.checkbox-custom svg {
    width: 12px;
    height: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(186, 186, 186, 0.1);
}

.checklist-item:last-child {
    border-bottom: none;
}

.item-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--accent);
    font-size: 14px;
    min-width: 24px;
    flex-shrink: 0;
}

.item-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--text-primary);
    font-size: 13px;
    line-height: 1.5;
    flex: 1;
}

.result-box {
    background: var(--bg-secondary);
    border: 1px solid var(--accent);
    padding: 18px 22px;
    margin-top: 24px;
}

.separator-line {
    height: 1px;
    background: var(--accent);
    width: 100%;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.25em;
    font-size: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.checklist-item {
    animation: fadeIn 0.4s ease forwards;
    opacity: 0;
}

.checklist-item:nth-child(1) {
    animation-delay: 0.05s;
}

.checklist-item:nth-child(2) {
    animation-delay: 0.1s;
}

.checklist-item:nth-child(3) {
    animation-delay: 0.15s;
}

.checklist-item:nth-child(4) {
    animation-delay: 0.2s;
}

.checklist-item:nth-child(5) {
    animation-delay: 0.25s;
}

.checklist-item:nth-child(6) {
    animation-delay: 0.3s;
}

.checklist-item:nth-child(7) {
    animation-delay: 0.35s;
}

.checklist-item:nth-child(8) {
    animation-delay: 0.4s;
}

.checklist-item:nth-child(9) {
    animation-delay: 0.45s;
}

.checklist-item:nth-child(10) {
    animation-delay: 0.5s;
}