/* CSS Variables from SCSS variables */
:root {
    /* Brand Colors */
    --brand-primary: #FF4931;
    --brand-secondary: #FF6D5A;
    --brand-light: #FFEDEA;
    --brand-gold: #FFA767;
    --brand-lux: #FFA943;
    --ui-brand: #FF4931;
    --ui-snow: #FFFFFF;

    /* Interface Colors */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-soot: #000000;
    --color-leather: #252222;
    --color-dark-0: #040A21;
    --color-dark-1: #818490;
    --color-dark-2: #B4B6BC;
    --interface-leather: #252222;
    --interface-snow: #FFFFFF;
    --interface-snow-10: #F5F5F6;
    --interface-snow-05: #FAFAFA;
    --interface-gray-light: #F5F5F6;
    --interface-dark-1: #818490;
    --interface-soot: #000000;
    --interface-gold: #FFA767;
    --lux-0: #FFA943;
    --soot: #000000;

    /* Typography */
    --font-display-heading-40: 'Uxum', 'Arial', sans-serif;
    --font-display-body-24: 'Uxum', 'Arial', sans-serif;
    --font-body: 'Linotte', 'Arial', sans-serif;

    /* Font sizes */
    --font-size-display-40: 40px;
    --font-size-display-24: 24px;
    --font-size-heading-24: 24px;
    --font-size-body-20: 20px;
    --font-size-body-18: 18px;
    --font-size-caption-16: 16px;
    --font-size-tip-14: 14px;

    /* Font weights */
    --font-weight-regular: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Line heights */
    --line-height-tight: 1;
    --line-height-normal: 1.2;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;

    /* Z-index */
    --z-index-header: 100;
    --z-index-modal: 200;
    --z-index-tooltip: 300;
    --z-index-bg-visual: 1;
    --z-index-bg-text-block: 2;
}

/* Global styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    line-height: var(--line-height-normal);
    background-color: var(--color-white);
    color: var(--color-soot);
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

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

img {
    max-width: 100%;
    height: auto;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Header Desktop */
.header-desktop {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: var(--z-index-header);
    padding: 16px 0;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}


:root {
    --primary: #ff4d3d;
    font-family: 'Linotte', Arial, sans-serif;
}

