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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    text-rendering: optimizeSpeed;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Rubik';
    src: url('/assets-main/fonts-loaded/rubik-variable.woff2') format('woff2');
    font-weight: 300 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('/assets-main/fonts-loaded/space-grotesk-variable.woff2') format('woff2');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets-main/fonts-loaded/inter-variable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

body.fonts-loading * {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body.fonts-active * {
    font-family: 'Rubik', system-ui, -apple-system, sans-serif;
    transition: font-family 0.3s ease;
}

img,
picture,
video,
canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 768px) {
    .no-mobile-anim * {
        animation: none !important;
        transition: none !important;
    }
}

.modal-age__container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: none;
}

.modal-age__card {
    pointer-events: auto;
    background-color: hsl(0, 0%, 100%);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: min(550px, 90vw);
    box-shadow: 0 25px 50px -12px hsla(0, 0%, 0%, 0.5);
    border: 2px solid hsl(210, 100%, 60%);
    margin: 1rem;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.modal-age__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.modal-age__icon {
    font-size: 2.5rem;
    line-height: 1;
}

.modal-age__title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 1.875rem;
    color: hsl(210, 100%, 25%);
    line-height: 1.2;
}

.modal-age__text {
    color: hsl(0, 0%, 30%);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.modal-age__link {
    color: hsl(210, 100%, 50%);
    text-decoration: underline;
    font-weight: 600;
}

.modal-age__link:hover {
    color: hsl(210, 100%, 40%);
}

.modal-age__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal-age__btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    flex: 1;
    min-width: 160px;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Inter', system-ui, sans-serif;
}

.modal-age__btn--confirm {
    background-color: hsl(120, 65%, 50%);
    color: hsl(0, 0%, 100%);
}

.modal-age__btn--confirm:hover {
    background-color: hsl(120, 65%, 40%);
}

.modal-age__btn--deny {
    background-color: hsl(0, 85%, 60%);
    color: hsl(0, 0%, 100%);
}

.modal-age__btn--deny:hover {
    background-color: hsl(0, 85%, 50%);
}

@media (max-width: 768px) {
    .modal-age__container {
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 2rem;
    }
    .modal-age__card {
        margin: 0 1rem 1rem;
        padding: 2rem;
        transform: translateY(100vh);
    }
    .modal-age__container[aria-hidden="false"] .modal-age__card {
        transform: translateY(0);
    }
    .modal-age__actions {
        flex-direction: column;
    }
    .modal-age__btn {
        min-width: 100%;
    }
}

