@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
    --black: #000000;
    --wine: #280000;
    --title-red: #D60000;
    --button-red: #8B0101;
    --white: #ffffff;
    --muted: rgba(255, 255, 255, 0.68);
    --soft: rgba(255, 255, 255, 0.08);
    --border-red: rgba(214, 0, 0, 0.34);
    --section-x: max(22px, calc((100vw - 1180px) / 2));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

img,
video {
    max-width: 100%;
}

.section-padding {
    position: relative;
    padding: 110px var(--section-x);
    overflow: hidden;
}

.section-kicker {
    margin: 0 0 14px;
    color: var(--title-red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 44px;
}

.section-heading.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 76px);
    line-height: 0.94;
    letter-spacing: -0.075em;
    font-weight: 900;
}

.section-heading p:not(.section-kicker) {
    max-width: 620px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.primary-btn,
.secondary-btn,
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    padding: 0 24px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    transition: 0.2s ease;
    cursor: pointer;
}

.primary-btn,
.header-cta {
    border: 1px solid var(--title-red);
    background: var(--button-red);
    color: var(--white);
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.primary-btn:hover,
.secondary-btn:hover,
.header-cta:hover {
    transform: translateY(-2px);
}

.primary-btn:hover,
.header-cta:hover {
    background: var(--title-red);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 260px;
    display: grid;
    place-items: center;
    border-radius: inherit;
    background:
        radial-gradient(circle at 30% 20%, rgba(214, 0, 0, 0.18), transparent 38%),
        rgba(255, 255, 255, 0.06);
    border: 1px dashed rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.54);
    font-weight: 800;
}

/* Header */

.site-header {
    position: fixed;
    z-index: 80;
    top: 18px;
    left: 50%;
    width: min(1180px, calc(100% - 28px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 18px;
    padding: 12px 14px;
    border: 1px solid rgba(214, 0, 0, 0.22);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
}

.site-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    font-weight: 900;
    letter-spacing: -0.07em;
}

.site-logo span {
    font-size: 24px;
}

.site-logo small {
    font-size: 11px;
    color: var(--title-red);
    letter-spacing: 0.08em;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 22px;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 700;
    transition: 0.2s ease;
}

.site-nav a:hover {
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    border-radius: 99px;
}

.mobile-menu {
    position: fixed;
    z-index: 79;
    top: 86px;
    left: 50%;
    width: min(420px, calc(100% - 28px));
    transform: translateX(-50%) translateY(-12px);
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(214, 0, 0, 0.28);
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mobile-menu a {
    padding: 13px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 800;
}

/* Hero */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px var(--section-x) 100px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 14%, rgba(214, 0, 0, 0.28), transparent 34%),
        linear-gradient(135deg, #000000, #280000);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.36;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.42)),
        radial-gradient(circle at 75% 35%, rgba(139, 1, 1, 0.34), transparent 34%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.hero-content h1 {
    margin: 0;
    max-width: 980px;
    font-size: clamp(50px, 8vw, 118px);
    line-height: 0.88;
    letter-spacing: -0.09em;
    font-weight: 900;
}

.hero-content p:not(.section-kicker) {
    max-width: 660px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.hero-big-mark,
.cta-big-mark {
    position: absolute;
    z-index: 1;
    right: -4vw;
    bottom: -4vw;
    font-size: clamp(130px, 27vw, 430px);
    line-height: 0.75;
    letter-spacing: -0.13em;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.055);
    pointer-events: none;
}

/* About */

.about-section {
    background:
        radial-gradient(circle at 82% 20%, rgba(214, 0, 0, 0.18), transparent 34%),
        linear-gradient(180deg, #000, #160000);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: center;
}

.about-image {
    min-height: 560px;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(214, 0, 0, 0.24);
    background: rgba(255, 255, 255, 0.04);
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    display: block;
}

.about-content {
    max-width: 620px;
}

.about-content h3 {
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.about-content p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 20px;
}

.about-content .primary-btn {
    margin-top: 16px;
}

/* Portfolio */

.portfolio-section {
    background:
        radial-gradient(circle at 20% 40%, rgba(214, 0, 0, 0.16), transparent 34%),
        linear-gradient(180deg, #160000, #000);
}

.portfolio-category-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0 26px;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.portfolio-category-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: portfolioMarquee 28s linear infinite;
}

.portfolio-category-marquee:hover .portfolio-category-track {
    animation-play-state: paused;
}

@keyframes portfolioMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.portfolio-category-card {
    width: 220px;
    min-width: 220px;
    border: 1px solid rgba(214, 0, 0, 0.28);
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(139, 1, 1, 0.22), rgba(255, 255, 255, 0.045));
    padding: 12px;
    color: #fff;
    cursor: pointer;
    transition: 0.2s ease;
}

.portfolio-category-card:hover,
.portfolio-category-card.active {
    transform: translateY(-4px);
    border-color: rgba(214, 0, 0, 0.7);
    box-shadow: 0 18px 60px rgba(214, 0, 0, 0.12);
}

.category-media {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.42);
}

.category-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.56);
    font-weight: 900;
}

