@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.uppercase { text-transform: uppercase; }
html {
    font-size: 20px;
    background: #F7F6F6;
    scroll-behavior: smooth;
    overflow-x: clip;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #181818;
    line-height: normal;
    letter-spacing: 0;
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
}
section.hero {
    min-height: 95vh;
    background-image: url('assets/images/hero-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 2.7rem 3.7rem 3.7rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
section.hero * {
    color: white;
}
section.hero .top {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
section.hero .nav-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.nav-wrapper > .logo {
    width: 3rem;
    height: 2rem;
    background-image: url('assets/images/hero-logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.nav-wrapper > nav ul {
    display: flex;
    gap: 5px;
    list-style-type: none;
}
.nav-wrapper > nav a {
    padding: 0 .5rem .25rem .5rem;
    text-decoration: none;
    font-size: .8rem;
}
.nav-wrapper > nav li:last-child a {
    color: #181818;
}
section.hero .top > .hero-title img {
    margin-top: .5rem;
    height: 3rem;
}
section.hero .top > .hero-title .clue {
    padding-top: 5px;
    font-size: .9rem;
}
section.hero .top > .hero-text {
    display: flex;
    justify-content: flex-end;
    font-size: 1rem;
    line-height: 1.5rem;
    padding-right: 3rem;
}
section.hero .bottom {
    display: flex;
    justify-content: flex-end;
    padding-right: 3rem;
}
section.hero .bottom  > .offer-button {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.bottom  > .offer-button > .text,
.bottom  > .offer-button > .text span {
    word-break: keep-all;
    font-size: 1.6rem;
    text-align: right;
}
.bottom  > .offer-button > .text span {
    color: red;
}
.bottom  > .offer-button > img {
    width: 9rem;
    height: 9rem;
}
.burger {
    display: none;
}
section.about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-image: url("assets/images/about-bg.svg");
    background-size: 35rem 35rem;
    background-repeat: no-repeat;
    background-position: 100% 98%;
}
section.about, section.red {
    padding: 3.5rem 3.7rem 7.4rem 3.5rem;
}
section.about > .title,
section.about > .title * {
    font-size: 3.2rem;
}
section.about > .title {
    padding-top: 2rem;
}
section.about > *:not(.player-wrapper) {
    padding-right: 3rem;
}
section.about .text-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    grid-template-rows: max-content;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
    "empty text";
}
section.about .empty { grid-area: empty; }
section.about .text {
    grid-area: text;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

section.about .text p {
    line-height: 1.3rem;
}
section.about .player-wrapper {
    position: relative;
    padding: 2rem;
    width: 100%;
    background-color: #181818;
    background-image: url('assets/images/kadi-logo.svg');
    background-size: 5rem;
    background-repeat: no-repeat;
    background-position: 99% 99%;
    aspect-ratio: 2 / 1;
    margin-top: 1.5rem;
    min-height: 300px;
}
section.about .player-wrapper > .player-button {
    background: transparent;
    border: none;
    position: absolute;
    width: 5.5rem;
    height: 5.3rem;
    z-index: 1000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
section.about .player-wrapper > .player-button img {
    width: 100%;
    height: 100%;
}
section.about .numbers-wrapper {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-right: 2rem;
}
section.about .numbers-wrapper > .numbers-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 65%;
    border-radius: 4px;
    padding: 2rem 2.5rem;
    border: 1.5px solid #D80D14;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.06) 99.99%, rgba(255, 255, 255, 0.00) 100%);
    backdrop-filter: blur(6.5px);
    -webkit-backdrop-filter: blur(6.5px);
}
.numbers-wrapper > .numbers-item .number,
.numbers-wrapper > .numbers-item .number * {
    color: #181818;
    font-size: 3rem;
}
section.dragndrop .title,
section.dragndrop .title span {
    font-size: 3rem;
    text-align: center;
}
section.dragndrop .title span {
    color: #D80D14;
}
.numbers-wrapper > .numbers-item clue {
    font-size: 1.2rem;
}
section.about .offer,
section.departments .offer,
section.feedback .offer,
footer .offer{
    padding: 0 0 2px 0;
    width: fit-content;
    display: flex;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid #181818;
}
section.about .offer > div,
section.departments .offer > div,
section.feedback .offer > div,
footer .offer > div {
    line-height: 1.5rem;
    white-space: nowrap;
}
section.red {
    background: #D80D14;
}
section.red .title {
    color: #F7F6F6;
    font-size: 2rem;
    line-height: 127%;
    text-align: center;
}
section.red .line-animation {
    position: relative;
    width: 85%;
    height: 4px;
    background: transparent;
    margin: 6rem auto 1rem auto;

}
section.red .line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: .1rem;
    background: #F7F6F6;
    transform: translateY(-50%);
}
section.red .text {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
section.red .line-animation > .left,
section.red .line-animation > .right{
    color: #F7F6F6;
    font-size: 1.5rem;
    position: absolute;
    bottom: -3rem;
}
section.red .line-animation > .left {
    left: -1.5rem;
}
section.red .line-animation > .right {
    right: -6rem;
}
section.red .circle {
    position: absolute;
    top: 50%;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: #F7F6F6;
    border-radius: 50%;
    transform: translateY(-50%);
}
section.red .circle.animate {
    animation: moveRight 5s ease forwards;
}
@keyframes moveRight {
    from {
        left: 0;
    }
    to {
        left: calc(100% - 1.5rem); /* container width - circle width */
    }
}
section.departments {
    padding: 2.7rem 3.7rem 3.7rem 2rem;
}
section.departments > .title span {
    font-size: 2.5rem;
}
section.departments > .title > span:last-child {
    padding-left: 3rem;
    display: block;
}
section.departments .content {
    display: flex;
    padding-top: 4rem;
    position: relative;
}
section.departments .content > .left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5.5rem;
}
section.departments .department-item {
    display: flex;
    align-items: center;
    gap: 2rem;
}
section.departments .department-item > .num {
    padding-top: 1.5rem;
    font-family: Inter, sans-serif;
    font-size: .9rem;
}
section.departments .department-item > div:last-child .inner {
    position: relative;
}
section.departments .left .department-item.active .inner > div:nth-child(2) {
    color: #F7F6F6;
    z-index: 111;
    position: relative;
}
section.departments .left .department-item .abs {
    z-index: 10;
    width: 100%;
    position: absolute;
    padding: 4.5rem 4.5rem 4.5em 4.5rem;
    background: #181818;
    border-radius: 50%;
    top: -2rem;
    left: -1rem;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
section.departments .department-item.active .abs {
    display: block;
    opacity: 1;
    transform: scale(1);
    cursor: pointer;
}
section.departments .right {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 3rem;
}
section.departments .right .wrapper {
    width: min-content;
    padding: 2.5rem 1.5rem 1rem 1.5rem;
    border-radius: 6px;
    border: 1.5px solid rgba(21, 21, 21, 0.39);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.06) 99.99%, rgba(255, 255, 255, 0.00) 100%);
    backdrop-filter: blur(6.5px);
    -webkit-backdrop-filter: blur(6.5px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}
section.departments .right .wrapper .offer-arrow {
    width: 3rem;
    height: 3rem;
    margin-left: calc(100% - 3rem);
}
section.departments .right .wrapper .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
}
section.departments .right .wrapper .inner.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
section.departments .right .bottom {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}
section.departments .right .inner[data-department="management"] .title {
    font-size: 1.5rem;
}
section.departments .right img:first-child {
    max-height: 17rem;
    aspect-ratio:  4 / 3;
    border-radius: 6px;
}
section.departments .right .title {
    font-size: 1.6rem;
}
section.departments .right .description {
    font-size: .8rem;
}
section.departments .offer {
    position: absolute;
    right: 0;
    bottom: -4.5rem;
    gap: 2rem;
}
section.departments .offer > div {
    white-space: nowrap;
}
section.departments .left .num.mobile,
section.departments .content .left .offer.mobile,
section.feedback .bottom .text.mobile{
    display: none;
}
section.feedback {
    width: 100%;
    background: #181818;
    padding: 4rem 4rem 7rem 0;
}
section.feedback > .title,
section.benefits > .title{
    font-size: 5rem;
    color: #F7F6F6;
    text-align: center;
    margin-bottom: 5rem;
}
section.feedback .content {
    padding-left: 4rem;
}
section.feedback .feedback-swiper {
    width: 100%;

}
section.feedback .feedback-swiper .swiper-slide {
    background: transparent;
    background-size: cover;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: transform 0.7s ease, opacity 0.7s ease;
    transform: scale(0.85);
    pointer-events: none;
}
section.feedback .feedback-swiper .swiper-slide .card {
    border-radius: 8px;
    padding: 3rem 1.2rem 3.5rem 1.2rem;
    border: 1.5px solid rgba(66, 57, 57, 0.29);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.06) 99.99%, rgba(255, 255, 255, 0.00) 100%);
}
section.feedback .feedback-swiper .swiper-slide.swiper-slide-active,
section.feedback .feedback-swiper .swiper-slide.swiper-slide-next,
section.feedback .feedback-swiper .swiper-slide.swiper-slide-prev {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    z-index: 1;
}
.swiper-backface-hidden .swiper-slide {
    transform: scale(.8) translateZ(0) !important;
    transition: all .7s ease;
}
.feedback-swiper .swiper-slide .name {
    display: flex;
    align-items: center;
    justify-content: center;
}
.feedback-swiper .swiper-slide img {
    width: 100%;
}
.swiper-slide.swiper-slide-active {
    transition: all .7s ease;
    transform: scale(.95) !important;
    z-index: 1000!important;
}
.swiper-slide.swiper-slide-active .card {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.feedback-swiper .swiper-button-next,.feedback-swiper .swiper-button-prev {
    height: 56px;
    width: 56px;
    border-radius: 50%;
    background: #D80D14;
    border: 1px solid rgba(0, 0, 0, 0.09);
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    font-size: 24px !important;
}
.swiper-button-prev {
    left:  0 !important;
}
.swiper-button-next {
    right: 0 !important;
}
.feedback-swiper .swiper-slide > .card {
    display: flex;
    flex-direction: column;
}
.swiper-slide > .card > div:not(:first-child) {
    padding-top: .7rem;
    color: #FFFFFF;
}
.swiper-slide > .card > div.expert-name {
    font-size: 2rem;
}
.swiper-slide > .card > div.expert-role {
    font-size: .8rem;
    padding-top: 0;
    color: rgba(255, 255, 255, 0.6);
}
.swiper-slide > .card > div.expert-comment {
    font-size: .9rem;
    padding-right: 2rem;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: '' !important;
    display: block;
    background-image: url("assets/images/slider-arrow.svg") !important;
    background-size: contain;
    width: 1.5rem;
    height: 1.5rem;
}
.swiper-button-next:after {
    transform: rotate(-180deg) !important;
}
section.feedback .swiper-slide div.video {
    position: relative;
}
section.feedback .swiper-slide .player-button {
    border: none;
    background: transparent;
    position: absolute;
    width: 4.5rem;
    height: 4.3rem;
    z-index: 1000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
section.feedback .swiper-slide .player-button img {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.8;
}
section.feedback .swiper-slide-active .player-button img {
    opacity: 1;
    transform: scale(1.05);
}
section.feedback .bottom {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 4rem;
}
section.feedback > .bottom .line{
    width: 100%;
    height: 1px;
    background: #F7F6F6;
    position: relative;
}
section.feedback > .bottom .text {
    display: flex;
    flex-direction: column;
}
section.feedback > .bottom .text > span {
    color: #F7F6F6;
    font-size: .8rem;
    white-space: nowrap;
}
section.feedback > .bottom .text > span:nth-child(2) {
    padding-left: 10px;
}
section.feedback .offer {
    position: absolute;
    left: 4rem;
    bottom: -3rem;
    gap: 3rem;
    border-bottom: 1px solid #F7F6F6;
}
section.feedback .offer > div {
    color: #F7F6F6;
}
.swiper-button-prev.disabled,
.swiper-button-next.disabled {
    pointer-events: none;
    opacity: 0.3;
    filter: grayscale(100%);
}
section.benefits {
    background: #181818;
    padding: 2.7rem 4rem 2rem 4rem;
}
section.benefits .title {
    display: flex;
    gap: 2rem;
    align-items: center;
}
section.benefits .title img {
    height: 5rem;
}
section.benefits .title .line {
    height: 1px;
    width: 8rem;
    background: #FFFFFF;
}
section.benefits .title > div {
    display: flex;
    gap: 2rem;
    color: #FFFFFF;
    align-items: center;
}
section.benefits .content {
    padding-left: 3rem;
}
section.benefits .content .top {
    border: 1px solid #FFFFFF;
    border-left: none;
    width: 100%;
    height: 40vh;
    max-height: 400px;
    position: relative;
    margin-bottom: 400px;
}
section.benefits .top > div .inner {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
section.benefits .top div.circle {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #FFFFFF;
}
section.benefits .top div.text {
    color: #FFFFFF;
}
section.benefits div.dot-1 .inner,
section.benefits div.dot-2 .inner,
section.benefits div.dot-3 .inner {
    transform: translateY(calc(-100% + .75rem));
}
section.benefits div.dot-1 .inner {
    left: 15%;
}
section.benefits div.dot-2 .inner {
    left: 45%;
}
section.benefits div.dot-3 .inner {
    left: 75%;
}
section.benefits .top > .abs-arrow {
    position: absolute;
    top: 100%;
    left: -1rem;
    width: 2rem;
    height: 40vh;
    max-height: 300px;
}
section.benefits .top > .abs-icon {
    position: absolute;
    width: 6rem;
    height: 6rem;
    left: -3rem;
    top: -3rem;
}
section.benefits div.dot-4 .inner,
section.benefits div.dot-5 .inner,
section.benefits div.dot-6 .inner{
    bottom: 0;
    transform: translateY(.75rem);
}
section.benefits div.dot-4 .inner {
    left: 20%;
}
section.benefits div.dot-5 .inner {
    left: 45%;
}
section.benefits div.dot-6 .inner {
    left: 80%;
}
section.benefits .text {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease, transform 1s ease;
}

section.benefits .text.visible {
  opacity: 1;
  transform: translateY(0);
}
.form-group {
    border-radius: 0 !important;
    margin-bottom: 20px;
}
section.form {
    background: #181818;
    padding: 0 0 7.4rem 0;
}

section.form .title,
section.form .content {
    padding-left: 4rem;
    padding-right: 4rem;
}
section.form .title {
    display: flex;
    flex-direction: column;
}
section.form .title > div {
    color: #F7F6F6;
    width: 100%;
    font-size: 4.5rem;
}
section.form .title > div:last-child {
    text-align: right;
}
section.form .offer {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 3rem 0 1.5rem 0;
}
section.form .offer img {
    width: 7rem;
    height: 7rem;
}
section.form .offer div {
    font-size: 3.5rem;
    color: #D80D14;
}
section.form .form-wrapper {
    width: 65%;
    margin: 0 0 12rem 8rem;
    background-color: #2a2929;
    padding: 3rem 5rem 4rem 5rem;
    border-radius: 10px;
    border: 1px solid grey;
    position: relative;
}
section.form .form-wrapper .form-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 3rem;
    text-align: center;
    color: #F7F6F6;
    padding-bottom: 1rem;
}
section.form input[type="text"],
section.form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #F7F6F6;
  color: #F7F6F6;
  font-size: 1rem;
  padding: 10px 0;
  outline: none;
}

section.form textarea {
  border: 1px solid #F7F6F6;
  border-radius: 8px;
  padding: 15px;
  min-height: 250px;
  resize: vertical;
  margin-top: 20px;
}

section.form .note {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 15px;
}

section.form .submit-btn {
  display: block;
  width: 100%;
  margin-top: 40px;
  background: #fff;
  color: #000;
  padding: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 10px;
  border: none;
  cursor: pointer;
    font-size: 1rem;
  transition: background 0.3s ease;
}
section.form .submit-btn:hover {
  background: #e6e6e6;
}
section.form .bottom-content > .email {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
section.form .bottom-content > .email > .text {
    color: #F7F6F6;
    width: 60%;
    text-align: left;
    font-size: 1.5rem;
    line-height: 127%;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #F7F6F6;
}
section.form .cross {
    height: 28rem;
    width: 26rem;
    position: absolute;
    left: -20rem;
    transform: translateX(-50%);
    bottom: -20rem;
    animation: spin 60s linear infinite, glow 3s ease-in-out infinite;
    transform-origin: center center;
}
section.form .bottom-content > .contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
    width: 100%;
    padding-top: 5rem;
}
section.form .bottom-content > .contacts > * {
    width: 60%;
}
section.form .contacts .contacts-title span {
    font-size: 2.5rem;
    color: #F7F6F6;
}
section.form .contacts .contacts-title span:last-child {
    color: #D80D14;
}
section.form .contacts .contacts-inner {
    display: flex;
    gap: 4rem;
}
section.form .contacts-inner > a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .75rem;
}
section.form .contacts-inner > a div {
    display: flex;
    gap: .5rem;
    color: #F7F6F6;
}
section.form .contacts-inner > a > div:last-child {
    opacity: .7;
    margin-left: 5px;
}
section.form .contacts-inner > a img {
    width: 1.2rem;
    height: 1.2rem;
}
@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes glow {
    0%, 100% {
        filter: brightness(.9);
        scale: 1;
    }
    50% {
        filter: brightness(1.2);
        scale: 1.1;
    }
}