.cookie-banner__container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    background-color: hsl(210, 50%, 98%);
    border-top: 3px solid hsl(30, 80%, 55%);
    padding: 1.25rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-banner__container[aria-hidden="false"] {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: 1247px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner__text-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.cookie-banner__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.cookie-banner__message {
    color: hsl(0, 0%, 20%);
    font-size: 1rem;
    line-height: 1.5;
}

.cookie-banner__link {
    color: hsl(210, 100%, 50%);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-banner__link:hover {
    color: hsl(210, 100%, 40%);
}

.cookie-banner__button {
    background-color: hsl(30, 80%, 55%);
    color: hsl(0, 0%, 100%);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.cookie-banner__button:hover {
    background-color: hsl(30, 80%, 45%);
}

@media (max-width: 768px) {
    .cookie-banner__content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    .cookie-banner__text-group {
        min-width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    .cookie-banner__button {
        width: 100%;
    }
}

.scroll-top__trigger {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 3.75rem;
    height: 3.75rem;
    background-color: hsl(210, 100%, 50%);
    color: hsl(0, 0%, 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    transform: scale(0.8) translateY(1rem);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 12px hsla(210, 100%, 50%, 0.3);
}

.scroll-top__trigger:hover {
    background-color: hsl(210, 100%, 40%);
    transform: scale(0.9);
}

.scroll-top__trigger:focus-visible {
    outline: 3px solid hsl(210, 100%, 70%);
    outline-offset: 2px;
}

.scroll-top__trigger[hidden] {
    display: none;
}

.scroll-top__trigger.scroll-top__trigger--visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.scroll-top__icon {
    font-size: 1.75rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .scroll-top__trigger {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3.25rem;
        height: 3.25rem;
    }
    .scroll-top__icon {
        font-size: 1.5rem;
    }
}

.site-header {
    background-color: hsl(0, 0%, 100%);
    border-bottom: 1px solid hsl(210, 20%, 92%);
    padding: 1.5rem 0;
    position: relative;
    z-index: 100;
}

.site-header__grid {
    max-width: 1247px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.site-header__brand-block {
    grid-column: 1;
    grid-row: 1;
}

.brand-block__link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(210, 100%, 25%);
    transition: color 0.3s ease;
}

.brand-block__link:hover {
    color: hsl(210, 100%, 40%);
}

.brand-block__icon {
    font-size: 2.25rem;
}

.brand-block__name {
    line-height: 1;
}

.site-header__nav-block {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-block__list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-end;
}

.nav-block__link {
    color: hsl(0, 0%, 30%);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-block__link:hover,
.nav-block__link--active {
    color: hsl(210, 100%, 50%);
}

.nav-block__link--active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: hsl(210, 100%, 50%);
    border-radius: 2px;
}

.site-header__warning-block {
    grid-column: 1 / span 2;
    grid-row: 2;
    background-color: hsl(50, 100%, 95%);
    border: 1px solid hsl(50, 80%, 70%);
    border-radius: 10px;
    padding: 0.875rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    justify-self: center;
    max-width: 800px;
    width: 100%;
}

.warning-block__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-block__text {
    color: hsl(40, 60%, 25%);
    font-size: 0.95rem;
    line-height: 1.4;
}

.warning-block__link {
    color: hsl(210, 100%, 40%);
    font-weight: 600;
    text-decoration: underline;
}

.warning-block__link:hover {
    color: hsl(210, 100%, 30%);
}

@media (max-width: 918px) {
    .site-header__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 1.25rem;
        padding: 0 1.5rem;
    }
    .site-header__brand-block {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
        text-align: center;
    }
    .site-header__nav-block {
        grid-column: 1;
        grid-row: 2;
        justify-content: center;
    }
    .nav-block__list {
        justify-content: center;
        gap: 1.5rem;
    }
    .site-header__warning-block {
        grid-column: 1;
        grid-row: 3;
        justify-self: stretch;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-block__list {
        gap: 1rem;
        font-size: 0.95rem;
    }
    .brand-block__link {
        font-size: 1.5rem;
    }
    .brand-block__icon {
        font-size: 2rem;
    }
}

.welcome-section {
    position: relative;
    overflow: hidden;
    max-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(0, 0%, 100%);
    min-height: 600px;
}

.welcome-section__background {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, hsl(210, 100%, 30%), hsl(280, 70%, 40%), hsl(340, 80%, 50%), hsl(210, 100%, 30%));
    background-size: 400% 400%;
    animation: welcome-section__pattern-move 20s ease infinite;
    z-index: -2;
}

@keyframes welcome-section__pattern-move {
    0% {
        background-position: 0% 50%;
        transform: rotate(0deg) scale(1);
    }
    33% {
        background-position: 100% 50%;
        transform: rotate(180deg) scale(1.1);
    }
    66% {
        background-position: 50% 100%;
        transform: rotate(360deg) scale(0.9);
    }
    100% {
        background-position: 0% 50%;
        transform: rotate(720deg) scale(1);
    }
}

.welcome-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.4);
    backdrop-filter: blur(4px);
    z-index: -1;
}

.welcome-section__container {
    max-width: 1247px;
    width: 100%;
    padding: 4rem 2rem;
    z-index: 1;
    position: relative;
}

.welcome-section__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-section__text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
}

.welcome-section__title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: hsl(0, 0%, 100%);
    text-shadow: 0 2px 10px hsla(0, 0%, 0%, 0.3);
}