.link-primary {
    font-weight: 600;
    color: var(--primary, #ff4d3d);
    text-decoration: none;
}

.link-primary:hover {
    text-decoration: underline;
}

.button-primary {
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 999px;
    background: var(--primary, #ff4d3d);
    transition: background .2s;
}

.button-primary:hover {
    background: #ff654f;
}

.header {
    z-index: 900;
    position: fixed;
    width: 100%;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 86px;
    margin: 0 24px;
    position: relative;
    z-index: 999;
}

.header__logo img {
    display: block;
    height: 36px;
}

.header {
    transition: background .25s ease, box-shadow .25s ease;
}

.header--scrolled {
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
}

.header__left {
    display: flex;
    align-items: center;
}

.header__nav {
    margin-left: clamp(24px, 6vw, 96px);
}

@media (max-width: 996px) {
    .header__nav {
        display: none;
    }
}

.header__nav-list {
    display: flex;
    gap: 32px;
    list-style-type: none;
    padding: 12px 32px;
    background: #fff;
    border-radius: 100px;
}

.header__nav-link {
    font-weight: 600;
    color: #333;
    transition: color .2s;
}

.header__nav-link:hover {
    color: var(--primary, #ff4d3d);
}

.header__actions {
    display: flex;
    gap: 32px;
    align-items: center;
}

@media (max-width: 996px) {
    .header__actions {
        gap: 16px;
    }
}

.header__login {
    composes: link-primary;
}

.header__cta {
    composes: button-primary;
}

.header__login {
    font-weight: 600;
    color: var(--primary, #ff4d3d);
    text-decoration: none;
}

.header__login:hover {
    text-decoration: underline;
}

.header__cta {
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 999px;
    background: var(--primary, #ff4d3d);
    transition: background .2s;
}

.header__cta:hover {
    background: #ff654f;
}

.header__burger {
    display: none;

    @media (max-width: 996px) {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        width: 24px;
        height: 24px;
        padding: 0;
        border: 0;
        background: none;
        cursor: pointer;
        z-index: 1001;
    }

    span {
        width: 100%;
        height: 2px;
        background: var(--primary);
        border-radius: 1px;
        transition: transform .25s ease, opacity .2s ease;
    }
}

.header__burger.is-active {
    span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    span:nth-child(2) {
        opacity: 0;
    }

    span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.header.menu-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header__drawer {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    inset: 0;
    padding: 24px;
    background: #fff;
    overflow-y: auto;
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.header__drawer.is-open {
    opacity: 1;
    pointer-events: all;
}

.header__drawer-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: 0;
    font-size: 32px;
    line-height: 1;
    color: var(--primary, #ff4d3d);
}

.header__drawer-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 72px 0 48px;
}

.header__drawer-login {
    font-weight: 600;
    color: var(--primary, #ff4d3d);
    text-decoration: none;
    margin-bottom: 24px;
}

.header__drawer-login:hover {
    text-decoration: underline;
}

.header__drawer-cta {
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 999px;
    background: var(--primary, #ff4d3d);
    transition: background .2s;
    width: 100%;
    max-width: 480px;
}

.header__drawer-cta:hover {
    background: #ff654f;
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.no-scroll {
    overflow: hidden;
}

@media (max-width: 996px) {
    .header__cta, .header__login {
        display: none;
    }

    .header__drawer-cta {
        width: 70vw;
    }

    .header {
        width: 100%;
        position: fixed;
    }
}

.header-nav-item {
    font-family: var(--font-body);
    font-weight: var(--font-weight-semibold);
    font-size: 16px;
    color: var(--color-soot);
    transition: color 0.2s ease;
}

.header-nav-item:hover {
    color: var(--brand-primary);
}

.header-nav-cta {
    background: var(--brand-primary);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.2s ease;
}

.header-nav-cta:hover {
    background: var(--brand-secondary);
    color: var(--color-white);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-image: url('../images/main_section_bg.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: -329.9px bottom;
}

.hero-content-wrapper {
    z-index: 2;
    position: absolute;
    bottom: 0;
    right: 174px;
    flex: 1;
    max-width: 600px;
}

.hero-text-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: linear-gradient(175.722deg, rgba(255, 232, 240, 0.95) 20.023%, rgba(255, 255, 255, 1) 100%);
    border-radius: 40px 40px 0 0;
    padding: 36px 40px 16px 40px;
    position: relative;
    backdrop-filter: blur(20px);
}

.hero-text-block::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -64px;
    width: 65px;
    height: 64px;
    background: url('../images/corner-decoration.svg') no-repeat center;
    transform: rotate(180deg) scaleY(-1);
}

.hero-text-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -64px;
    width: 65px;
    height: 64px;
    background: url('../images/corner-decoration.svg') no-repeat center;
}

.hero-title-main {
    font-family: 'Uxum', sans-serif;
    font-size: 64px;
    line-height: 1.2;
    margin: 0;
    color: var(--brand-primary);
}

.hero-title-script {
    display: inline-block;
    font-size: 92px;
    line-height: 0.6;
    position: relative;
    transform: rotate(-4deg);
    font-family: 'Intro Script', cursive;
    font-weight: 500;
}

.hero-title-script::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 80%;
    transform: translateX(15%);
    height: 4px;
    border-radius: 10000px;
    background-color: var(--ui-brand);
    z-index: -1;
}

.hero-download-block {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.hero-qr-code {
    width: 132px;
    height: 132px;
    flex-shrink: 0;
}

.hero-qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-store-button {
    transition: transform 0.2s ease;
}

.hero-store-button:hover {
    transform: translateY(-2px);
}

.hero-store-banner {
    display: block;
}

.hero-store-banner-mobile {
    display: none;
}

/* Story Section */
.story-section {
    background-color: var(--color-white);
    position: relative;
    width: 100%;
    padding: 60px 20px 40px;
}

.story-text-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 604px;
    padding: 100px 20px 40px;
    margin: 0 auto;
}

.story-title {
    font-size: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    font-family: 'Uxum', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.2;
    color: var(--color-brand-primary);
    margin: 0;
}

.story-main-title {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: var(--ui-brand);
}

.story-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 80px;
}

.story-dating-text {
    font-family: 'Uxum', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.2;
    color: var(--color-brand-primary);
    white-space: nowrap;
    color: var(--ui-brand);
}

.story-container {
    position: relative;
    display: flex;
    align-items: center;
    transform: rotate(-4deg);
}

.story-text {
    font-family: 'Intro Script', cursive;
    font-weight: 500;
    font-size: 92px;
    line-height: 0.6;
    white-space: nowrap;
    color: var(--ui-brand);
}

.story-underline {
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    height: 6px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.story-subtitle {
    font-family: 'Linotte', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: var(--color-text-primary);
    text-align: center;
    margin: 0;
}

.story-cards-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Story Card */
.story-card {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 560px;
    border-radius: 28px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: scale(1.02);
}

.story-card-white {
    background-color: var(--color-white);
    border: 1px solid #f5f5f6;
    box-shadow: 0px 121px 34px 0px rgba(158, 158, 158, 0),
    0px 78px 31px 0px rgba(158, 158, 158, 0.01),
    0px 44px 26px 0px rgba(158, 158, 158, 0.05),
    0px 19px 19px 0px rgba(158, 158, 158, 0.09),
    0px 5px 11px 0px rgba(158, 158, 158, 0.1);
}

.story-card-red {
    background-color: var(--color-brand-secondary);
    box-shadow: 0px 121px 34px 0px rgba(158, 158, 158, 0),
    0px 78px 31px 0px rgba(158, 158, 158, 0.01),
    0px 44px 26px 0px rgba(158, 158, 158, 0.05),
    0px 19px 19px 0px rgba(158, 158, 158, 0.09),
    0px 5px 11px 0px rgba(158, 158, 158, 0.1);
}

.story-card-content {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0 100px;
    position: relative;
}

.story-card-content-reverse {
    flex-direction: row-reverse;
}

.story-text-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    width: 440px;
    flex-shrink: 0;
}

.story-icon {
    width: 112px;
    height: 112px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.story-card-title {
    font-family: 'Uxum', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    margin: 0;
}

.story-card-title-white {
    color: var(--color-text-primary);
}

.story-card-title-red {
    color: var(--color-white);
}

.story-card-description {
    font-family: 'Linotte', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    margin: 0;
}

.story-card-description-white {
    color: var(--color-text-primary);
}

.story-card-description-red {
    color: var(--color-white);
}

.story-phone-container {
    position: relative;
    width: 584px;
    height: 100%;
    flex-shrink: 0;
    border-radius: 28px;
    overflow: hidden;
}

.story-phone-image {
    position: absolute;
    top: calc(50% + 60px);
    left: 50%;
    transform: translate(-50%, calc(-50% + 60px));
    width: 330px;
    height: 686px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Story Card Rotations */
.story-card-rotate-1 {
    transform: rotate(2deg);
}

.story-card-rotate-2 {
    transform: rotate(1deg);
}

.story-card-rotate-3 {
    transform: rotate(-1deg);
}

.story-card-rotate-4 {
    transform: rotate(-2deg);
}

.story-card-rotate-5 {
    transform: rotate(1deg);
}

/* Main Container */
.landing-container {
    min-height: 100vh;
    width: 100%;
    background-color: var(--color-white);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 112px;
}

.landing-container ::selection {
    background-color: rgba(255, 73, 49, 0.5);
}

/* Mixins */
.script-text-mixin {
    display: inline-block;
    position: relative;
    font-size: 92px;
    line-height: 0.6;
    font-weight: 500;
    color: var(--ui-brand);
    transform: rotate(-4deg);
}

.script-text-mixin::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 80%;
    transform: translateX(15%);
    height: 4px;
    border-radius: 10000px;
    background-color: var(--ui-brand);
    z-index: -1;
}

.title-text-mixin {
    font-weight: 700;
    font-size: 64px;
    line-height: 1;
}

/* Safety Section */
.safety-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.safety-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 0;
    position: relative;
    width: 100%;
}

.safety-background-image {
    position: absolute;
    display: flex;
    height: 1057.891px;
    width: 1057.891px;
    align-items: center;
    justify-content: center;
    left: -223.64px;
    top: -55.446px;
    pointer-events: none;
    z-index: var(--z-index-bg-visual);
}

.safety-background-image img {
    width: 837.148px;
    height: 837.148px;
    object-fit: contain;
}

.safety-text-block {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding: 8px;
    position: relative;
    width: 632px;
    z-index: var(--z-index-bg-text-block);
}

.safety-title-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 100%;
}

.safety-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    width: 532px;
    text-align: center;
    position: relative;
    color: var(--ui-brand);
}

.safety-script-text {
    font-weight: 500;
    font-size: 92px;
    display: inline-block;
    line-height: 0.6;
    color: var(--ui-brand);
    position: relative;
    transform: rotate(-4deg);
}

.safety-script-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 80%;
    transform: translateX(15%);
    height: 4px;
    border-radius: 10000px;
    background-color: var(--ui-brand);
    z-index: -1;
}

.safety-subtitle {
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    width: 100%;
    color: var(--color-soot);
}

.safety-cards-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    position: relative;
    z-index: 1;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.safety-cards-container::-webkit-scrollbar {
    display: none;
}

.safety-cards-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Safety Card */
.safety-card {
    background: var(--interface-snow);
    border: 1px solid var(--interface-gray-light);
    border-radius: 20px;
    padding: 0 16px;
    width: 304px;
    height: 352px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0px 93px 26px 0px rgba(166, 166, 166, 0),
    0px 59px 24px 0px rgba(166, 166, 166, 0.01),
    0px 33px 20px 0px rgba(166, 166, 166, 0.05),
    0px 15px 15px 0px rgba(166, 166, 166, 0.09),
    0px 4px 8px 0px rgba(166, 166, 166, 0.1);
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.safety-card:hover {
    transform: translateY(-2px);
    box-shadow: 0px 100px 30px 0px rgba(166, 166, 166, 0),
    0px 65px 28px 0px rgba(166, 166, 166, 0.02),
    0px 40px 24px 0px rgba(166, 166, 166, 0.08),
    0px 20px 18px 0px rgba(166, 166, 166, 0.12),
    0px 8px 12px 0px rgba(166, 166, 166, 0.15);
}

.safety-card-icon svg {
    width: 64.823px;
    height: 76px;
    flex-shrink: 0;
}

.safety-card-text-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    text-align: center;
}

.safety-card-title {
    font-family: 'Uxum', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: var(--interface-soot);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.safety-card-description {
    font-family: 'Linotte', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    color: var(--interface-soot);
    width: 100%;
    height: 66px;
}

.safety-card-button-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
}

.safety-card-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--brand-primary);
    color: white;
    border-radius: 8px;
    font-family: 'Linotte', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.safety-card-button:hover {
    background: var(--brand-secondary);
}

/* Experience Section */
.experience-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 0;
}