footer {
    background: #D80D14;
    padding: 3rem 2rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
footer .offer {
    border-bottom: 1px solid #F7F6F6;
}
footer .offer > div {
    color: #F7F6F6;
    font-size: 2rem;
    padding: 0 5rem .3rem 0;
}
footer .links .scroll-up .offer {
    gap: 1rem;
}
footer .links .scroll-up .offer > div {
    font-size: 1.1rem;
    padding: 0;
}
footer .links {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
}
footer .links > nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
footer .links > nav a {
    color: #F7F6F6;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}
footer .links > nav a:first-child {
    color: #181818;
}
footer > img {
    width: 100%;
    height: auto;
}
.offer-button img {
    transition: transform 0.4s ease;
    will-change: transform;
}

.offer-button:hover img {
    transform: scale(1.1) rotate(-135deg);
}
body.no-scroll {
    overflow: hidden;
    height: 100vh;
}
.fade-effect {
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.fade-effect-strong {
    opacity: 0;
    transition: opacity 2.2s ease-in-out;
}
.fade-effect-strong2 {
    opacity: 0;
    transition: opacity 3.2s ease-in-out;
}
.fade-effect-strong3 {
    opacity: 0;
    transition: opacity 5s ease-in-out;
}
.fade-in {
    opacity: 1;
}
.nav-mobile.hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}
@media screen and (min-width: 1441px) and (max-width: 3840px) {
    html {
        font-size: 34px;
    }
    section.hero {
        min-height: 90vh;
        padding: 5vw 10vw 7.5vw 5vw;
    }
    section.about, section.red {
        padding: 5vw 10vw 7.5vw 10vw;
    }
    section.form .form-wrapper {
        padding: 3rem 4.5rem 3rem 4.5rem;
    }
    section.form input[type="text"] {
        padding: 35px 0;
    }
    section.form textarea {
        padding: 35px 20px;
    }
    .form-group {
        margin-bottom: 40px;
    }
    section.form .title, section.form .content {
        padding-left: 6rem;
        padding-right: 4rem;
    }
    section.form .form-wrapper {

    }
}
@media only screen  and (max-width: 2559px) {
    html {
        font-size: 27px;
    }
    .bottom > .offer-button > img {
        width: 8rem;
        height: 8rem;
    }
}
@media only screen and (max-width: 1919px) {
    html {
        font-size: 22px;
    }
}
@media only screen and (max-width: 1599px) {
    html {
        font-size: 20px;
    }
    .bottom > .offer-button > img {
        width: 7rem;
        height: 7rem;
    }
}
@media only screen and (max-width: 1365px) {
    html {
        font-size: 18px;
    }
    section.about > .title, section.about > .title *,
    section.departments > .title > span {
        font-size: 2.9rem;
    }
    section.departments > .title > span {
        font-size: 2.6rem;
        padding-left: 0 !important;
    }
    section.benefits .content .top,
    section.benefits .top .abs-arrow {
        max-height: 200px;
    }
    section.benefits div.dot-1 .inner {
        left: 10%;
    }
    section.benefits div.dot-2 .inner {
        left: 35%;
    }
    section.benefits div.dot-3 .inner {
        left: 65%;
    }
    section.benefits div.dot-4 .inner {
        left: 15%;
    }
    section.benefits div.dot-5 .inner {
        left: 40%;
    }
    section.benefits div.dot-6 .inner {
        left: 70%;
    }
    section.form .offer {
        justify-content: center;

    }
    section.form .offer div {
        font-size: 3rem;
    }
    section.form .form-wrapper {
        width: 80%;
    }
}
@media only screen and (max-width: 1100px) {
    html {
        font-size: 16px;
    }
    section.hero {
        min-height: auto;
        gap: 300px;
    }
    section.about > .title {
        width: 95%;
        font-size: 2.8rem;
    }
    section.about > .title br{
        display: none;
    }
    section.about {
        background-size: 50vw 50vw;
    }
    section.about .numbers-wrapper > .numbers-item {
        width: 75%;
    }
    section.red .line-animation {
        width: 75%;
    }
    section.departments > .title > span {
        font-size: 2.4rem;
    }
    section.departments .offer img,
    section.about .offer img,
    section.feedback .offer img {
        width: 1rem;
        height: 1rem;
    }
    .feedback-swiper .swiper-button-next, .feedback-swiper .swiper-button-prev {
        width: 44px;
        height: 44px;
    }
    section.feedback > .bottom .text > span {
        font-size: .7rem;
    }
    section.benefits div.dot-5 .inner {
        left: 40%;
    }
    section.benefits .top div.dot-6 .inner {
        left: 75%;
    }
     section.benefits .top div.text {
         font-size: .85rem;
     }
    section.form .cross {
        left: -17rem;
    }
    section.form .form-wrapper {
        margin: 0 auto 12rem auto;
        width: 100%;
        max-width: 760px;
    }
    section.form .bottom-content > .email > .text,
    section.form .bottom-content > .contacts > * {
        width: 65%;
    }
    section.form .form-wrapper .form-title {
        font-size: 2.5rem;
    }
}
@media only screen and (max-width: 767px) {
    html {
        font-size: 11px;
    }
    section.about .text-wrapper {
        display: grid
    ;
        grid-template-columns: 0.6fr 1fr;
    }
    section.about .text p {
        line-height: 1.8rem;
        font-size: 1.5rem;
    }
    section.about .numbers-wrapper > .numbers-item {
        width: 85%;
    }
    section.feedback {
        padding: 4rem 0 6rem 0;
    }
    section.feedback > *:not(.content) {
        padding-left: 2.5rem !important;
        padding-right: 2.5rem !important;
    }
    section.feedback .content {
        padding-left: 0;
    }
    section.benefits .content {
        display: flex;
        padding: 0 20% 0 20%;
        justify-content: center;
    }
    section.benefits .content .top {
        border: none;
        height: auto;
        max-height: initial;
        width: 100%;
        margin-bottom: 140px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    section.benefits .top > div {
        min-height: 120px;
        height: 100%;
        position: relative;
        border-left: none;
    }
    section.benefits .top .dot-1,
    section.benefits .top .dot-2 {
        width: 80%;
        border-top: 1px solid #FFFFFF;
    }
    section.benefits .top .dot-1 {
        border-right: 1px solid #FFFFFF;
    }
    section.benefits .top .dot-2 {
        border-left: 1px solid #FFFFFF;
        border-bottom: 1px solid #FFFFFF;
    }
    section.benefits .top .dot-3 {
        width: 100%;
        border-right: 1px solid #FFFFFF;
        border-bottom: 1px solid #FFFFFF;
    }
    section.benefits .top .dot-4 {
        width: 100%;
        border-left: 1px solid #FFFFFF;
        border-bottom: 1px solid #FFFFFF;
    }
    section.benefits .top .dot-5 {
        width: 100%;
        border-right: 1px solid #FFFFFF;
        border-bottom: 1px solid #FFFFFF;
    }
    section.benefits .top .dot-6 {
        width: 50%;
        border-left: 1px solid #FFFFFF;
        border-bottom: 1px solid #FFFFFF;
        align-self: flex-start;
    }
    section.benefits .top > .abs-arrow {
        left: 50%;
        top: calc(100% - 1.5px);
        transform: translateX(-50%);
        max-height: 120px;
    }
    section.benefits .top > div .inner {
        height: fit-content;
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: -.75rem !important;
        top: initial;
    }
    section.benefits .top > div.dot-6 .inner {
        left: 100% !important;
    }
    section.benefits .top > .abs-icon {
        left: 3rem;
        z-index: 10;
    }
    section.benefits .top div.text {
        font-size: 1.5rem;
        text-align: center;
    }
    section.form .bottom-content > .email > .text {
        width: 50%;
    }
    section.form .bottom-content > .contacts > * {
        width: 100%;
        padding: 1rem 4rem 1rem 4rem;
    }
}
@media only screen and (min-width: 601px) and (max-width: 767px) {
    section.form .bottom-content > .contacts {
        margin-top: 16rem;
    }
    section.form .contacts .contacts-title span {
        font-size: 4rem;
    }
    section.form .contacts-inner > a * {
        font-size: 2rem;
    }
    section.form .cross {
        height: 40rem;
        width: 40rem;
        position: absolute;
        left: -19rem;
        bottom: -36rem;
    }
    section.form textarea {
        min-height: 250px;
    }
    section.form input[type="text"], section.form textarea {
        font-size: 2rem;
    }
    section.form .note,
    section.form .submit-btn {
        font-size: 1.75rem;
    }
}
@media only screen and (max-width: 600px) {
    html {
        font-size: 16px;
    }
    section.hero {
        height: 100vh;
        background-image: url("assets/images/hero-bg-mobile.webp");
        gap: 40vh;
        background-size: cover;
        padding: 4.5rem 1.9rem 1.9rem 1rem;
    }
    section.about, section.red, section.departments {
        padding: 1.4rem 1rem 2.8rem 1rem;
    }
    section.benefits {
        padding: 3rem 1.5rem 2.8rem 1.5rem;
    }
    .nav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1001;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
    }
    nav.nav-mobile {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }
    .nav-wrapper.scrolled {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        background: rgba(0, 0, 0, 0.6);
    }
    .burger input:checked ~ nav.nav-mobile {
        transform: translateY(0);
    }

    .nav-wrapper > nav ul {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    .nav-wrapper > nav ul li {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .nav-wrapper > nav ul a {
        font-size: 1.8rem;
        color: white !important;
        letter-spacing: 5px;
        padding: 1.5rem 3rem;
        width: 100%;
        text-align: center;
    }
    .nav-wrapper > .logo {
        position: relative;
        z-index: 1000;
    }
    .burger {
        z-index: 1000;
        position: relative;
        width: 40px;
        height: 30px;
        background: transparent;
        cursor: pointer;
        display: block;
    }
    .burger input {
        display: none;
    }
    .burger span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: #F7F6F6;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }
    .burger span:nth-of-type(1) {
        top: 0px;
        transform-origin: left center;
    }
    .burger span:nth-of-type(2) {
        top: 50%;
        transform: translateY(-50%);
        transform-origin: left center;
    }
    .burger span:nth-of-type(3) {
        top: 100%;
        transform-origin: left center;
        transform: translateY(-100%);
    }
    .burger input:checked ~ span:nth-of-type(1) {
        transform: rotate(45deg);
        top: 0px;
        left: 5px;
    }
    .burger input:checked ~ span:nth-of-type(2) {
        width: 0%;
        opacity: 0;
    }
    .burger input:checked ~ span:nth-of-type(3) {
        transform: rotate(-45deg);
        top: 28px;
        left: 5px;
    }
    .nav-wrapper {
        width: 100%;
        transition: all 0.3s ease-in-out;
    }
    .nav-wrapper.sticky {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1001;
        background: rgba(0, 0, 0, 0.6); /* Add your preferred background */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    section.hero .hero-title {
        display: none;
    }
    section.hero .top > .hero-text {
        justify-content: flex-start;
        font-weight: 700;
        font-size: 1.2rem;
    }
    section.hero .bottom {
        padding-right: 0;

    }
    section.about > .title, section.about > .title * {
        font-size: 2rem;
    }
    section.about .text p {
        line-height: 1.3rem;
        font-size: 1rem;
    }
    section.about .player-wrapper {
        min-height: 0;
    }
    section.about .numbers-wrapper {
        margin-top: 1rem;
    }
    section.about .numbers-wrapper > .numbers-item {
        width: 100%;
        padding: 2rem;
    }
    .numbers-wrapper > .numbers-item .number, .numbers-wrapper > .numbers-item .number * {
        font-size: 2.2rem;
    }
    .numbers-wrapper > .numbers-item > .clue {
        font-size: 1.2rem;
    }
    section.red .title {
        font-size: 1.5rem;
        padding-top: 2rem;
    }
    section.red .title br {
        display: none;
    }
    section.red .line-animation > .left, section.red .line-animation > .right {
        font-size: 1rem;
        bottom: -2.5rem;
    }
    section.red .line-animation > .right {
        right: -3rem;
    }
    section.red .line-animation > .left {
        left: -1rem;
    }
    section.departments {
        padding-bottom: 8rem;
    }
    section.departments .content {
        flex-direction: column-reverse;
        gap: 4.5rem;
        padding-top: 3rem;
    }
    section.departments .content .right .offer {
        display: none;
    }
    section.departments .content > .left {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
    }
    section.departments .content > .left .num:not(.mobile),
    section.feedback .bottom .text:not(.mobile){
        display: none;
    }
    section.departments .content > .left .inner {
        display: flex;
        gap: 5px;
        align-items: flex-end;
    }
    section.departments .content > .left .inner > div:first-child {
        font-weight: 300;
        font-size: .9rem;
    }
    section.departments .left .department-item.active .inner > div:nth-child(2) {
        color: #F7F6F6;
        z-index: 100;
        position: relative;
        font-weight: 400;
    }
    section.departments .content > .left .num.mobile {
        display: block;
    }
    section.departments .content .left .offer.mobile {
        display: flex;
        left: 50%;
        transform: translateX(-50%);
        bottom: -5.5rem;
    }
    section.departments .right {
        padding-right: 0;
    }
    section.departments .left .department-item .abs {
        padding: 4.5rem;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    section.departments .right .title {
        padding-top: 1rem;
    }
    section.departments > .title > span {
        font-size: 2rem;
    }
    section.feedback .feedback-swiper .swiper-slide.swiper-slide-active {
        padding-bottom: 50px;
    }
    section.feedback .feedback-swiper .swiper-slide .card {
        padding: 2rem 1.2rem 2rem 1.2rem;
    }
    .swiper-wrapper {
        margin-bottom: 60px;
    }
    .swiper-backface-hidden .swiper-slide {
        transform: scale(.95) translateZ(0) !important;
    }
    .swiper-slide.swiper-slide-active {
        transform: scale(.95) !important;
    }
    section.feedback > .title {
        font-size: 4rem;
    }
    .swiper-button-next, .swiper-button-prev {
        top: calc(100% - 56px) !important;
        margin-top: 0 !important;
    }
    .swiper-button-next {
        right: calc(50% - 65px) !important;
    }
    .swiper-button-prev {
        left: calc(50% - 65px) !important;
    }
    .feedback-swiper .swiper-button-next, .feedback-swiper .swiper-button-prev {
        width: 56px;
        height: 56px;
    }
    section.feedback .bottom .line {
        min-width: 50%;
    }
    section.feedback .bottom .text.mobile {
        display: block;
    }
    section.feedback > .bottom .text > span {
        white-space: initial;
    }
    section.feedback > *:not(.content) {
        padding-left: 0 !important;
        padding-right: 1rem !important;
    }
    section.feedback .offer {
        gap: 1rem;
        bottom: -6rem;
        left: 114%;
        transform: translateX(-100%);
    }
    section.benefits .content {
        padding: 0;
    }
    section.benefits .top div.text {
        font-size: 1.25rem;
    }
    section.benefits .title {
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem;
    }
    section.benefits .title img {
        height: 4.5rem;
    }
    section.benefits .title > div {
        width: 100%;
        justify-content: flex-end;
        padding-right: 1rem;
    }
    section.benefits .title .line {
        width: 6rem;
    }
    section.form .title > div {
        font-size: 3rem;
    }
    section.form .offer div {
        font-size: 2rem;
    }
    section.form .offer img {
        width: 4rem;
        height: 4rem;
    }
    section.form .title, section.form .content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    section.form .form-wrapper {
        padding: 1.5rem 3rem 2rem 3rem;
    }
    section.form .cross {
        left: -14rem;
        bottom: -25rem;
    }
    section.form .bottom-content > .contacts {
        padding-top: 7.5rem;
    }
    section.form textarea {
        min-height: 200px;
    }
    section.form .submit-btn {
        margin-top: 20px;
    }
    footer {
        padding: 3rem 1rem 1rem 1rem;
        gap: 2.5rem;
    }
    footer .links > nav {
        gap: 1.25rem;
    }
    footer .links > nav a {
        font-size: 1rem;
    }
}
@media only screen and (max-width: 480px) {
    html {
        font-size: 14px;
    }
    section.hero {
        background-size: cover;
        background-position: center;
    }
    section.about {
        background-size: 60vw 60vw;
        background-position: 120% 90%;
    }
    section.about > .title, section.about > .title * {
        font-size: 1.7rem;
        width: 100%;
    }
    section.about > .title.numbers {
        font-size: 2.5rem;
    }
    section.about .player-wrapper > .player-button {
        width: 4.5rem;
        height: 4.3rem;
    }
    section.about .player-wrapper {
        background-size: 4.5rem;
        background-position: 98% 96%;
    }
    section.red .line-animation {
        margin-top: 4rem;
    }
    section.departments > .title > span {
        font-size: 1.5rem;
    }
    section.benefits .top > div {
            min-height: 100px;
    }
    section.benefits .top > div.dot-4 .inner {
        left: 40% !important;
    }
    section.benefits .top > div.dot-3 .inner {
         left: 55% !important;
    }
    section.about .text-wrapper {
        grid-template-columns: 0.5fr 1fr;
        padding-right: 1.5rem;
    }
    section.departments .right .description {
        font-size: .8rem;
    }
    section.departments .right .description br,
    section.form .bottom-content > .email > .text br{
        display: none;
    }
}
@media only screen and (max-width: 420px) {
    section.about .text p {
        line-height: 1.2rem;
        font-size: .95rem;
    }
    section.about {
        background-position: 130% 95%;
    }
    .numbers-wrapper > .numbers-item .number, .numbers-wrapper > .numbers-item .number * {
        font-size: 2rem;
    }
    section.benefits .title img {
        height: 4rem;
    }
    section.form .cross {
        left: -11rem;
        height: 24rem;
        width: 22rem;
    }
    section.form .bottom-content > .email > .text {
        font-size: 1rem;
    }
    section.form .bottom-content > .contacts > * {
        padding: 1rem;
    }
    section.form .title > div {
        font-size: 2.5rem;}
    section.form .contacts .contacts-inner {gap: 1.5rem;}
}

@media only screen and (max-width: 380px) {
    .bottom > .offer-button > img {
        width: 6rem;
        height: 6rem;
    }
    section.about > .title, section.about > .title * {
        font-size: 1.6rem;
    }
}
@media only screen and (max-width: 370px) {
    html {
        font-size: 13px;
    }
}

/* Case-study slider */
section.feedback .feedback-swiper .swiper-slide .case-card {
    width: 100%;
    min-height: 38rem;
    padding: 1rem 1rem 1.4rem;
    overflow: hidden;
    justify-content: flex-start;
}
.feedback-swiper .case-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 5px;
    background: #252525;
}
.feedback-swiper .case-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.feedback-swiper .case-kicker {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.52);
    font-size: .62rem;
    letter-spacing: .08em;
}
.feedback-swiper .case-card .expert-name {
    margin: .3rem 0 .75rem;
    color: #fff;
    font-size: 1.45rem;
    line-height: 1.05;
    font-weight: 500;
}
.feedback-swiper .case-result {
    display: flex;
    align-items: baseline;
    gap: .45rem;
    color: #fff;
}
.feedback-swiper .case-result strong {
    color: #fff;
    font-size: 2.65rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.06em;
}
.feedback-swiper .case-result span {
    color: rgba(255, 255, 255, 0.62);
    font-size: .8rem;
}
.feedback-swiper .case-facts {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: auto;
    padding-top: 1.2rem;
}
.feedback-swiper .case-facts span {
    padding: .4rem .62rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    font-size: .68rem;
    white-space: nowrap;
}

@media only screen and (max-width: 600px) {
    section.feedback {
        overflow: hidden;
        padding-right: 0;
    }
    section.feedback .content {
        padding-left: 0;
    }
    section.feedback .feedback-swiper {
        overflow: visible;
        width: 100%;
    }
    section.feedback .feedback-swiper .swiper-slide .case-card {
        min-height: 35rem;
    }
    .feedback-swiper .case-card .expert-name {
        font-size: 1.55rem;
    }
    .feedback-swiper .case-result strong {
        color: #fff;
        font-size: 2.8rem;
    }
}

/* Compact vertical case accordion */
section.feedback .cases-accordion {
    width: min(100%, 82rem);
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, .2);
}
section.feedback .case-row {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}
section.feedback .case-row summary {
    display: grid;
    grid-template-columns: 3rem 4.25rem minmax(12rem, 1fr) auto 2.5rem;
    gap: 1.5rem;
    align-items: center;
    min-height: 6.6rem;
    color: #fff;
    cursor: pointer;
    list-style: none;
    transition: color .25s ease, background-color .25s ease;
}
section.feedback .case-row summary::-webkit-details-marker {
    display: none;
}
section.feedback .case-row summary:hover,
section.feedback .case-row[open] summary {
    color: #D80D14;
}
section.feedback .case-index {
    color: rgba(255, 255, 255, .38);
    font-size: .75rem;
    font-weight: 700;
}
section.feedback .case-thumb {
    width: 4.25rem;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 5px;
}
section.feedback .case-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
section.feedback .case-summary-name {
    color: #fff;
    font-size: clamp(1.45rem, 2.5vw, 2.45rem);
    font-weight: 500;
    line-height: 1;
}
section.feedback .case-summary-result {
    display: flex;
    align-items: baseline;
    gap: .6rem;
    color: #fff;
}
section.feedback .case-summary-result strong {
    color: #fff;
    font-size: clamp(1.65rem, 3vw, 3rem);
    line-height: 1;
    letter-spacing: -.06em;
}
section.feedback .case-summary-result small {
    color: rgba(255, 255, 255, .55);
    font-size: .8rem;
}
section.feedback .case-toggle {
    position: relative;
    width: 2.2rem;
    height: 2.2rem;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
}
section.feedback .case-toggle::before,
section.feedback .case-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: .8rem;
    height: 1px;
    background: #fff;
    transform: translate(-50%, -50%);
    transition: transform .25s ease;
}
section.feedback .case-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
section.feedback .case-row[open] .case-toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
}
section.feedback .case-panel {
    padding: 0 4rem 2.5rem 10.25rem;
    color: #fff;
}
section.feedback .case-panel-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: .25rem;
}
section.feedback .case-panel .case-kicker {
    color: rgba(255, 255, 255, .52);
    font-size: .7rem;
    letter-spacing: .08em;
}
section.feedback .case-panel .case-facts {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
}
section.feedback .case-panel .case-facts span {
    padding: .45rem .7rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: rgba(255, 255, 255, .8);
    font-size: .75rem;
}
section.feedback .case-instagram {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
    width: fit-content;
    margin-top: 1.25rem;
    color: #fff;
    font-size: clamp(.82rem, 1vw, 1rem);
    text-decoration: none;
    transition: color .2s ease;
}
section.feedback .case-link-label {
    color: #D80D14;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
}
section.feedback .case-link-row {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding-bottom: .2rem;
    border-bottom: 1px solid rgba(216, 13, 20, .75);
    color: #fff;
}
section.feedback .case-link-row > span {
    color: inherit;
}
section.feedback .case-link-arrow {
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
    color: #D80D14;
    fill: none;
    stroke: #D80D14;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .2s ease;
}
section.feedback .case-link-arrow path {
    stroke: #D80D14;
}
section.feedback .case-instagram:hover,
section.feedback .case-instagram:focus-visible {
    color: #D80D14;
}
section.feedback .case-instagram:hover .case-link-arrow,
section.feedback .case-instagram:focus-visible .case-link-arrow {
    transform: translate(.15rem, -.15rem);
}
@media (prefers-reduced-motion: reduce) {
    section.feedback .case-row summary,
    section.feedback .case-toggle::before,
    section.feedback .case-toggle::after {
        transition: none;
    }
}
@media only screen and (max-width: 600px) {
    /* 20260816-mobile-cases-scale: larger mobile case hierarchy */
    section.feedback > .title {
        font-size: clamp(4.15rem, 17vw, 4.5rem);
        margin-bottom: 5.75rem;
    }
    section.feedback .cases-accordion {
        width: calc(100% - 1.1rem);
    }
    section.feedback .case-row summary {
        grid-template-columns: 1.55rem 4.2rem minmax(0, 1fr) auto 2.35rem;
        gap: .52rem;
        min-height: 7.15rem;
    }
    section.feedback .case-index {
        font-size: .9rem;
    }
    section.feedback .case-thumb {
        width: 4.2rem;
    }
    section.feedback .case-summary-name {
        font-size: 1.3rem;
        line-height: 1.08;
    }
    section.feedback .case-summary-result {
        display: block;
        text-align: right;
    }
    section.feedback .case-summary-result strong {
        display: block;
        font-size: 1.7rem;
    }
    section.feedback .case-summary-result small {
        font-size: .78rem;
        line-height: 1.4;
    }
    section.feedback .case-toggle {
        width: 2.35rem;
        height: 2.35rem;
    }
    section.feedback .case-toggle::before,
    section.feedback .case-toggle::after {
        width: 1.05rem;
    }
    section.feedback .case-panel {
        padding: .25rem .25rem 1.75rem 6.25rem;
    }
    section.feedback .case-panel .case-kicker {
        font-size: .8rem;
    }
    section.feedback .case-panel .case-facts span {
        font-size: .82rem;
    }
    section.feedback .case-instagram {
        font-size: 1rem;
    }
    section.feedback .case-link-label {
        font-size: .72rem;
    }
    section.feedback .case-link-arrow {
        width: 1.3rem;
        height: 1.3rem;
    }
    section.feedback .bottom {
        margin-top: 5rem;
        gap: 1.25rem;
    }
    section.feedback > .bottom .text > span {
        font-size: 1.1rem;
        line-height: 1.65;
    }
    section.feedback .offer > div {
        font-size: 1.3rem;
    }
    section.feedback .offer img {
        width: 1.55rem;
        height: 1.55rem;
    }
}