.welcome-section__description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: hsl(0, 0%, 95%);
    max-width: 600px;
}

.welcome-section__cta-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: hsl(120, 65%, 50%);
    color: hsl(0, 0%, 100%);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 15px hsla(120, 65%, 30%, 0.4);
}

.welcome-section__cta-link:hover {
    background-color: hsl(120, 65%, 40%);
    transform: translateY(-3px);
}

.welcome-section__image-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-section__image {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px hsla(0, 0%, 0%, 0.5);
    object-fit: cover;
    border: 5px solid hsla(0, 0%, 100%, 0.2);
}

@media (max-width: 918px) {
    .welcome-section {
        max-height: none;
        min-height: auto;
    }
    .welcome-section__content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .welcome-section__text-block {
        align-items: center;
    }
    .welcome-section__title {
        font-size: 2.75rem;
    }
    .welcome-section__description {
        font-size: 1.125rem;
    }
    .welcome-section__image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .welcome-section__title {
        font-size: 2.25rem;
    }
    .welcome-section__description {
        font-size: 1rem;
    }
    .welcome-section__container {
        padding: 3rem 1.5rem;
    }
    .welcome-section__cta-link {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    .welcome-section__image {
        max-width: 300px;
    }
}

.games-section {
    padding: 5rem 2rem;
    background-color: hsl(210, 30%, 98%);
}

.games-section__container {
    max-width: 1247px;
    margin: 0 auto;
}

.games-section__heading {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 2.75rem;
    color: hsl(210, 100%, 25%);
    text-align: center;
    margin-bottom: 3.5rem;
    line-height: 1.2;
}

.games-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(385px, 100%), 1fr));
    gap: 2.5rem;
}