.experience-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 80px 60px 0;
    position: relative;
    width: 100%;
}

.experience-background-vector {
    position: absolute;
    display: flex;
    height: 855.679px;
    width: 855.429px;
    align-items: center;
    justify-content: center;
    right: -172.435px;
    top: 193.572px;
    transform: rotate(347.526deg);
    pointer-events: none;
    z-index: var(--z-index-bg-visual);
}

.experience-background-vector img {
    width: 717.347px;
    height: 717.682px;
    object-fit: contain;
}

.experience-content {
    background: var(--interface-leather);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 104px;
    align-items: center;
    justify-content: center;
    padding: 60px 40px 56px;
    position: relative;
    border-radius: 40px;
    flex-shrink: 0;
    z-index: var(--z-index-bg-text-block);
}

.experience-visual-left {
    position: absolute;
    display: flex;
    height: 318.787px;
    width: 343.087px;
    align-items: center;
    justify-content: center;
    left: 9.998px;
    top: -127.431px;
    pointer-events: none;
    z-index: 0;
    transform: rotate(175.278deg) scaleY(-1);
}

.experience-visual-image {
    background-size: 161.52% 176.2%;
    background-position: 54.98% 47.72%;
    background-repeat: no-repeat;
    height: 293.446px;
    width: 320.018px;
}

.experience-visual-right {
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    height: 258px;
    width: 274px;
    left: 1051px;
    top: 113.572px;
    pointer-events: none;
    z-index: 0;
}

.experience-text-block {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    justify-content: center;
    padding: 8px;
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}

.experience-title {
    font-weight: 700;
    font-size: 64px;
    line-height: 1;
    text-align: center;
    color: var(--ui-snow);
}

.experience-script-text {
    display: inline-block;
    position: relative;
    font-size: 92px;
    line-height: 0.6;
    font-weight: 500;
    color: var(--ui-snow);
    transform: rotate(-4deg);
}

.experience-script-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 80%;
    transform: translateX(15%);
    height: 4px;
    border-radius: 10000px;
    background-color: var(--ui-snow);
    z-index: -1;
}

.experience-subtitle {
    text-align: center;
    max-width: 600px;
    font-weight: 600;
    font-size: 24px;
    color: var(--ui-snow);
}

.experience-statistics-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}

/* Statistic Block */
.statistic-block {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    position: relative;
    flex-shrink: 0;
}

.statistic-number {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    flex-shrink: 0;
}

.statistic-value {
    font-family: 'Uxum', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: var(--interface-snow);
    text-align: center;

}

.statistic-description {
    font-family: 'Linotte', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    color: var(--interface-snow);
    text-align: left;
    white-space: pre;
}