.category-title {
    display: block;
    padding: 14px 4px 4px;
    text-align: center;
    font-size: 15px;
    font-weight: 900;
}

.portfolio-video-area {
    margin-top: 24px;
}

.portfolio-video-panel {
    display: none;
}

.portfolio-video-panel.active {
    display: block;
}

.portfolio-panel-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.portfolio-panel-head h3 {
    margin: 0;
    font-size: clamp(30px, 4vw, 54px);
    letter-spacing: -0.06em;
    line-height: 1;
}

.portfolio-panel-head p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.video-card {
    border: 1px solid rgba(214, 0, 0, 0.26);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.055);
    overflow: hidden;
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-card-body {
    padding: 18px 20px 20px;
}

.video-card-body span {
    display: block;
    color: var(--title-red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.video-card-body h4 {
    margin: 0;
    font-size: 20px;
    line-height: 1.25;
}

/* Results */

.results-section {
    background:
        radial-gradient(circle at 50% 8%, rgba(214, 0, 0, 0.14), transparent 34%),
        linear-gradient(180deg, #000, #190000);
}

.results-screenshots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 62px;
}

.result-shot {
    aspect-ratio: 1.45 / 1;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(214, 0, 0, 0.28);
    background: rgba(255, 255, 255, 0.055);
}

.result-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-card {
    min-height: 142px;
    display: grid;
    place-items: center;
    text-align: center;
    border: 1px solid rgba(214, 0, 0, 0.32);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.28);
    padding: 24px;
}

.stat-card strong {
    display: block;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.stat-card span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    font-weight: 600;
}

/* Services */

.services-section {
    background:
        radial-gradient(circle at 12% 78%, rgba(214, 0, 0, 0.14), transparent 34%),
        linear-gradient(180deg, #190000, #000);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.service-card {
    border: 1px solid rgba(214, 0, 0, 0.28);
    border-radius: 38px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.055);
}

.service-image {
    height: 430px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.35s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.04);
}

.service-content {
    padding: 26px;
}

.service-content h3 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.065em;
}

.service-content p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.section-center-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

/* Reviews */

.reviews-section {
    background:
        radial-gradient(circle at 86% 24%, rgba(214, 0, 0, 0.15), transparent 35%),
        linear-gradient(180deg, #000, #160000);
}

.reviews-carousel {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.reviews-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: reviewsMarquee 38s linear infinite;
}

.reviews-carousel:hover .reviews-track {
    animation-play-state: paused;
}

@keyframes reviewsMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-40%);
    }
}

.review-card {
    width: 390px;
    min-width: 390px;
    border: 1px solid rgba(214, 0, 0, 0.28);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.055);
    padding: 26px;
}

.review-stars {
    color: var(--title-red);
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    font-size: 17px;
}

.review-card p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 1.7;
}

.review-author strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.review-author span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

/* CTA */

