@import url('https://paranoia.by/wp-content/themes/theme-paranoia/fonts/asphalticscratchrusbylyajka.otf');
@import url('https://paranoia.by/wp-content/themes/theme-paranoia/fonts/trixiepro_heavy.otf');

:root {
    --containerWidth: 1440px;
    --colorAccent: #F0C20F;
    --colorAccent2: #F8D211;
    --colorAccent3: #E2A80B;
    --containerPadding: 16px;
    --sectionPadding: 110px;
    --sectionInnerGap: 50px;
}

.section.hero {
    display: flex;
    height: 710px;
    padding: var(--sectionPadding) 0;
    background: url('https://paranoia.by/wp-content/uploads/2026/06/Frame-49-1-1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.section {
    /*display: flex;*/
    padding: var(--sectionPadding) 0;
    /*flex-direction: column;*/
    /*align-items: flex-start;*/
    /*align-self: stretch;*/
}

.section > .container {
    max-width: var(--containerWidth);
    width: 100%;
    padding-left: var(--containerPadding);
    padding-right: var(--containerPadding);
}

.section.hero .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex: 1 0 0;
    height: 100%;
    max-width: 750px;
    margin-right: auto;
}

.section.hero .hero-title-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.section.hero .hero-title-content > * {
    margin-bottom: 0;
}

.section.hero .buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section.hero h1 {
    color: var(--colorAccent);
    leading-trim: both;
    text-edge: cap;
    line-height: 0.8;

    /* pr/H1 */
    font-family: "ASPHALTIC SCRATCH(RUS BY LYAJKA", sans-serif;
    font-size: 140px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 7px;
    text-transform: uppercase;
    text-align: center;
}

.section.hero h3 {
    color: #FFF;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "ASPHALTIC SCRATCH(RUS BY LYAJKA", sans-serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section.hero p {
    color: #FFF;
    text-align: center;
    font-family: TrixiePro, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 550;
    line-height: 120%; /* 28.8px */
    max-width: 720px;
}

.section .button-secondary,
.section .button-primary {
    display: flex;
    padding: 14px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    color: #000;
    leading-trim: both;
    text-edge: cap;
    font-family: "ASPHALTIC SCRATCH(RUS BY LYAJKA", sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 2px;
    text-transform: uppercase;

    background: linear-gradient(180deg, #F8D211 28.37%, #E2A80B 100%);
    transition: all 0.3s ease;
}

.section .button-secondary {
    border: 2px solid #F8D211;
    background: transparent;
    color: #FFF;
}

.section .button-secondary:hover,
.section .button-primary:hover {
    background: linear-gradient(180deg, #F8D211 28.37%, #E2A80B 100%);
    color: black;
    box-shadow: 0 0 15px 0 #FFF2C1, 0 1px 15px 0 #FFEFB0;

    transform: translateY(-3px);
}

.section h2 {
    color: white;
    leading-trim: both;
    text-edge: cap;

    /* pr/H2 */
    font-family: "ASPHALTIC SCRATCH(RUS BY LYAJKA", sans-serif;
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 3.5px;
    text-transform: uppercase;

    margin-bottom: var(--sectionInnerGap);
}

.section .advantages {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 40px 30px;
    align-self: stretch;
    flex-wrap: wrap;
}

.section .advantages > div {
    display: flex;
    --wid: calc((100% - 3 * 20px) / 3);
    width: var(--wid);
    max-width: var(--wid);
    min-width: var(--wid);
    align-items: flex-start;
    gap: 20px;
}

.section .advantages img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.section .advantages > div > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex: 1 0 0;
}

.section .advantages > div > div > * {
    margin-bottom: 0;
}

.section h4 {
    leading-trim: both;
    text-edge: cap;

    font-family: "ASPHALTIC SCRATCH(RUS BY LYAJKA", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1.5px;

    background: linear-gradient(180deg, #F8D211 28.37%, #E2A80B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section p {
    color: #FFF;
    font-family: TrixiePro, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 120%; /* 19.2px */
    letter-spacing: -1px;
}