/* Blog Section */
.blog-section {
    position: relative;
    width: 100%;
    background: var(--interface-snow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    position: relative;
    width: 100%;
}

.blog-background-vector {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    bottom: -150px;
    pointer-events: none;
    z-index: var(--z-index-bg-visual);
}

.blog-background-vector img {
    object-fit: contain;
}

.blog-text-block {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding: 8px;
    position: relative;
    flex-shrink: 0;
    z-index: var(--z-index-bg-text-block);
}

.blog-title {
    font-weight: 700;
    font-size: 64px;
    line-height: 1;
    text-align: center;
    color: var(--ui-brand);
}

.blog-script-text {
    display: inline-block;
    position: relative;
    font-size: 92px;
    line-height: 0.6;
    font-weight: 500;
    color: var(--ui-brand);
    transform: rotate(-4deg);
}

.blog-script-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 80%;
    transform: translateX(15%);
    height: 4px;
    border-radius: 10000px;
    background-color: var(--ui-brand);
    z-index: -1;
}

.blog-subtitle {
    text-align: center;
    max-width: 600px;
    font-weight: 600;
    font-size: 24px;
    color: var(--color-soot);
}

.blog-cards-container {
    position: relative;
    width: 100%;
    z-index: 1;
}

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

/* Blog Card */
.blog-card {
    background: var(--interface-snow);
    border-radius: 20px;
    border: 1px solid var(--interface-snow-10);
    box-shadow: 0px 26px 7px 0px rgba(133, 133, 133, 0),
    0px 17px 7px 0px rgba(133, 133, 133, 0.01),
    0px 9px 6px 0px rgba(133, 133, 133, 0.05),
    0px 4px 4px 0px rgba(133, 133, 133, 0.09),
    0px 1px 2px 0px rgba(133, 133, 133, 0.1);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    transform: rotate(0.3deg);
    transition: transform 0.2s cubic-bezier(0.4, 0.08, 0.6, 1);
}

.blog-card:nth-child(2) {
    transform: rotate(-0.5deg);
}

.blog-card:nth-child(3) {
    transform: rotate(0.2deg);
}

.blog-card:hover {
    animation: shake 0.3s linear;
}

@keyframes shake {
    0% {
        transform: rotate(0.3deg) translateX(0);
    }
    20% {
        transform: rotate(1deg) translateX(-2px);
    }
    40% {
        transform: rotate(-1deg) translateX(2px);
    }
    60% {
        transform: rotate(1deg) translateX(-2px);
    }
    80% {
        transform: rotate(-1deg) translateX(2px);
    }
    100% {
        transform: rotate(0.3deg) translateX(0);
    }
}

.blog-card-image {
    width: 100%;
    height: 192px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.blog-card-metadata {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-card-date {
    font-family: 'Linotte', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: var(--soot);
    opacity: 0.5;
}

.blog-card-title-text {
    font-family: 'Linotte', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: var(--soot);
    margin: 0;
}

.blog-card-excerpt {
    font-family: 'Linotte', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    color: var(--soot);
    margin: 0;
    flex-grow: 1;
}

.blog-card-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--brand-primary);
    color: white;
    border-radius: 8px;
    font-family: 'Linotte', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.blog-card-button:hover {
    background: var(--brand-secondary);
}

/* Feedback Section */
.feedback-section {
    position: relative;
    width: 100%;
    background: var(--interface-snow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feedback-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: flex-start;
    padding: 80px  0 60px 60px;
    position: relative;
    width: 100%;
}

.feedback-top-section {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 100%;
}

.feedback-text-block {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding: 8px;
    position: relative;
    flex-shrink: 0;
}

.feedback-title {
    font-weight: 700;
    font-size: 64px;
    line-height: 1;
    text-align: center;
    color: var(--ui-brand);
}

.feedback-script-text {
    display: inline-block;
    position: relative;
    font-size: 92px;
    line-height: 0.6;
    font-weight: 500;
    color: var(--ui-brand);
    transform: rotate(-4deg);
}

.feedback-script-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 80%;
    transform: translateX(15%);
    height: 4px;
    border-radius: 10000px;
    background-color: var(--ui-brand);
    z-index: -1;
}

.feedback-subtitle {
    font-family: 'Linotte', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: var(--soot);
    text-align: center;
    white-space: nowrap;
}

.feedback-ratings-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
}

/* Rating Block */
.rating-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
}

.rating-platform-container {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.rating-platform-logo {
    width: 40px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-platform-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rating-platform-name {
    font-family: 'Uxum', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: var(--soot);
    white-space: nowrap;
}

.rating-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    justify-content: center;
}

.rating-stars-container {
    width: 150px;
    height: 25px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #FFD700;
    font-size: 20px;
}

.star.filled {
    color: #FFD700;
}

.star.half {
    color: #FFD700;
    opacity: 0.7;
}

.rating-value {
    font-family: 'Uxum', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: var(--interface-gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.feedback-reviews-section {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-shrink: 0;
}

.feedback-reviews-container {
    position: relative;
    width: 100%;
}

.feedback-reviews-grid {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.feedback-reviews-grid::-webkit-scrollbar {
    display: none;
}

/* Review Card */
.review-card {
    background: var(--interface-snow);
    border-radius: 20px;
    border: 1px solid var(--interface-snow-10);
    box-shadow: 0px 26px 7px 0px rgba(133, 133, 133, 0),
    0px 17px 7px 0px rgba(133, 133, 133, 0.01),
    0px 9px 6px 0px rgba(133, 133, 133, 0.05),
    0px 4px 4px 0px rgba(133, 133, 133, 0.09),
    0px 1px 2px 0px rgba(133, 133, 133, 0.1);
    padding: 28px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 516px;
    height: 260px;
    flex-shrink: 0;
    box-sizing: border-box;
    margin: 15px;
}

.review-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
    align-items: flex-start;
    justify-content: space-between;
    min-width: 0;
    min-height: 0;
}

.review-card-text {
    font-family: 'Linotte', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    color: var(--soot);
    height: 120px;
    width: 100%;
    flex-shrink: 0;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.review-card-bottom-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-shrink: 0;
}

.review-card-author-section {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

.review-card-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 1000px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.review-card-author-name {
    font-family: 'Linotte', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: var(--soot);
    white-space: nowrap;
}

.review-card-source {
    font-family: 'Linotte', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: var(--soot);
    opacity: 0.5;
    white-space: nowrap;
    flex-shrink: 0;
}

.feedback-disclaimer-text {
    font-family: 'Linotte', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: var(--interface-dark-1);
    opacity: 0.5;
    text-align: center;
    white-space: nowrap;
}

/* Mobile App Section */
.mobile-app-section {
    width: 100%;
    background: var(--color-white);
    padding: var(--spacing-xxl) 0;
}

.mobile-app-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.mobile-app-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xxl);
}

.mobile-app-background-vector {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: -50px;
    pointer-events: none;
    z-index: var(--z-index-bg-visual);
}

.mobile-app-background-vector img {
    object-fit: contain;
}

.mobile-app-title {
    font-weight: 700;
    font-size: 64px;
    line-height: 1;
    color: var(--ui-brand);
}

.mobile-app-script-text {
    display: inline-block;
    position: relative;
    font-size: 92px;
    line-height: 0.6;
    font-weight: 500;
    color: var(--ui-brand);
    transform: rotate(-4deg);
}

.mobile-app-script-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 80%;
    transform: translateX(15%);
    height: 4px;
    border-radius: 10000px;
    background-color: var(--ui-brand);
    z-index: -1;
}

.mobile-app-visual-section {
    flex-shrink: 0;
    position: relative;
    width: 462px;
    height: 668px;
    z-index: 1;
}

.mobile-app-content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xxl);
    z-index: 2;
}