.game-card {
    background-color: hsl(0, 0%, 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px hsla(210, 30%, 20%, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px hsla(210, 30%, 20%, 0.15);
}

.game-card__image-wrapper {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.game-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-card__image {
    transform: scale(1.05);
}

.game-card__content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.game-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: hsl(50, 100%, 95%);
    color: hsl(40, 60%, 30%);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    width: fit-content;
    font-weight: 700;
    font-size: 0.95rem;
}

.game-card__rating-icon {
    font-size: 1rem;
}

.game-card__title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 1.75rem;
    color: hsl(210, 100%, 20%);
    line-height: 1.3;
}

.game-card__link {
    margin-top: auto;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: hsl(210, 100%, 50%);
    color: hsl(0, 0%, 100%);
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.game-card__link:hover {
    background-color: hsl(210, 100%, 40%);
}

@media (max-width: 1366px) {
    .games-section__grid {
        grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    }
}

@media (max-width: 768px) {
    .games-section {
        padding: 3.5rem 1.5rem;
    }
    .games-section__heading {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }
    .games-section__grid {
        gap: 2rem;
    }
    .game-card__content {
        padding: 1.5rem;
    }
    .game-card__title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .games-section__grid {
        grid-template-columns: 1fr;
    }
}

.about-section {
    padding: 5rem 2rem;
    background-color: hsl(0, 0%, 100%);
    border-top: 1px solid hsl(210, 20%, 92%);
    border-bottom: 1px solid hsl(210, 20%, 92%);
}

.about-section__container {
    max-width: 1247px;
    margin: 0 auto;
}

.about-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-section__title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 2.75rem;
    color: hsl(210, 100%, 25%);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-section__subtitle {
    font-size: 1.25rem;
    color: hsl(0, 0%, 40%);
    max-width: 700px;
    margin: 0 auto;
}

.about-section__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-section__text-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-section__paragraph {
    font-size: 1.125rem;
    line-height: 1.7;
    color: hsl(0, 0%, 25%);
}

.about-section__link {
    align-self: flex-start;
    padding: 0.875rem 2rem;
    background-color: transparent;
    color: hsl(210, 100%, 50%);
    border: 2px solid hsl(210, 100%, 50%);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.about-section__link:hover {
    background-color: hsl(210, 100%, 50%);
    color: hsl(0, 0%, 100%);
}

.about-section__stats {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-section__stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: hsl(210, 50%, 98%);
    border-radius: 16px;
    border-left: 5px solid hsl(210, 100%, 50%);
}

.about-section__stat-number {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: hsl(210, 100%, 40%);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-section__stat-label {
    font-size: 1.125rem;
    color: hsl(0, 0%, 30%);
    font-weight: 600;
}

@media (max-width: 918px) {
    .about-section__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-section__stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .about-section__stat-item {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3.5rem 1.5rem;
    }
    .about-section__title {
        font-size: 2.25rem;
    }
    .about-section__subtitle {
        font-size: 1.125rem;
    }
    .about-section__paragraph {
        font-size: 1rem;
    }
    .about-section__stat-item {
        padding: 1.5rem;
    }
    .about-section__stat-number {
        font-size: 2.5rem;
    }
}

.benefits-section {
    padding: 5rem 2rem;
    background-color: hsl(210, 30%, 98%);
}

.benefits-section__container {
    max-width: 1247px;
    margin: 0 auto;
}

.benefits-section__title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 2.75rem;
    color: hsl(210, 100%, 25%);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.benefits-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background-color: hsl(0, 0%, 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px hsla(210, 30%, 20%, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid hsl(210, 100%, 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px hsla(210, 30%, 20%, 0.1);
}

.benefit-card__icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: hsl(210, 100%, 96%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.benefit-card__icon {
    font-size: 2.5rem;
    line-height: 1;
}

.benefit-card__heading {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 1.75rem;
    color: hsl(210, 100%, 20%);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-card__text {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: hsl(0, 0%, 35%);
    flex-grow: 1;
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 3.5rem 1.5rem;
    }
    .benefits-section__title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
    .benefits-section__grid {
        gap: 2rem;
    }
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    .benefit-card__icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    .benefit-card__icon {
        font-size: 2rem;
    }
    .benefit-card__heading {
        font-size: 1.5rem;
    }
}

.process-section {
    padding: 5rem 2rem;
    background-color: hsl(0, 0%, 100%);
}

.process-section__container {
    max-width: 1247px;
    margin: 0 auto;
}

.process-section__title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 2.75rem;
    color: hsl(210, 100%, 25%);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.process-section__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 2.5rem;
    counter-reset: process-counter;
}

.process-step {
    position: relative;
    padding: 2rem;
    background-color: hsl(210, 50%, 98%);
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step__number {
    width: 60px;
    height: 60px;
    background-color: hsl(210, 100%, 50%);
    color: hsl(0, 0%, 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.process-step__title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 1.5rem;
    color: hsl(210, 100%, 20%);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.process-step__description {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: hsl(0, 0%, 35%);
    flex-grow: 1;
}

@media (max-width: 768px) {
    .process-section {
        padding: 3.5rem 1.5rem;
    }
    .process-section__title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
    .process-section__steps {
        gap: 2rem;
    }
    .process-step {
        padding: 1.75rem 1.5rem;
    }
    .process-step__number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    .process-step__title {
        font-size: 1.375rem;
    }
}

.responsible-section {
    padding: 5rem 2rem;
    background-color: hsl(50, 100%, 97%);
    border-top: 1px solid hsl(50, 80%, 85%);
    border-bottom: 1px solid hsl(50, 80%, 85%);
}

.responsible-section__container {
    max-width: 1247px;
    margin: 0 auto;
}

.responsible-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.responsible-section__title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 2.75rem;
    color: hsl(40, 70%, 30%);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.responsible-section__subtitle {
    font-size: 1.25rem;
    color: hsl(40, 40%, 40%);
    max-width: 700px;
    margin: 0 auto;
}

.responsible-section__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.responsible-section__message {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.responsible-section__text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: hsl(40, 50%, 25%);
}

.responsible-section__cta {
    align-self: flex-start;
    padding: 1rem 2rem;
    background-color: hsl(40, 80%, 50%);
    color: hsl(0, 0%, 100%);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 12px hsla(40, 80%, 40%, 0.3);
}

.responsible-section__cta:hover {
    background-color: hsl(40, 80%, 40%);
}

.responsible-section__links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.responsible-section__link-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background-color: hsl(0, 0%, 100%);
    border-radius: 12px;
    border-left: 4px solid hsl(40, 80%, 50%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.responsible-section__link-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px hsla(40, 50%, 30%, 0.1);
}

.responsible-section__link-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.responsible-section__link-text {
    font-size: 1.25rem;
    color: hsl(40, 60%, 25%);
    font-weight: 600;
}

@media (max-width: 918px) {
    .responsible-section__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .responsible-section__message {
        text-align: center;
        align-items: center;
    }
    .responsible-section__links {
        align-items: center;
    }
    .responsible-section__link-item {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .responsible-section {
        padding: 3.5rem 1.5rem;
    }
    .responsible-section__title {
        font-size: 2.25rem;
    }
    .responsible-section__subtitle {
        font-size: 1.125rem;
    }
    .responsible-section__text {
        font-size: 1.125rem;
    }
    .responsible-section__cta {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    .responsible-section__link-text {
        font-size: 1.125rem;
    }
}

.faq-section {
    padding: 5rem 2rem;
    background-color: hsl(0, 0%, 100%);
}

.faq-section__container {
    max-width: 1247px;
    margin: 0 auto;
}

.faq-section__title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 2.75rem;
    color: hsl(210, 100%, 25%);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.faq-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
    gap: 3rem;
}

.faq-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-block__heading {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 1.875rem;
    color: hsl(210, 100%, 20%);
    padding-bottom: 0.75rem;
    border-bottom: 3px solid hsl(210, 100%, 50%);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-accordion__item {
    border: 1px solid hsl(210, 20%, 90%);
    border-radius: 12px;
    overflow: hidden;
    background-color: hsl(210, 30%, 98%);
}

.faq-accordion__question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(210, 100%, 25%);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.3s ease;
}

.faq-accordion__question:hover {
    background-color: hsl(210, 40%, 95%);
}

.faq-accordion__question[aria-expanded="true"] {
    background-color: hsl(210, 40%, 95%);
}

.faq-accordion__question[aria-expanded="true"] .faq-accordion__icon {
    transform: rotate(45deg);
}

.faq-accordion__icon {
    font-size: 1.5rem;
    font-weight: 400;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-accordion__answer {
    padding: 0 1.5rem;
}

.faq-accordion__answer p {
    padding: 1.5rem 0;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: hsl(0, 0%, 35%);
    border-top: 1px solid hsl(210, 20%, 90%);
}

.faq-accordion__answer a {
    color: hsl(210, 100%, 50%);
    font-weight: 600;
}

.faq-accordion__answer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3.5rem 1.5rem;
    }
    .faq-section__title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
    .faq-section__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .faq-block__heading {
        font-size: 1.625rem;
    }
    .faq-accordion__question {
        font-size: 1.0625rem;
        padding: 1.25rem;
    }
}

.testimonials-section {
    padding: 5rem 2rem;
    background-color: hsl(210, 30%, 98%);
    border-top: 1px solid hsl(210, 20%, 92%);
}

.testimonials-section__container {
    max-width: 1247px;
    margin: 0 auto;
}

.testimonials-section__title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 2.75rem;
    color: hsl(210, 100%, 25%);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.testimonials-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: hsl(0, 0%, 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px hsla(210, 30%, 20%, 0.05);
    border: 1px solid hsl(210, 20%, 94%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: hsl(210, 100%, 70%);
}

.testimonial-card__content {
    margin-bottom: 1.5rem;
}

.testimonial-card__text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: hsl(0, 0%, 30%);
    font-style: italic;
    quotes: "“" "”";
}

.testimonial-card__text::before {
    content: open-quote;
    font-size: 2.5rem;
    line-height: 0;
    color: hsl(210, 100%, 70%);
    vertical-align: -0.4em;
    margin-right: 0.1em;
}

.testimonial-card__author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid hsl(210, 20%, 94%);
    padding-top: 1.25rem;
}

.testimonial-card__author-name {
    font-weight: 700;
    color: hsl(210, 100%, 25%);
    font-size: 1.0625rem;
}

.testimonial-card__author-location {
    font-size: 0.9375rem;
    color: hsl(0, 0%, 50%);
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3.5rem 1.5rem;
    }
    .testimonials-section__title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
    .testimonials-section__grid {
        grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
        gap: 1.5rem;
    }
    .testimonial-card {
        padding: 1.75rem;
    }
    .testimonial-card__text {
        font-size: 1rem;
    }
}

.site-footer {
    color: hsl(0, 0%, 100%);
}

.site-footer__upper {
    background-color: hsl(210, 100%, 15%);
    padding: 4rem 2rem 3rem;
}

.site-footer__container {
    max-width: 1247px;
    margin: 0 auto;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 3rem;
}

.footer-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-block__title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    color: hsl(0, 0%, 95%);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-block__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: hsl(210, 100%, 60%);
    border-radius: 2px;
}

.footer-brand__link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(0, 0%, 100%);
    transition: opacity 0.3s ease;
}

.footer-brand__link:hover {
    opacity: 0.9;
}

.footer-brand__icon {
    font-size: 2rem;
}

.footer-brand__tagline {
    font-size: 1rem;
    line-height: 1.5;
    color: hsl(210, 30%, 80%);
    max-width: 300px;
}

.footer-nav__list,
.footer-legal__list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-nav__link,
.footer-legal__link {
    color: hsl(210, 30%, 85%);
    font-size: 1.0625rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-nav__link:hover,
.footer-legal__link:hover {
    color: hsl(210, 100%, 70%);
    padding-left: 5px;
}

.footer-contact__info {
    font-style: normal;
    margin-bottom: 1.5rem;
}

.footer-contact__email {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    color: hsl(210, 30%, 85%);
}

.footer-contact__email a {
    color: hsl(210, 100%, 70%);
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-contact__email a:hover {
    color: hsl(210, 100%, 85%);
    text-decoration: underline;
}

.footer-contact__note {
    font-size: 0.9375rem;
    color: hsl(210, 30%, 75%);
}

.footer-contact__age {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background-color: hsla(0, 0%, 100%, 0.1);
    border-radius: 8px;
    border-left: 4px solid hsl(0, 85%, 60%);
}

.footer-contact__age-icon {
    font-size: 1.25rem;
}

.footer-contact__age-text {
    font-size: 0.9375rem;
    color: hsl(0, 0%, 90%);
    font-weight: 600;
}

.site-footer__lower {
    background-color: hsl(210, 100%, 10%);
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-copyright__text {
    font-size: 0.9375rem;
    color: hsl(210, 30%, 75%);
    line-height: 1.5;
}

@media (max-width: 918px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    .footer-brand__tagline {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .site-footer__upper {
        padding: 3rem 1.5rem 2.5rem;
    }
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-block {
        align-items: center;
        text-align: center;
    }
    .footer-block__title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-nav__list,
    .footer-legal__list {
        align-items: center;
    }
    .footer-contact__info {
        text-align: center;
    }
    .site-footer__lower {
        padding: 1.25rem 1.5rem;
    }
}