.cta-section {
    position: relative;
    background:
        radial-gradient(circle at 62% 28%, rgba(214, 0, 0, 0.12), transparent 34%),
        linear-gradient(180deg, #160000, #000);
    min-height: 760px;
}

.cta-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.cta-visual {
    min-height: 430px;
    border-radius: 42px;
    overflow: hidden;
    background: #fff;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    margin: 0;
    font-size: clamp(36px, 5vw, 76px);
    line-height: 0.95;
    letter-spacing: -0.075em;
}

.cta-content p:not(.section-kicker) {
    max-width: 650px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Footer */

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px var(--section-x);
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.site-footer p {
    margin: 0;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 12px;
}

.powered-by img {
    display: block;
    height: 28px;
    width: auto;
}

/* Notices / Empty */

.empty-state,
.front-notice {
    width: min(720px, 100%);
    margin: 0 auto;
    border-radius: 24px;
    padding: 22px;
    text-align: center;
    border: 1px solid rgba(214, 0, 0, 0.28);
    background: rgba(255, 255, 255, 0.055);
}

.empty-state.small {
    margin: 0;
    text-align: left;
}

.empty-state p,
.front-notice {
    color: var(--muted);
    line-height: 1.6;
}

.front-notice {
    margin-bottom: 28px;
}

.front-notice.success {
    color: #c9ffd9;
    border-color: rgba(40, 180, 90, 0.45);
    background: rgba(40, 180, 90, 0.12);
}

.front-notice.error {
    color: #ffd0d0;
    border-color: rgba(214, 0, 0, 0.48);
    background: rgba(214, 0, 0, 0.12);
}

/* Review modal */

.review-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.review-modal.open {
    display: flex;
}

.review-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(12px);
}

.review-modal-card {
    position: relative;
    z-index: 2;
    width: min(560px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    border: 1px solid rgba(214, 0, 0, 0.38);
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, rgba(214, 0, 0, 0.2), transparent 34%),
        #100000;
    padding: 28px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

.review-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.review-modal-card h3 {
    margin: 0 44px 8px 0;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.06em;
}

.review-modal-card p {
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.6;
}

.review-form {
    display: grid;
    gap: 14px;
}

.review-form label {
    display: grid;
    gap: 7px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 800;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.38);
    color: #fff;
    padding: 13px 14px;
    font-size: 17px;
    outline: none;
}

.review-form select option {
    color: #000;
}

.review-form textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    border-color: var(--title-red);
    box-shadow: 0 0 0 4px rgba(214, 0, 0, 0.12);
}

.hidden-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Responsive */

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
    }

    .site-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        justify-self: end;
    }

    .mobile-menu {
        display: grid;
    }

    .about-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .about-image,
    .about-image img {
        min-height: 420px;
    }

    .results-screenshots,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        text-align: left;
    }

    .cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .section-padding {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .hero-section {
        min-height: 92vh;
        padding-top: 130px;
        padding-bottom: 70px;
    }

    .hero-content h1 {
        font-size: clamp(45px, 15vw, 82px);
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .portfolio-category-card {
        width: 180px;
        min-width: 180px;
        border-radius: 28px;
    }

    .category-media {
        border-radius: 22px;
    }

    .portfolio-category-track {
        gap: 16px;
    }

    .portfolio-panel-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .results-screenshots,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        border-radius: 34px;
    }

    .service-image {
        height: 320px;
    }

    .review-card {
        width: 310px;
        min-width: 310px;
    }

    .site-footer {
        flex-direction: column;
        text-align: center;
    }

    .review-modal-card {
        padding: 24px;
        border-radius: 24px;
    }
}







/* Reviews overall score */

.reviews-overall {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
    padding: 12px 18px;
    border: 1px solid rgba(214, 0, 0, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
}

.reviews-overall-stars {
    color: var(--title-red);
    font-size: 20px;
    letter-spacing: 0.08em;
    line-height: 1;
}

.reviews-overall-score {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 700;
}

.reviews-overall-score strong {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}


/* Review popup star selector */

.rating-picker {
    display: grid;
    gap: 8px;
}

.rating-picker-label {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 800;
}

.star-rating {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    width: fit-content;
}

.star-rating input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.star-rating label {
    display: block;
    color: rgba(255, 255, 255, 0.28);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: 0.16s ease;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: var(--title-red);
    text-shadow: 0 0 18px rgba(214, 0, 0, 0.34);
}

.star-rating label:hover {
    transform: translateY(-1px) scale(1.04);
}

@media (max-width: 640px) {
    .reviews-overall {
        flex-direction: column;
        border-radius: 24px;
        gap: 8px;
    }

    .reviews-overall-score {
        justify-content: center;
    }
}