.mobile-app-text-block {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    z-index: var(--z-index-bg-text-block);
}

.mobile-app-description {
    font-family: var(--font-body);
    font-size: var(--font-size-body-20);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-normal);
    color: var(--color-soot);
    margin: 0;
}

/* App Download Buttons */
.app-download-buttons {
    width: 100%;
}

.app-buttons-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.app-qr-section {
    flex-shrink: 0;
}

.app-qr-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-qr-code {
    width: 132px;
    height: 132px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-dark-2);
    border-radius: 8px;
    background: var(--color-white);
    position: relative;
}

.app-qr-pattern {
    position: relative;
    width: 100px;
    height: 100px;
    background: var(--color-white);
}

.app-qr-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-black);
}

.app-qr-corner:nth-child(1) {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.app-qr-corner:nth-child(2) {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.app-qr-corner:nth-child(3) {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.app-qr-corner:nth-child(4) {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.app-qr-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    width: 60px;
    height: 60px;
}

.app-qr-dot {
    width: 6px;
    height: 6px;
    background: var(--color-black);
    border-radius: 1px;
}

.app-qr-dot:nth-child(odd) {
    opacity: 0.7;
}

.app-qr-label {
    position: absolute;
    bottom: 8px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-dark-2);
}

.app-buttons-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    flex: 1;
}

.app-store-button {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 10px 12px;
    background: var(--color-black);
    color: var(--color-white);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    height: 56px;
    width: 178px;
}

.app-store-button:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-1px);
}

.app-store-button:active {
    transform: translateY(0);
}

.app-store-icon {
    width: 32px;
    height: 32px;
    color: var(--color-white);
    flex-shrink: 0;
}

.app-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.app-store-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    color: var(--color-white);
}

.app-store-name {
    font-family: var(--font-body);
    font-size: var(--font-size-body-20);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-normal);
    color: var(--color-white);
}


/* Responsive Design */
@media (max-width: 1439px) {
    .safety-cards-container::after {
        width: 60px;
    }

    .safety-cards-container {
        width: 100%;
        justify-content: flex-start;
        padding-left: 20px;
    }

    .experience-background-vector {
        right: -120px;
        top: 150px;
        height: 600px;
        width: 600px;
    }

    .experience-background-vector img {
        width: 500px;
        height: 500px;
    }

    .experience-content {
        width: 100%;
        padding: 50px 30px 46px;
        gap: 80px;
        height: auto;
    }

    .experience-visual-right {
        right: 20px;
        left: auto;
        top: 90px;
        height: 200px;
        width: 220px;
    }
}

