*,
*::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;
    background-color: hsl(215, 25%, 12%);
    color: hsl(0, 0%, 90%);
}

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

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

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;
    }
}

@font-face {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('/fairspins-assets/fonts/work-sans.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 500;
    font-display: swap;
    src: url('/fairspins-assets/fonts/inter.woff2') format('woff2');
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('/fairspins-assets/fonts/fa-solid-900.woff2') format('woff2');
}

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

.fonts-loaded * {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: font-family 0.3s ease;
}

.fonts-loaded h1,
.fonts-loaded h2,
.fonts-loaded h3,
.fonts-loaded h4 {
    font-family: 'Work Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.icon::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
}

.no-mobile-anim * {
    animation: none !important;
    transition: none !important;
}

.page-wrapper {
    width: 100%;
    max-width: 1124px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.age-check-modal {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9998;
    display: none;
    max-width: 380px;
    animation: slideInFromRight 0.5s ease-out;
}

.age-check-modal__box {
    background: hsl(215, 30%, 18%);
    border-left: 5px solid hsl(165, 85%, 45%);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.age-check-modal__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.age-check-modal__icon::before {
    content: "\f06a";
    color: hsl(165, 85%, 45%);
    font-size: 1.8rem;
}

.age-check-modal__title {
    font-size: 1.5rem;
    color: hsl(0, 0%, 95%);
}

.age-check-modal__text {
    margin-bottom: 1.8rem;
    color: hsl(0, 0%, 80%);
    font-size: 0.95rem;
    line-height: 1.5;
}

.age-check-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.age-check-modal__confirm {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    padding: 0.8rem 1.8rem;
    background: transparent;
    color: hsl(165, 85%, 45%);
    border: 2px solid hsl(165, 85%, 45%);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.age-check-modal__deny {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    padding: 0.8rem 1.8rem;
    background: transparent;
    color: hsl(165, 85%, 45%);
    border: 2px solid hsl(165, 85%, 45%);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.age-check-modal__confirm .icon::before {
    content: "\f00c";
    margin-right: 0.5rem;
}

.age-check-modal__deny .icon::before {
    content: "\f05e";
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .age-check-modal {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
    
    .age-check-modal__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .age-check-modal__confirm,
    .age-check-modal__deny {
        flex: 1;
        min-width: 140px;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9997;
    background: hsl(215, 28%, 15%);
    border-top: 2px solid hsl(215, 65%, 55%);
    display: none;
    padding: 1rem 0;
    animation: slideUp 0.4s ease-out;
}

.cookie-consent-bar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent-bar__text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: hsl(0, 0%, 85%);
    font-size: 0.9rem;
    flex: 1;
}

.cookie-consent-bar__icon::before {
    content: "\f564";
    color: hsl(215, 65%, 55%);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.cookie-consent-bar__link {
    color: hsl(165, 85%, 45%);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-consent-bar__link:hover {
    color: hsl(165, 85%, 55%);
}

.cookie-consent-bar__accept {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    padding: 0.8rem 1.8rem;
    background: transparent;
    color: hsl(165, 85%, 45%);
    border: 2px solid hsl(165, 85%, 45%);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cookie-consent-bar__accept .icon::before {
    content: "\f00c";
    margin-right: 0.4rem;
}

@media (max-width: 768px) {
    .cookie-consent-bar__content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-consent-bar__text {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.scroll-helper {
    position: fixed;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9996;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.scroll-helper--visible {
    opacity: 1;
    visibility: visible;
}

.scroll-helper__btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: hsl(215, 65%, 55%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.scroll-helper__btn:hover {
    background: hsl(215, 65%, 65%);
    transform: scale(1.05);
}

.scroll-helper__btn:active {
    transform: scale(0.95);
}

.scroll-helper__btn--up .icon::before {
    content: "\f062";
}

.scroll-helper__btn--down .icon::before {
    content: "\f063";
}

.scroll-helper__progress {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: hsl(215, 25%, 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid hsl(215, 35%, 30%);
}

.scroll-helper__percent {
    font-size: 0.8rem;
    font-weight: 700;
    color: hsl(165, 85%, 45%);
}

@media (max-width: 1024px) {
    .scroll-helper {
        left: 1rem;
    }
}

@media (max-width: 768px) {
    .scroll-helper {
        left: 0.5rem;
    }
    
    .scroll-helper__btn {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .scroll-helper__progress {
        width: 3rem;
        height: 3rem;
    }
}

.main-head {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: hsl(215, 25%, 12%);
}

.main-head__warning {
    background: hsl(215, 35%, 18%);
    border-bottom: 1px solid hsl(165, 85%, 45%, 0.3);
    padding: 0.6rem 0;
}

.main-head__warning .page-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.main-head__warning-icon::before {
    content: "\f071";
    color: hsl(165, 85%, 45%);
    font-size: 1rem;
}

.main-head__warning-text {
    font-size: 0.85rem;
    color: hsl(0, 0%, 85%);
}

.main-head__warning-link {
    color: hsl(165, 85%, 45%);
    text-decoration: underline;
    font-weight: 500;
}

.main-head__main {
    padding: 1.2rem 0;
    border-bottom: 1px solid hsl(215, 30%, 25%);
}

.main-head__grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 2rem;
}

.main-head__nav-list {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
}

.main-head__nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: hsl(0, 0%, 90%);
    transition: color 0.2s;
    padding: 0.5rem 0;
}

.main-head__nav-link:hover {
    color: hsl(165, 85%, 45%);
}

.main-head__nav-link .icon::before {
    font-size: 0.9rem;
}

.main-head__nav-item:nth-child(1) .icon::before {
    content: "\f015";
}

.main-head__nav-item:nth-child(2) .icon::before {
    content: "\f11b";
}

.main-head__nav-item:nth-child(3) .icon::before {
    content: "\f059";
}

.main-head__nav-item:nth-child(4) .icon::before {
    content: "\f0e0";
}

.main-head__brand {
    text-align: center;
}

.main-head__logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.main-head__logo-icon::before {
    content: "\f6e3";
    color: hsl(165, 85%, 45%);
    font-size: 2.2rem;
}

.main-head__logo-text {
    font-size: 1.8rem;
    color: hsl(0, 0%, 95%);
    line-height: 1;
}

.main-head__contact {
    display: flex;
    justify-content: flex-end;
}

.main-head__contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(0, 0%, 85%);
    font-size: 0.95rem;
    word-break: break-word;
    transition: color 0.2s;
}

.main-head__contact-link:hover {
    color: hsl(165, 85%, 45%);
}

.main-head__contact-link .icon::before {
    content: "\f0e0";
}

.main-head__burger {
    display: none;
    position: absolute;
    top: 5rem;
    right: 1.5rem;
    background: none;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    z-index: 1001;
    flex-direction: column;
    justify-content: space-around;
    padding: 0.4rem;
}

.main-head__burger-line {
    width: 100%;
    height: 2px;
    background: hsl(0, 0%, 90%);
    transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 1024px) {
    .main-head__nav-list {
        gap: 1.5rem;
    }
    
    .main-head__logo-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .main-head__grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
        gap: 1.5rem;
        text-align: center;
    }
    
    .main-head__nav {
        order: 3;
        width: 100%;
    }
    
    .main-head__nav-list {
        flex-direction: column;
        gap: 1rem;
        display: none;
    }
    
    .main-head__nav-list--open {
        display: flex;
    }
    
    .main-head__brand {
        order: 1;
    }
    
    .main-head__contact {
        order: 2;
        justify-content: center;
    }
    
    .main-head__contact-link {
        font-size: 0.9rem;
    }
    
    .main-head__burger {
        display: flex;
    }
    
    .main-head__burger[aria-expanded="true"] .main-head__burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .main-head__burger[aria-expanded="true"] .main-head__burger-line:nth-child(2) {
        opacity: 0;
    }
    
    .main-head__burger[aria-expanded="true"] .main-head__burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .main-head__warning-text {
        font-size: 0.75rem;
    }
    
    .main-head__logo-text {
        font-size: 1.3rem;
    }
}

.welcome-block {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.welcome-block__animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background: linear-gradient(135deg, 
        hsl(215, 25%, 12%) 0%,
        hsl(215, 35%, 18%) 50%,
        hsl(215, 25%, 12%) 100%);
    animation: gradientShift 15s ease infinite;
    background-size: 400% 400%;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.welcome-block__content {
    position: relative;
    z-index: 2;
}

.welcome-block__image-wrapper {
    width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.welcome-block__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0.7;
    filter: saturate(0.8) contrast(1.1);
}

.welcome-block__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        hsla(215, 25%, 12%, 0.2) 0%,
        hsla(215, 25%, 12%, 0.8) 100%);
    pointer-events: none;
}

.welcome-block__text-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.welcome-block__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: hsl(0, 0%, 98%);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.welcome-block__geo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
    color: hsl(165, 85%, 45%);
    margin-bottom: 2rem;
    padding: 0.5rem 1.5rem;
    background: hsla(165, 85%, 45%, 0.1);
    border-radius: 50px;
    border: 1px solid hsla(165, 85%, 45%, 0.3);
}

.welcome-block__geo-icon::before {
    content: "\f3c5";
}

.welcome-block__description {
    font-size: 1.1rem;
    color: hsl(0, 0%, 85%);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-block__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    background: hsl(165, 85%, 45%);
    color: hsl(215, 25%, 12%);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.welcome-block__cta:hover {
    background: hsl(165, 85%, 55%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.welcome-block__cta .icon::before {
    content: "\f138";
}

@media (max-width: 768px) {
    .welcome-block {
        min-height: 100%;
        padding: 3rem 0;
    }
    
    .welcome-block__animation {
        animation: none;
    }
    
    .welcome-block__image-wrapper {
        margin-bottom: 2rem;
    }
    
    .welcome-block__title {
        font-size: 2.2rem;
    }
    
    .welcome-block__geo {
        font-size: 1rem;
    }
    
    .welcome-block__description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

.games-block {
    padding: 5rem 0;
    background: hsl(215, 28%, 15%);
}

.games-block__header {
    text-align: center;
    margin-bottom: 4rem;
}

.games-block__title {
    font-size: 2.8rem;
    color: hsl(0, 0%, 95%);
    margin-bottom: 1rem;
}

.games-block__subtitle {
    font-size: 1.1rem;
    color: hsl(165, 85%, 45%);
    max-width: 600px;
    margin: 0 auto;
}

.games-block__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 2.5rem;
    justify-items: center;
}

.info-card {
    background: hsl(215, 30%, 18%);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 320px;
    border: 1px solid hsl(215, 35%, 25%);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.info-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card__badge--popular {
    background: hsla(0, 85%, 60%, 0.9);
    color: white;
}

.info-card__badge--new {
    background: hsla(165, 85%, 45%, 0.9);
    color: hsl(215, 25%, 12%);
}

.info-card__badge--choice {
    background: hsla(45, 85%, 55%, 0.9);
    color: hsl(215, 25%, 12%);
}

.info-card__badge--classic {
    background: hsla(280, 65%, 60%, 0.9);
    color: white;
}

.info-card__badge--trending {
    background: hsla(215, 65%, 55%, 0.9);
    color: white;
}

.info-card__badge .icon::before {
    font-size: 0.7rem;
}

.info-card__badge--popular .icon::before {
    content: "\f005";
}

.info-card__badge--new .icon::before {
    content: "\f055";
}

.info-card__badge--choice .icon::before {
    content: "\f004";
}

.info-card__badge--classic .icon::before {
    content: "\f02e";
}

.info-card__badge--trending .icon::before {
    content: "\f062";
}

.info-card__image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.info-card__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        transparent 0%,
        hsla(215, 25%, 12%, 0.8) 100%);
}

.info-card__content {
    padding: 1.8rem;
    text-align: center;
}

.info-card__title {
    font-size: 1.4rem;
    color: hsl(0, 0%, 95%);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.info-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    background: transparent;
    color: hsl(165, 85%, 45%);
    border: 2px solid hsl(165, 85%, 45%);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.info-card__link:hover {
    background: hsl(165, 85%, 45%);
    color: hsl(215, 25%, 12%);
}

.info-card__link .icon::before {
    content: "\f061";
}

@media (max-width: 1200px) {
    .games-block__grid {
        grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .games-block {
        padding: 3rem 0;
    }
    
    .games-block__title {
        font-size: 2.2rem;
    }
    
    .games-block__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .games-block__grid {
        justify-content: center;
    }
    
    .games-block__grid > :nth-child(4),
    .games-block__grid > :nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .games-block__grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .games-block__grid > :nth-child(4),
    .games-block__grid > :nth-child(5) {
        grid-column: span 1;
    }
}

.about-block {
    padding: 5rem 0;
    background: hsl(215, 25%, 12%);
}

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

.about-block__animation-container {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-block__animation {
    position: relative;
    width: 300px;
    height: 300px;
}

.about-block__animation-item {
    position: absolute;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        hsl(165, 85%, 45%) 0%,
        hsl(215, 65%, 55%) 50%,
        hsl(165, 85%, 45%) 100%
    );
    animation: pulseOrbit 8s linear infinite;
}

.about-block__animation-item--1 {
    width: 120px;
    height: 120px;
    top: 0;
    left: 90px;
    animation-delay: 0s;
    opacity: 0.7;
}

.about-block__animation-item--2 {
    width: 80px;
    height: 80px;
    top: 150px;
    left: 0;
    animation-delay: -2s;
    opacity: 0.6;
}

.about-block__animation-item--3 {
    width: 100px;
    height: 100px;
    top: 150px;
    right: 0;
    animation-delay: -4s;
    opacity: 0.8;
}

.about-block__animation-item--4 {
    width: 60px;
    height: 60px;
    bottom: 50px;
    left: 120px;
    animation-delay: -6s;
    opacity: 0.5;
}

@keyframes pulseOrbit {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        filter: blur(0px);
    }
    25% {
        transform: translate(20px, -20px) scale(1.1);
        filter: blur(2px);
    }
    50% {
        transform: translate(0, 0) scale(0.9);
        filter: blur(0px);
    }
    75% {
        transform: translate(-20px, 20px) scale(1.05);
        filter: blur(1px);
    }
}

.about-block__content {
    padding-left: 2rem;
}

.about-block__title {
    font-size: 2.5rem;
    color: hsl(0, 0%, 95%);
    margin-bottom: 1rem;
}

.about-block__intro {
    font-size: 1.2rem;
    color: hsl(165, 85%, 45%);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-block__text {
    color: hsl(0, 0%, 85%);
    line-height: 1.7;
}

.about-block__text p {
    margin-bottom: 1.5rem;
}

.about-block__list {
    margin: 2rem 0;
    padding-left: 0;
}

.about-block__list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.about-block__list-icon::before {
    content: "\f00c";
    color: hsl(165, 85%, 45%);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.about-block__closing {
    font-style: italic;
    color: hsl(0, 0%, 75%);
    border-left: 3px solid hsl(165, 85%, 45%);
    padding-left: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .about-block__inner {
        gap: 3rem;
    }
    
    .about-block__animation {
        width: 250px;
        height: 250px;
    }
    
    .about-block__animation-item--1 {
        width: 100px;
        height: 100px;
        left: 75px;
    }
}

@media (max-width: 768px) {
    .about-block {
        padding: 3rem 0;
    }
    
    .about-block__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-block__animation-container {
        height: 300px;
        order: 2;
    }
    
    .about-block__content {
        padding-left: 0;
        order: 1;
        text-align: center;
    }
    
    .about-block__list-item {
        justify-content: center;
    }
    
    .about-block__animation-item {
        animation: none;
    }
}

.workflow-block {
    padding: 5rem 0;
    background: hsl(215, 28%, 15%);
}

.workflow-block__header {
    text-align: center;
    margin-bottom: 3rem;
}

.workflow-block__title {
    font-size: 2.8rem;
    color: hsl(0, 0%, 95%);
    margin-bottom: 0.5rem;
}

.workflow-block__subtitle {
    font-size: 1.2rem;
    color: hsl(165, 85%, 45%);
}

.workflow-block__highlight {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.workflow-block__highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.8rem;
    background: hsla(165, 85%, 45%, 0.1);
    border: 1px solid hsla(165, 85%, 45%, 0.3);
    border-radius: 50px;
    color: hsl(165, 85%, 45%);
    font-weight: 600;
}

.workflow-block__highlight-icon::before {
    font-size: 1.2rem;
}

.workflow-block__highlight-item:nth-child(1) .workflow-block__highlight-icon::before {
    content: "\f007";
}

.workflow-block__highlight-item:nth-child(2) .workflow-block__highlight-icon::before {
    content: "\f019";
}

.workflow-block__highlight-item:nth-child(3) .workflow-block__highlight-icon::before {
    content: "\f155";
}

.workflow-block__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.workflow-block__step {
    background: hsl(215, 30%, 18%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid hsl(215, 35%, 25%);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.workflow-block__step:hover {
    transform: translateY(-8px);
}

.workflow-block__step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        hsl(165, 85%, 45%) 0%,
        hsl(215, 65%, 55%) 100%);
}

.workflow-block__step-number {
    font-size: 3rem;
    font-weight: 900;
    color: hsla(165, 85%, 45%, 0.1);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.workflow-block__step-title {
    font-size: 1.4rem;
    color: hsl(0, 0%, 95%);
    margin: 1.5rem 0 1rem 0;
    position: relative;
    z-index: 2;
}

.workflow-block__step-description {
    color: hsl(0, 0%, 80%);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.workflow-block__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background: hsla(165, 85%, 45%, 0.05);
    border: 1px solid hsla(165, 85%, 45%, 0.2);
    border-radius: 12px;
    color: hsl(0, 0%, 85%);
}

.workflow-block__note-icon::before {
    content: "\f05a";
    color: hsl(165, 85%, 45%);
    font-size: 1.5rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .workflow-block {
        padding: 3rem 0;
    }
    
    .workflow-block__title {
        font-size: 2.2rem;
    }
    
    .workflow-block__highlight {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .workflow-block__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .workflow-block__note {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .workflow-block__steps {
        grid-template-columns: 1fr;
    }
    
    .workflow-block__step {
        padding: 2rem 1.5rem;
    }
}

.faq-block {
    padding: 5rem 0;
    background: hsl(215, 25%, 12%);
}

.faq-block__title {
    font-size: 2.8rem;
    color: hsl(0, 0%, 95%);
    text-align: center;
    margin-bottom: 0.5rem;
}

.faq-block__subtitle {
    font-size: 1.2rem;
    color: hsl(165, 85%, 45%);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.faq-block__category {
    background: hsl(215, 30%, 18%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid hsl(215, 35%, 25%);
}

.faq-block__category-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    color: hsl(165, 85%, 45%);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid hsla(165, 85%, 45%, 0.3);
}

.faq-block__category-icon::before {
    font-size: 1.1rem;
}

.faq-block__category:nth-child(1) .faq-block__category-icon::before {
    content: "\f155";
}

.faq-block__category:nth-child(2) .faq-block__category-icon::before {
    content: "\f085";
}

.faq-block__category:nth-child(3) .faq-block__category-icon::before {
    content: "\f0f3";
}

.faq-block__category:nth-child(4) .faq-block__category-icon::before {
    content: "\f121";
}

.faq-block__questions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-block__item {
    border-radius: 8px;
    overflow: hidden;
}

.faq-block__question {
    background: hsl(215, 35%, 22%);
    padding: 1rem 1.2rem;
    cursor: pointer;
    color: hsl(0, 0%, 90%);
    font-weight: 600;
    font-size: 0.95rem;
    list-style: none;
    position: relative;
    padding-right: 3rem;
    transition: background 0.2s;
}

.faq-block__question:hover {
    background: hsl(215, 35%, 25%);
}

.faq-block__question::-webkit-details-marker {
    display: none;
}

.faq-block__question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(165, 85%, 45%);
    transition: transform 0.3s;
}

.faq-block__item[open] .faq-block__question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-block__answer {
    background: hsl(215, 32%, 20%);
    padding: 1.5rem;
    color: hsl(0, 0%, 80%);
    line-height: 1.6;
    border-top: 1px solid hsl(215, 35%, 25%);
}

.faq-block__answer p {
    margin-bottom: 0.5rem;
}

.faq-block__answer a {
    color: hsl(165, 85%, 45%);
    text-decoration: underline;
}

.faq-block__answer a:hover {
    color: hsl(165, 85%, 55%);
}

@media (max-width: 1024px) {
    .faq-block__categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-block {
        padding: 3rem 0;
    }
    
    .faq-block__title {
        font-size: 2.2rem;
    }
    
    .faq-block__categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-block__category {
        padding: 1.5rem;
    }

    .faq-block__answer a {
        font-size: 0.7rem;
    }
}

.responsible-block {
    padding: 5rem 0;
    background: linear-gradient(135deg, hsl(215, 28%, 15%) 0%, hsl(215, 25%, 12%) 100%);
}

.responsible-block__title {
    font-size: 2.8rem;
    color: hsl(0, 0%, 95%);
    text-align: center;
    margin-bottom: 3rem;
}

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

.responsible-block__info {
    padding-right: 2rem;
}

.responsible-block__age-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, hsl(0, 85%, 60%) 0%, hsl(45, 85%, 55%) 100%);
    color: white;
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.responsible-block__age-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.responsible-block__age-text {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.responsible-block__intro {
    font-size: 1.3rem;
    color: hsl(165, 85%, 45%);
    margin-bottom: 2rem;
    font-weight: 600;
}

.responsible-block__content {
    color: hsl(0, 0%, 85%);
    line-height: 1.7;
}

.responsible-block__tips {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.responsible-block__tips li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.responsible-block__tips li::before {
    content: "•";
    color: hsl(165, 85%, 45%);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.2rem;
}

.responsible-block__warning {
    margin-top: 2rem;
    padding: 1.2rem;
    background: hsla(0, 85%, 60%, 0.1);
    border-left: 4px solid hsl(0, 85%, 60%);
    border-radius: 4px;
    font-weight: 500;
}

.responsible-block__partners {
    background: hsl(215, 30%, 18%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid hsl(215, 35%, 25%);
}

.responsible-block__partners-title {
    font-size: 1.5rem;
    color: hsl(0, 0%, 95%);
    margin-bottom: 0.5rem;
}

.responsible-block__partners-subtitle {
    color: hsl(165, 85%, 45%);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.responsible-block__partner-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.responsible-block__partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: hsl(215, 35%, 22%);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.responsible-block__partner:hover {
    border-color: hsl(165, 85%, 45%);
    transform: translateY(-5px);
    background: hsl(215, 35%, 25%);
}

.responsible-block__partner-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(215, 65%, 55%), hsl(165, 85%, 45%));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.responsible-block__partner-image::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    background: white;
    opacity: 0.1;
    border-radius: 50%;
    top: 20%;
    left: 20%;
}

.responsible-block__partner-image--1::after {
    content: 'RGC';
}

.responsible-block__partner-image--2::after {
    content: 'GC';
}

.responsible-block__partner-image--3::after {
    content: 'BGA';
}

.responsible-block__partner-image--4::after {
    content: 'GT';
}

.responsible-block__partner-name {
    color: hsl(0, 0%, 90%);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .responsible-block__grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .responsible-block {
        padding: 3rem 0;
    }
    
    .responsible-block__title {
        font-size: 2.2rem;
    }
    
    .responsible-block__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .responsible-block__info {
        padding-right: 0;
    }
    
    .responsible-block__age-badge {
        margin-left: auto;
        margin-right: auto;
        display: flex;
    }
    
    .responsible-block__partner-links {
        grid-template-columns: 1fr;
    }
}

.reviews-block {
    padding: 5rem 0;
    background: hsl(215, 28%, 15%);
}

.reviews-block__header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-block__title {
    font-size: 2.8rem;
    color: hsl(0, 0%, 95%);
    margin-bottom: 0.5rem;
}

.reviews-block__subtitle {
    font-size: 1.2rem;
    color: hsl(165, 85%, 45%);
    max-width: 600px;
    margin: 0 auto;
}

.reviews-block__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    justify-items: center;
}

.reviews-block__card {
    background: hsl(215, 30%, 18%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid hsl(215, 35%, 25%);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 320px;
    min-height: 481px;
    display: flex;
    flex-direction: column;
}

.reviews-block__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.reviews-block__logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(165, 85%, 45%), hsl(215, 65%, 55%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.reviews-block__logo-icon::before {
    content: "\f4fc";
    color: white;
    font-size: 1.8rem;
}

.reviews-block__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.reviews-block__star {
    width: 20px;
    height: 20px;
    background: hsl(45, 85%, 55%);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.reviews-block__star--half {
    background: linear-gradient(90deg, hsl(45, 85%, 55%) 50%, hsl(215, 35%, 35%) 50%);
}

.reviews-block__score {
    margin-left: 0.8rem;
    font-weight: 700;
    color: hsl(45, 85%, 55%);
    font-size: 1.1rem;
}

.reviews-block__text {
    color: hsl(0, 0%, 85%);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
    text-align: center;
    position: relative;
    padding: 0 0.5rem;
}

.reviews-block__text::before {
    content: "\"";
    font-size: 4rem;
    color: hsla(165, 85%, 45%, 0.2);
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    font-family: Georgia, serif;
}

.reviews-block__author {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid hsl(215, 35%, 25%);
}

.reviews-block__author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.reviews-block__author-name {
    color: hsl(0, 0%, 95%);
    font-weight: 600;
    font-size: 1rem;
}

.reviews-block__author-location {
    color: hsl(165, 85%, 45%);
    font-size: 0.85rem;
}

@media (max-width: 1200px) {
    .reviews-block__grid {
        grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .reviews-block {
        padding: 3rem 0;
    }
    
    .reviews-block__title {
        font-size: 2.2rem;
    }
    
    .reviews-block__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .reviews-block__grid {
        justify-content: center;
    }
    
    .reviews-block__grid > :nth-child(5) {
        grid-column: span 2;
        justify-self: center;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .reviews-block__grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .reviews-block__grid > :nth-child(5) {
        grid-column: span 1;
    }
}

.main-footer {
    background: hsl(215, 25%, 10%);
    color: hsl(0, 0%, 85%);
    padding: 4rem 0 2rem 0;
    border-top: 1px solid hsl(215, 35%, 25%);
}

.main-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.main-footer__block {
    padding: 0 1rem;
}

.main-footer__title {
    font-size: 1.2rem;
    color: hsl(0, 0%, 95%);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid hsl(165, 85%, 45%);
    display: inline-block;
}

.main-footer__partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.main-footer__partner-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: hsl(215, 30%, 18%);
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.main-footer__partner-link:hover {
    border-color: hsl(165, 85%, 45%);
    transform: translateY(-3px);
    background: hsl(215, 32%, 20%);
}

.main-footer__partner-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(215, 65%, 55%), hsl(165, 85%, 45%));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.main-footer__partner-logo::before {
    content: '';
    position: absolute;
    width: 40%;
    height: 40%;
    background: white;
    opacity: 0.15;
    border-radius: 50%;
    top: 30%;
    left: 30%;
}

.main-footer__partner-logo .icon::before {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.main-footer__partner-logo--1 .icon::before {
    content: 'RGC';
    font-size: 1.1rem;
}

.main-footer__partner-logo--2 .icon::before {
    content: 'GC';
}

.main-footer__partner-logo--3 .icon::before {
    content: 'BGA';
}

.main-footer__partner-logo--4 .icon::before {
    content: 'GT';
}

.main-footer__partner-name {
    font-size: 0.8rem;
    color: hsl(0, 0%, 90%);
    text-align: center;
    line-height: 1.3;
    font-weight: 500;
}

.main-footer__brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-footer__home-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.main-footer__logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(165, 85%, 45%), hsl(215, 65%, 55%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.main-footer__logo-icon::before {
    content: "\f6e3";
    color: white;
    font-size: 2.5rem;
}

.main-footer__site-name {
    font-size: 1.8rem;
    color: hsl(0, 0%, 95%);
    line-height: 1.2;
}

.main-footer__tagline {
    color: hsl(165, 85%, 45%);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.main-footer__age {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(0, 85%, 60%, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid hsla(0, 85%, 60%, 0.3);
}

.main-footer__age-icon::before {
    content: "\f06a";
    color: hsl(0, 85%, 60%);
    font-size: 0.9rem;
}

.main-footer__age-text {
    color: hsl(0, 0%, 90%);
    font-size: 0.9rem;
    font-weight: 600;
}

.main-footer__copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(0, 0%, 70%);
    font-size: 0.85rem;
    margin-top: auto;
}

.main-footer__copyright-icon::before {
    content: "\f1f9";
    font-size: 0.9rem;
}

.main-footer__links {
    padding-left: 2rem;
}

.main-footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.main-footer__nav-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: hsl(0, 0%, 80%);
    transition: color 0.2s;
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

.main-footer__nav-link:hover {
    color: hsl(165, 85%, 45%);
}

.main-footer__nav-link .icon::before {
    font-size: 0.9rem;
    width: 1rem;
    text-align: center;
}

.main-footer__nav-item:nth-child(1) .icon::before {
    content: "\f015";
}

.main-footer__nav-item:nth-child(2) .icon::before {
    content: "\f084";
}

.main-footer__nav-item:nth-child(3) .icon::before {
    content: "\f0e8";
}

.main-footer__nav-item:nth-child(4) .icon::before {
    content: "\f564";
}

.main-footer__nav-item:nth-child(5) .icon::before {
    content: "\f0f3";
}

.main-footer__nav-item:nth-child(6) .icon::before {
    content: "\f0e0";
}

.main-footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid hsl(215, 35%, 25%);
    text-align: center;
}

.main-footer__disclaimer {
    font-size: 0.8rem;
    color: hsl(0, 0%, 70%);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .main-footer__grid {
        gap: 2rem;
    }
    
    .main-footer__partner-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-footer__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .main-footer__block {
        padding: 0;
    }
    
    .main-footer__links {
        padding-left: 0;
    }
    
    .main-footer__nav-list {
        align-items: center;
    }
    
    .main-footer__partner-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
        margin: 0 auto;
    }
    
    .main-footer__home-link {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .main-footer__logo {
        width: 60px;
        height: 60px;
    }
    
    .main-footer__logo-icon::before {
        font-size: 2rem;
    }
    
    .main-footer__site-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 3rem 0 1.5rem 0;
    }
    
    .main-footer__partner-grid {
        grid-template-columns: 1fr;
        max-width: 250px;
    }
    
    .main-footer__home-link {
        flex-direction: column;
        gap: 1rem;
    }
}