@media (max-width: 1023px) {
    .landing-container {
        gap: 60px;
    }

    .safety-container {
        padding: 60px 0;
        gap: 48px;
    }

    .safety-background-image {
        height: 800px;
        width: 800px;
        left: -180px;
        top: -40px;
    }

    .safety-background-image img {
        width: 600px;
        height: 600px;
    }

    .safety-text-block {
        width: 100%;
        max-width: 600px;
        gap: 32px;
    }

    .safety-title {
        font-size: 56px;
        width: 100%;
    }

    .safety-script-text {
        font-size: 80px;
    }

    .safety-subtitle {
        font-size: 22px;
    }

    .safety-cards-container {
        gap: 16px;
        padding-left: 16px;
    }

    .safety-cards-container::after {
        width: 40px;
    }

    .experience-container {
        padding: 60px 40px 0;
    }

    .experience-background-vector {
        right: -80px;
        top: 100px;
        height: 400px;
        width: 400px;
    }

    .experience-background-vector img {
        width: 350px;
        height: 350px;
    }

    .experience-content {
        padding: 40px 24px 40px;
        gap: 60px;
        border-radius: 30px;
    }

    .experience-title {
        font-size: 56px;
    }

    .experience-script-text {
        font-size: 80px;
    }

    .experience-subtitle {
        font-size: 22px;
    }

    .experience-statistics-container {
        gap: 32px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .experience-text-block {
        gap: 36px;
    }

    .experience-visual-left {
        height: 250px;
        width: 270px;
        left: 8px;
        top: -100px;
    }

    .experience-visual-image {
        height: 230px;
        width: 250px;
    }

    .experience-visual-right {
        right: 15px;
        top: 70px;
        height: 160px;
        width: 180px;
    }

    .statistic-block {
        padding: 0 16px;
        gap: 6px;
    }

    .statistic-value {
        font-size: 36px;
    }

    .statistic-description {
        font-size: 18px;
    }

    .blog-container {
        padding: 60px 40px;
        gap: 48px;
    }

    .blog-text-block {
        gap: 32px;
    }

    .blog-title {
        font-size: 56px;
    }

    .blog-script-text {
        font-size: 80px;
    }

    .blog-subtitle {
        font-size: 22px;
    }

    .blog-cards-grid {
        gap: 16px;
    }

    .feedback-container {
        padding: 60px 40px;
        gap: 48px;
    }

    .feedback-title {
        font-size: 56px;
    }

    .feedback-script-text {
        font-size: 80px;
    }

    .feedback-ratings-container {
        gap: 16px;
        justify-content: center;
    }

    .rating-platform-name {
        font-family: 'Linotte', sans-serif;
        font-weight: 600;
        font-size: 18px;
    }

    .rating-container {
        gap: 10px;
    }

    .rating-stars-container {
        width: 120px;
        height: 20px;
    }

    .rating-value {
        font-family: 'Linotte', sans-serif;
        font-weight: 600;
        font-size: 18px;
        color: var(--lux-0);
    }

    .mobile-app-section {
        padding: var(--spacing-lg) 0 var(--spacing-xxl) 0;
    }

    .mobile-app-container {
        padding: 0 40px;
    }

    .mobile-app-content {
        gap: 108px;
    }

    .mobile-app-title {
        font-size: 56px;
    }

    .mobile-app-script-text {
        font-size: 80px;
    }

    .mobile-app-content-section {
        max-width: 567px;
        padding: var(--spacing-xl) var(--spacing-sm);
    }
}

@media (max-width: 767px) {
    .landing-container {
        gap: 40px;
    }

    .safety-container {
        padding: 40px 0;
        gap: 32px;
    }

    .safety-background-image {
        height: 600px;
        width: 600px;
        left: -150px;
        top: -30px;
    }

    .safety-background-image img {
        width: 450px;
        height: 450px;
    }

    .safety-text-block {
        gap: 24px;
        padding: 0;
    }

    .safety-title-container {
        gap: 8px;
    }

    .safety-title {
        font-size: 42px;
    }

    .safety-script-text {
        font-size: 60px;
    }

    .safety-subtitle {
        font-size: 20px;
    }

    .safety-cards-container {
        gap: 12px;
        padding-left: 12px;
    }

    .safety-cards-container::after {
        width: 30px;
    }

    .safety-card {
        width: 280px;
        height: 320px;
        padding: 0 12px;
        gap: 16px;
    }

    .safety-card-icon svg {
        width: 56px;
        height: 66px;
    }

    .safety-card-text-block {
        gap: 8px;
    }

    .safety-card-title {
        font-size: 20px;
    }

    .safety-card-description {
        font-size: 18px;
        height: auto;
        min-height: 60px;
    }

    .experience-container {
        padding: 40px 20px 0;
    }

    .experience-background-vector {
        display: none;
    }

    .experience-content {
        padding: 32px 20px 32px;
        gap: 40px;
        border-radius: 24px;
    }

    .experience-title {
        font-size: 42px;
    }

    .experience-script-text {
        font-size: 60px;
    }

    .experience-subtitle {
        font-size: 20px;
    }

    .experience-statistics-container {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .experience-text-block {
        gap: 24px;
        padding: 0;
    }

    .experience-visual-left {
        height: 200px;
        width: 220px;
        left: 5px;
        top: -80px;
    }

    .experience-visual-image {
        height: 180px;
        width: 200px;
    }

    .experience-visual-right {
        right: 10px;
        top: 50px;
        height: 120px;
        width: 140px;
    }

    .statistic-block {
        padding: 0 12px;
        gap: 4px;
    }

    .statistic-value {
        font-size: 32px;
    }

    .statistic-description {
        font-size: 16px;
        text-align: center;
    }

    .blog-container {
        padding: 40px 20px;
        gap: 40px;
    }

    .blog-text-block {
        gap: 24px;
        padding: 0;
    }

    .blog-title {
        font-size: 42px;
    }

    .blog-script-text {
        font-size: 60px;
    }

    .blog-subtitle {
        font-size: 20px;
    }

    .blog-background-vector {
        display: none;
    }

    .blog-cards-grid {
        display: none;
    }

    .blog-card {
        min-width: 280px;
        max-width: 280px;
        min-height: 400px;
        padding: 20px;
        gap: 16px;
    }

    .blog-card-image {
        height: 160px;
        border-radius: 12px;
    }

    .blog-card-content {
        gap: 12px;
    }

    .blog-card-date {
        font-size: 14px;
    }

    .blog-card-title-text {
        font-size: 20px;
    }

    .blog-card-excerpt {
        font-size: 18px;
    }

    .feedback-container {
        padding: 60px 16px;
        gap: 40px;
    }

    .feedback-top-section {
        gap: 28px;
    }

    .feedback-text-block {
        gap: 20px;
        padding: 0;
    }

    .feedback-title {
        font-size: 42px;
    }

    .feedback-script-text {
        font-size: 60px;
    }

    .feedback-subtitle {
        font-size: 18px;
        white-space: normal;
        max-width: 344px;
    }

    .feedback-ratings-container {
        gap: 16px;
        justify-content: center;
    }

    .rating-platform-logo {
        width: 36px;
        height: 35px;
    }

    .rating-platform-container {
        gap: 4px;
    }

    .feedback-reviews-section {
        gap: 16px;
    }

    .feedback-reviews-grid {
        gap: 16px;
        padding: 0 16px;
    }

    .review-card {
        width: 320px;
        height: 212px;
        padding: 16px;
        gap: 10px;
    }

    .review-card-text {
        font-size: 16px;
        height: 120px;
        -webkit-line-clamp: 6;
    }

    .review-card-author-avatar {
        width: 48px;
        height: 48px;
    }

    .review-card-author-name {
        font-size: 18px;
    }

    .review-card-source {
        font-size: 14px;
    }

    .feedback-disclaimer-text {
        font-size: 12px;
    }

    .mobile-app-content {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .mobile-app-visual-section {
        order: -1;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .mobile-app-content-section {
        align-items: center;
        text-align: center;
        gap: var(--spacing-xl);
    }

    .mobile-app-text-block {
        gap: var(--spacing-md);
        align-items: center;
    }

    .mobile-app-title {
        font-size: 42px;
    }

    .mobile-app-script-text {
        font-size: 60px;
    }

    .mobile-app-description {
        font-size: var(--font-size-caption-16);
        padding: 0 var(--spacing-sm);
    }

    .mobile-app-background-vector {
        display: none;
    }

    .app-buttons-container {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }

    .app-qr-section {
        display: none;
    }

    .app-buttons-grid {
        flex-direction: row;
        justify-content: center;
        gap: var(--spacing-md);
    }

    .app-store-button {
        width: 200px;
        height: 52px;
        background: var(--brand-primary);
        border-radius: 1000px;
        padding: 10px 8px;
        justify-content: center;
    }

    .app-store-button:hover {
        background: var(--brand-secondary);
    }

    .app-store-button:first-child {
        display: none;
    }

    .app-store-icon {
        width: 32px;
        height: 32px;
    }

    .app-store-text {
        align-items: flex-start;
        width: 90px;
    }

    .app-store-label {
        font-size: 10px;
    }

    .app-store-name {
        font-size: var(--font-size-body-18);
    }


}

@media (max-width: 479px) {
    .landing-container {
        gap: 32px;
    }

    .safety-container {
        padding: 32px 0;
        gap: 24px;
    }

    .safety-background-image {
        height: 400px;
        width: 400px;
        left: -100px;
        top: -20px;
    }

    .safety-background-image img {
        width: 300px;
        height: 300px;
    }

    .safety-title {
        font-size: 32px;
    }

    .safety-script-text {
        font-size: 48px;
    }

    .safety-subtitle {
        font-size: 18px;
    }

    .safety-cards-container {
        gap: 8px;
        padding-left: 8px;
    }

    .safety-cards-container::after {
        width: 20px;
    }

    .safety-card {
        width: 260px;
        height: 300px;
        gap: 12px;
    }

    .safety-card-icon svg {
        width: 48px;
        height: 56px;
    }

    .safety-card-title {
        font-size: 18px;
    }

    .safety-card-description {
        font-size: 16px;
        min-height: 54px;
    }

    .experience-container {
        padding: 32px 16px 0;
    }

    .experience-content {
        padding: 24px 16px 24px;
        gap: 32px;
        border-radius: 20px;
    }

    .experience-title {
        font-size: 32px;
    }

    .experience-script-text {
        font-size: 48px;
    }

    .experience-subtitle {
        font-size: 18px;
    }

    .experience-statistics-container {
        gap: 20px;
    }

    .experience-visual-left {
        height: 150px;
        width: 170px;
        left: 2px;
        top: -60px;
    }

    .experience-visual-image {
        height: 130px;
        width: 150px;
    }

    .experience-visual-right {
        right: 5px;
        top: 40px;
        height: 100px;
        width: 120px;
    }

    .statistic-block {
        padding: 0 8px;
    }

    .statistic-value {
        font-size: 28px;
    }

    .statistic-description {
        font-size: 14px;
    }

    .blog-container {
        padding: 32px 16px;
        gap: 32px;
    }

    .blog-title {
        font-size: 32px;
    }

    .blog-script-text {
        font-size: 48px;
    }

    .blog-subtitle {
        font-size: 18px;
    }

    .blog-card {
        min-width: 260px;
        max-width: 260px;
        min-height: 380px;
        padding: 16px;
        gap: 14px;
    }

    .blog-card-image {
        height: 140px;
        border-radius: 10px;
    }

    .blog-card-content {
        gap: 10px;
    }

    .blog-card-date {
        font-size: 13px;
    }

    .blog-card-title-text {
        font-size: 18px;
    }

    .blog-card-excerpt {
        font-size: 16px;
    }

    .feedback-container {
        padding: 48px 16px;
        gap: 32px;
    }

    .feedback-title {
        font-size: 32px;
    }

    .feedback-script-text {
        font-size: 48px;
    }

    .feedback-subtitle {
        font-size: 16px;
    }

    .mobile-app-title {
        font-size: 32px;
    }

    .mobile-app-script-text {
        font-size: 48px;
    }
}

/* Desktop specific styles */
@media (min-width: 769px) {
    .mobile-app-container {
        padding: 0 58px;
    }

    .mobile-app-content {
        gap: 108px;
    }

    .mobile-app-visual-section {
        flex: 0 0 auto;
    }

    .mobile-app-content-section {
        max-width: 567px;
        padding: var(--spacing-xl) var(--spacing-sm);
    }

    .app-buttons-container {
        align-items: center;
    }
}

/* Responsive styles for new sections */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 40px;
    }

    .header-nav {
        gap: 24px;
    }

    .hero-title-main {
        font-size: 56px;
    }

    .hero-title-script {
        font-size: 80px;
    }

    .story-title {
        font-size: 48px;
    }

    .story-main-title,
    .story-dating-text {
        font-size: 48px;
    }

    .story-text {
        font-size: 68px;
    }

    .story-title-row {
        height: 60px;
    }

    .story-card {
        height: 480px;
    }

    .story-card-content {
        padding: 0 60px;
    }

    .story-card-title {
        font-size: 32px;
    }

    .story-card-description {
        font-size: 18px;
    }

    .story-icon {
        width: 80px;
        height: 80px;
    }

    .story-phone-container {
        width: 400px;
    }

    .story-phone-image {
        width: 250px;
        height: 520px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .header-nav {
        gap: 16px;
    }

    .header-nav-item {
        font-size: 14px;
    }

    .hero-section {
        min-height: 100vh;
        border-radius: 0 0 40px 40px;
    }

    .hero-background-image {
        background-size: 250%;
        background-repeat: no-repeat;
        background-position: -411px center;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 36.22%, rgba(0, 0, 0, 0.90) 89.11%), linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%), url('../images/main_section_bg.webp');
        background-position: -297.074px 125.539px;
        background-size: 207.739% 69.442%;
        background-repeat: no-repeat;
        background-color: #030201;
    }

    .hero-content-wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 40px;
        padding-bottom: 54px;
        width: 100%;
        right: unset;
    }

    .hero-text-block {
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
    }

    .hero-text-block::before,
    .hero-text-block::after {
        display: none;
    }

    .hero-title-main {
        line-height: 1.2;
        font-size: 48px;
    }

    .hero-title-script {
        font-size: 72px;
    }

    .hero-download-block {
        flex-direction: column;
        gap: 0;
    }

    .hero-qr-code {
        display: none;
    }

    .hero-buttons-container {
        flex-direction: column;
        gap: 0;
    }

    .hero-store-button {
        width: 200px;
        height: 52px;
        background: #ff4931;
        color: #fff;
        border-radius: 1000px;
        justify-content: center;
    }

    .hero-store-button:hover {
        background: #e63c26;
    }

    .hero-store-banner {
        display: none;
    }

    .hero-store-banner-mobile {
        display: block;
    }

    .story-text-block {
        gap: 24px;
        max-width: 100%;
        padding: 60px 20px 40px;
    }

    .story-title {
        font-size: 32px;
        gap: 8px;
    }

    .story-main-title,
    .story-dating-text {
        font-size: 32px;
    }

    .story-text {
        font-size: 44px;
    }

    .story-title-row {
        height: 48px;
        gap: 8px;
    }

    .story-container {
        transform: rotate(-2deg);
    }

    .story-subtitle {
        font-size: 18px;
    }

    .story-card {
        height: 480px;
        max-width: 100%;
    }

    .story-card:hover {
        transform: none;
    }

    .story-card-content {
        flex-direction: column;
        padding: 40px 20px;
        gap: 24px;
    }

    .story-card-content-reverse {
        flex-direction: column;
    }

    .story-text-content {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .story-card-title {
        font-size: 24px;
    }

    .story-card-description {
        font-size: 16px;
    }

    .story-icon {
        width: 80px;
        height: 80px;
    }

    .story-phone-container {
        width: 280px;
        height: 200px;
    }

    .story-phone-image {
        width: 200px;
        height: 416px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .story-card-rotate-1,
    .story-card-rotate-2,
    .story-card-rotate-3,
    .story-card-rotate-4,
    .story-card-rotate-5 {
        transform: none;
    }
}

.site-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4.167vw 4.167vw 1.667vw 4.167vw;
    background-color: #252222;
    color: #ffffff;
    font-size: 1.11vw;
    border-radius: 40px 40px 0 0;

    @media (max-width: 996px) {
        font-size: 16px;
        padding: 40px 16px 24px;
    }
}

.site-footer .lang-switcher {
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;

    @media (max-width: 996px) {
        background: rgba(255, 255, 255, 0.20);
        height: 34px;
    }
}

.links a {
    font-size: 0.97vw;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    color: rgba(255, 255, 255, 0.70);
    transition: 0.3s ease-in-out;


    @media (max-width: 996px) {
        font-size: 14px;
        color: #fff;
    }
}

.links-top ul {
    list-style: none;
    display: flex;
    gap: 4vw;
    padding: 48px 0 24px 0;

    @media (max-width: 996px) {
        flex-direction: column;
        padding: 0;
        gap: 16px;
    }
}

.container-link {
    display: flex;
    flex-direction: column;
    width: 100%;

    @media (max-width: 996px) {
        flex-direction: row;
        gap: 40px;
    }
}

.links-top a {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.111vw;
    transition: 0.3s ease-in-out;


    @media (max-width: 996px) {
        font-size: 14px;
        color: #fff;
    }
}

.links a:hover {
    color: #ff4d3d;
}

.links-bottom ul {
    list-style: none;
    display: flex;
    gap: 4vw;
    padding: 0;

    @media (max-width: 996px) {
        flex-direction: column;
        gap: 16px;
    }
}

.links-bottom div {
    font-size: 0.97vw;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    color: rgba(255, 255, 255, 0.30);

    @media (max-width: 996px) {
        display: none;
    }
}

.links-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.30);
    padding-top: 24px;
    width: 100%;
    font-size: 14px;
    justify-content: space-between;
    display: flex;

    @media (max-width: 996px) {
        border-top: none;
        padding-top: 0;
    }
}

.footer__social-links {
    display: none;
    padding: 40px 0;

    @media (max-width: 996px) {
        display: block;
    }
}

.footer-mob__company {
    display: none;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    color: rgba(255, 255, 255, 0.70);

    @media (max-width: 996px) {
        display: block;
    }
}

.footer-right-block {
    @media (max-width: 996px) {
        display: none;
    }
}

.site-footer .lang-switcher span {
    color: #fff;
}

.footer-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.container-link {
    @media (max-width: 996px) {
        padding-top: 36px;
    }
}

.footer-left-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.link-group h4 {
    margin: 0 0 1rem 0;
    font-size: 1.11vw;
    font-weight: 700;
    line-height: 120%;

    @media (max-width: 996px) {
        font-size: 16px;
    }
}

.link-group ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group li + li {
    margin-top: 4px;
    font-size: 1.11vw;
    font-weight: 400;
    line-height: 120%;

    @media (max-width: 996px) {
        font-size: 16px;
    }
}

.link-group a {
    color: #ffffff;
    text-decoration: none;
}

.footer-social h4 {
    color: #FF4931;
    font-size: 1.25vw;
    font-weight: 700;
    line-height: 120%;
    margin: 2rem 0 1rem 0;

    @media (max-width: 996px) {
        font-size: 18px;
    }
}

.social-icons {
    display: flex;
    gap: 1.25rem;
}

.social-icons img {
    width: 2.5rem;
    height: 2.5rem;
}

.footer-badges {
    display: flex;
    gap: 1.125rem;
}

.footer-badges .badge img {
    display: block;
}

.footer-bottom {
    margin-top: 2rem;
    color: #818490;
    text-align: center;
    font-size: 1.11vw;
    font-weight: 400;
    line-height: 120%;
    width: 100%;

    @media (max-width: 996px) {
        font-size: 16px;
    }
}

.site-footer .header__cta {
    padding: 0 16px;
    height: 43px;
}

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

@media (min-width: 769px) {

    .footer-container {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .footer-blocks {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .footer-left-block {
        flex-direction: row;
        justify-content: flex-start;
    }

    .footer-social h4 {
        margin: 0 0 1rem 0;
    }

    .footer-social {
        align-items: end;
    }
}

@media (max-width: 996px) {
    .footer-logo {
        display: none;
    }
}