/*
Theme Name: Color Match Landing Page
Description: Custom landing page theme for Color Match app
Version: 1.0
Author: Color Match Team
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-purple: #6B46C1;
    --dark-purple: #4C1D95;
    --light-purple: #8B5CF6;
    --white: #FFFFFF;
    --text-light: #F3F4F6;
    --bg:#500F38;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Utility Classes */
.hide {
    display: none !important;
}

/* Custom Scrollbar */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(80, 15, 56, 0.3);
}

::-webkit-scrollbar-thumb {
    background: rgba(236, 186, 221, 0.6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(236, 186, 221, 0.8);
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(236, 186, 221, 0.6) rgba(80, 15, 56, 0.3);
    overflow-x: hidden; /* Предотвращаем горизонтальный скролл */
    max-width: 100vw; /* Ограничиваем ширину viewport */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    padding-top: 75px; /* Отступ для фиксированного header */
    overflow-x: hidden; /* Предотвращаем горизонтальный скролл */
    max-width: 100vw; /* Ограничиваем ширину viewport */
}

/* Глобальные правила для секций */
section:not(.hero-section):not(.struggling-section) {
    position: relative;
    overflow: hidden; /* Обрезаем blur элементы от других секций */
    z-index: 2; /* Выше Hero секции */
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(80, 15, 56, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(236, 186, 221, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    margin: 0 auto;
    height: 75px;
    margin: 0 auto;
    padding: 0 100px;
    display: flex;
    justify-content: center;
}

.container-1440 {
    max-width: 1440px;
}

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

.header-left {
    flex: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.site-logo img {
    height: 39px;
    width: auto;
}

.site-title a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4rem;
}

.nav-menu a {
    color: #CA9BB7;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.75s ease;
}

.nav-menu a:hover {
    color: var(--white);
    opacity: 0.8;
    text-shadow: 0 0 25px rgba(215, 186, 204);
}

.btn-download-app {
    background: #ECBADD66;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 13px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.5s ease;
    border: none;
    cursor: pointer;
}

.btn-download-app:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(236, 186, 221, 0.6);
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: rgba(236, 186, 221, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 1001;
    transition: all 0.3s ease;
    position: relative;
    align-items: center;
    justify-content: center;
}

/* Скрываем на больших экранах */
@media (min-width: 1200px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

.mobile-menu-toggle:hover {
    background: rgba(236, 186, 221, 0.5);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(236, 186, 221, 0.4);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(80, 15, 56, 1);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    justify-content: flex-start;
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Header */
.mobile-menu-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 75px;
    background: rgba(80, 15, 56, 1);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 1002;
    border-bottom: 1px solid rgba(236, 186, 221, 0.2);
    opacity: 1;
    transform: none;
    transition: none;
}

.mobile-menu-logo {
    flex: 1;
}

.mobile-menu-logo img {
    height: 39px;
    width: auto;
}

.mobile-menu-close {
    position: relative;
    background: rgba(236, 186, 221, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: rgba(236, 186, 221, 0.5);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(236, 186, 221, 0.4);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    text-align: center;
    min-height: calc(100vh - 75px);
    opacity: 0;
    transition: opacity 0.5s ease 0.2s;
}

.mobile-menu-overlay.active .mobile-menu-content {
    opacity: 1;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.mobile-nav-menu li {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(236, 186, 221, 0.2);
}

.mobile-nav-menu li:last-child {
    border-bottom: 1px solid rgba(236, 186, 221, 0.2);
}

.mobile-nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.mobile-nav-menu a:hover {
    color: #ECBADD;
    text-shadow: 0 0 25px rgba(215, 186, 204);
}

.mobile-menu-actions {
    margin: 3rem 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-scan-btn {
    display: inline-block;
    transition: all 0.3s ease;
}

.mobile-scan-btn:hover {
    transform: translateY(-2px);
}

.app-store-btn-mobile {
    height: 60px;
    width: auto;
    max-width: 200px;
}

/* Mobile Social Icons */
.mobile-social-icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.mobile-social-icon {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-social-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.mobile-social-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.mobile-social-icon:hover img {
    filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(300deg);
}

.mobile-menu-footer {
    padding: 1rem 0;
    margin-top: auto;
}

.mobile-menu-footer p {
    color: #ECBADD;
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin-top: 50px;
}

/* Footer Styles */
.site-footer {
    margin-top: 100px;
    color: var(--white);
    padding-top: 100px;
    padding-bottom: 30px;
    border-top: 1px solid #ecbadd25;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 0 100px;
}

.footer-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    height: 39px;
    width: auto;
} 

.footer-column h3 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: #CA9BB7;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.5s ease;
}

.footer-column a:hover {
    color: var(--white);
    text-shadow: 0 0 25px rgba(215, 186, 204);
}

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

.social-icon {
    color: var(--white);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.5s ease;
    opacity: 0.8;
}

.social-icon:hover {
    color: #d7bacc;
    opacity: 1;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: right;
    padding-top: 1rem;
    padding-right: 100px;
}

.footer-bottom p {
    color: #CA9BB7;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    margin: 0;
}

/* Hero Section Styles */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible; /* Позволяем blur выходить за границы Hero секции */
    z-index: 1; /* Обеспечиваем слоистость */
    margin-top: 60px;
}

/* Hero Section Z-index Hierarchy:
   z-index: 0  = Blur элементы (фон)
   z-index: 1  = Hero секция общая
   z-index: 2  = Контейнеры кроссовок (.left-shoes)
   z-index: 3  = Изображение кроссовок (.shoes-image)
   z-index: 4  = Контейнеры телефонов (.left-phone, .right-phone)
   z-index: 5  = Изображения телефонов (.left-phone-image, .right-phone-image)
   z-index: 10 = Центральный контент (.hero-center)
*/

/* Hero blur-blob elements - positioned according to design mockup */
.hero-blur-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -999;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    mix-blend-mode: normal;
}

/* Blur элементы теперь позиционируются относительно своих родительских hero-item контейнеров */

/* Blur рядом с кроссовками - относительно .left-shoes контейнера */
.left-shoes .blur-near-shoes {
    top: -100px; /* поднял выше кроссовок */
    left: -80px; /* левее кроссовок */
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
}

/* Blur рядом с левым телефоном - относительно .left-phone контейнера */
.left-phone .blur-near-left-phone {
    top: -80px; /* поднял выше телефона */
    left: -120px; /* левее телефона */
    width: 400px;
    height: 500px;
    background: rgba(255, 255, 255, 0.12);
}

/* Blur рядом с правым видео - относительно .right-phone контейнера */
.right-phone .blur-near-right-phone {
    top: -40px; /* выше видео */
    right: -100px; /* правее видео */
    width: 450px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
}

/* Blur рядом с рубашкой - относительно .right-shirt контейнера */
.right-shirt .blur-near-shirt {
    top: 150px; /* ниже рубашки */
    right: -80px; /* правее рубашки */
    width: 300px;
    height: 350px;
    background: rgba(255, 255, 255, 0.09);
}

/* ===================
   ДОПОЛНИТЕЛЬНЫЕ BLUR ЭЛЕМЕНТЫ ДЛЯ КРОССОВОК
   =================== */

/* Дополнительный blur выше кроссовок */
.left-shoes .blur-above-shoes {
    top: -170px; /* поднял еще выше */
    left: 10px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.06);
}

/* Дополнительный blur слева от кроссовок */
.left-shoes .blur-left-of-shoes {
    top: 20px;
    left: -150px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
}

/* ===================
   ДОПОЛНИТЕЛЬНЫЕ BLUR ЭЛЕМЕНТЫ ДЛЯ ЛЕВОГО ТЕЛЕФОНА
   =================== */

/* Большой blur позади левого телефона */
.left-phone .blur-behind-left-phone {
    top: -200px;
    left: -200px;
    width: 350px;
    height: 450px;
    background: rgba(255, 255, 255, 0.08);
}

/* Blur ниже левого телефона */
.left-phone .blur-below-left-phone {
    top: 250px;
    left: -50px;
    width: 280px;
    height: 300px;
    background: rgba(255, 255, 255, 0.07);
}

/* ===================
   ЦЕНТРАЛЬНЫЕ BLUR ЭЛЕМЕНТЫ
   =================== */

/* Центральный blur вверху */
.hero-center .blur-center-top {
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 200px;
    background: rgba(255, 255, 255, 0.04);
}

/* Центральный blur внизу */
.hero-center .blur-center-bottom {
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 350px;
    background: rgba(255, 255, 255, 0.05);
}

/* ===================
   ДОПОЛНИТЕЛЬНЫЕ BLUR ЭЛЕМЕНТЫ ДЛЯ ПРАВОГО ТЕЛЕФОНА
   =================== */

/* Blur выше правого телефона */
.right-phone .blur-above-right-phone {
    top: -100px;
    right: 20px;
    width: 250px;
    height: 200px;
    background: rgba(255, 255, 255, 0.07);
}

/* Blur справа от правого телефона */
.right-phone .blur-right-of-phone {
    top: 100px;
    right: -180px;
    width: 320px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
}

/* ===================
   ДОПОЛНИТЕЛЬНЫЕ BLUR ЭЛЕМЕНТЫ ДЛЯ РУБАШКИ
   =================== */

/* Дополнительный blur ниже рубашки */
.right-shirt .blur-below-shirt {
    top: 250px;
    right: -30px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.08);
}

/* Blur справа от рубашки */
.right-shirt .blur-right-of-shirt {
    top: 50px;
    right: -200px;
    width: 280px;
    height: 350px;
    background: rgba(255, 255, 255, 0.06);
}

/* Animations removed - blur-blobs are now static */

/* Additional blur blobs */
.blur-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

/* Hero blur-blob styles removed */

/* Float animation removed - all blur-blobs are now static */

.hero-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 75px 200px 75px;
    position: relative;
    overflow: visible; /* Позволяем blur выходить за контейнер */
}

.hero-left,
.hero-right {
    flex: 1;
    position: relative;
    overflow: visible;
}

.hero-center {
    flex: 1.5;
    text-align: center;
    position: relative;
    width: 800px;
    max-width: 800px;
    margin-top: 150px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-title .highlight {
    color: #ECBADD;
    text-shadow: 0 0 20px rgba(236, 186, 221, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    color: #CA9BB7;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.btn-app-store {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-app-store:hover {
    transform: translateY(-2px);
}

.app-store-btn {
    height: 60px;
    width: auto;
}

.hero-item {
    position: absolute;
    overflow: visible;
}

.left-shoes {
    top: 175px;
    left: 12%;
    z-index: 500;
    isolation: isolate;
}

.right-shirt {
    top: 130px;
    right: -70px;
    z-index: 1;
}

.left-phone {
    top: 180px;
    left: 0%;
    z-index: 1000;
    isolation: isolate;
}

.right-phone {
    top: 20px;
    right: 0%;
    z-index: 4;
}

.left-phone-image {
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1001;
    isolation: isolate;
}

.right-phone-image {
    max-width: 385px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 5; /* Поверх blur элементов */
}

/* Video specific styles */
video.right-phone-image {
    object-fit: cover;
    border-radius: 8px;
}

.phone-video {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
}

.shoes-image {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 501;
    isolation: isolate;
}

.shirt-image {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 5; /* Поверх blur элементов */
}

/* Mobile Hero Visual - hidden by default on desktop */
.hero-mobile-visual {
    display: none;
}

/* Struggling Section Styles */
.struggling-section {
    margin: 150px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible; /* Позволяем blur из Hero секции перекрывать */
    z-index: 2; /* Выше Hero секции */
    background: var(--bg);
}

.struggling-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
    display: flex;
    align-items: center;
}

.struggling-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    max-height: 550px;
    background: #D5AFC71A;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin: 0 4rem;
    z-index: 11;
}

.struggling-left {
    flex: 0.35;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.woman-image-wrapper {
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: -6px;
}

.woman-image {
    width: 400px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.struggling-right {
    flex: 0.65;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 2rem;
}

.struggling-content {
    max-width: 100%;
}

.struggling-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white);
}

.struggling-title .highlight-text {
    color: #ECBADD;
    text-shadow: 0 0 20px rgba(236, 186, 221, 0.5);
}

.struggling-description {
    font-size: 1.2rem;
    color: #CA9BB7;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    padding-right: 25%;
}

.btn-app-store-struggling {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-app-store-struggling:hover {
    transform: translateY(-2px);
}

.app-store-btn-struggling {
    height: 60px;
    width: auto;
}

/* Struggling Section Blur Blobs */
.struggling-blur-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 10;
}

.woman-image-container {
    position: relative;
    display: inline-block;
}

.woman-image-container .blob-under-woman {
    position: absolute;
    bottom: -50px;
    left: 50px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    z-index: -1;
}

.woman-image-container .blob-under-woman-outside {
    position: absolute;
    bottom: 100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    z-index: -1;
}

.woman-image-container .blob-bottom {
    position: absolute;
    bottom: -100px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    z-index: -1;
}

/* Road Map Section */
.roadmap-section {
    padding: 150px 0 200px 0;
    background: var(--bg);
    position: relative;
    overflow: hidden; /* Обрезаем blur элементы */
    z-index: 2;
    min-height: 100vh;
}

.roadmap-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.roadmap-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(80, 15, 56, 1) 0%,
        rgba(80, 15, 56, 0.8) 20%,
        rgba(80, 15, 56, 0) 40%,
        rgba(80, 15, 56, 0) 60%,
        rgba(80, 15, 56, 0.8) 80%,
        rgba(80, 15, 56, 1) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.roadmap-bg-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.roadmap-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
    position: relative;
    z-index: 2;
}

.roadmap-item {
    display: flex;
    align-items: center;
    margin-bottom: 25rem;
    gap: 4rem;
}

.roadmap-item:last-child {
    margin-bottom: 0;
}

/* Solution 1: Text left, image right */
.solution-1 {
    flex-direction: row;
}

/* Solution 2: Image left, text right */
.solution-2 {
    flex-direction: row;
}

/* Solution 3: Text left, image right */
.solution-3 {
    flex-direction: row;
}

.roadmap-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.roadmap-text {
    max-width: 500px;
}

.roadmap-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.roadmap-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #DBCBD5;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.roadmap-media-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.roadmap-media-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.roadmap-image {
    width: 429px;
    height: 520px;
    object-fit: cover;
    border-radius: 40px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.roadmap-video {
    width: 429px;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.btn-app-store-roadmap {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-app-store-roadmap:hover {
    transform: translateY(-2px);
}

.app-store-btn-roadmap {
    height: 60px;
    width: auto;
}

/* Roadmap blur blobs */
.roadmap-blur-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    animation: none;
}

.blob-solution-1 {
    top: -5%;
    right: 0%;
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, 0.08);
}

/* Discover Section */
.discover-section {
    background: var(--bg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 100px;
    z-index: 50;
}

.discover-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.discover-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 55;
}

.discover-icon {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.discover-icon-image {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 11;
}

.discover-blur-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(ellipse at center, rgba(255, 205, 238, 0.9) 0%, rgba(236, 186, 221, 0.7) 50%, rgba(255, 255, 255, 0.3) 100%);
    border-radius: 50% 40% 60% 30%;
    filter: blur(50px);
    z-index: 10;
}

.discover-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 2rem 0;
    text-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

.discover-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: #DBCBD5;
    margin: 0 auto;
    opacity: 0.9;
}

.discover-cta {
    margin-top: 2rem;
}

.btn-download-color-match {
    display: inline-block;
    background: rgba(236, 186, 221, 0.3);
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-download-color-match:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 186, 221, 0.4);
    background: rgba(236, 186, 221, 0.4);
}

.blob-solution-3 {
    bottom: -7%;
    right: 0%;
    width: 330px;
    height: 450px;
    background: rgba(255, 255, 255, 0.08);
    animation: none;
    max-width: 50vw;
}

/* Designed By Section */
.designed-by-section {
    padding: 6rem 0;
    background: var(--bg);
    position: relative;
    display: flex;
    align-items: center;
}

.designed-by-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
    width: 100%;
}

.designed-by-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.designed-by-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.phone-video-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.phone-julia {
    max-width: 700px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.designed-by-right {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.designed-by-text {
    max-width: 600px;
}

.designed-by-title {
    font-family: 'Inter', sans-serif;
    font-size: 65px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.designed-by-title .highlight-text {
    color: #FFCDEE;
    text-shadow: 0 0 20px rgba(255, 205, 238, 0.5);
}

.designed-by-description {
    width: 81%;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #DBCBD5;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.designed-by-benefit {
    width: 81%;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #DBCBD5;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.quote-block {
    width: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    position: relative;
    padding: 40px;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
}

.quote-sign {
    width: 60px;
    height: auto;
    opacity: 0.6;
}

.quote-text {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    padding-right: 10px;
    position: relative;
    z-index: 2;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.designed-by-section .author-handle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #FFCDEE;
    text-shadow: 0 0 10px rgba(255, 205, 238, 0.5);
    font-weight: 500;
}

.author-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.8;
}

.cta-section {
    margin-top: 2rem;
}

.cta-link {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.cta-link:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

/* Designed By Section Blur Blobs */
.designed-by-blur-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: none;
}

.blob-under-phone {
    position: absolute;
    bottom: 0;
    left: 20%;
    transform: translateX(-50%);
    width: 500px;
    height: 700px;
    background: rgba(255, 255, 255, 0.15);
}

/* Seamless Matching Section */
.seamless-matching-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.seamless-matching-container {
    max-width: 1440px;
    width: 1440px;
    margin: 0 auto;
}

.seamless-matching-wrapper {
    display: flex;
    width: 1240px;
    margin: 0 auto;
    align-items: center;
    min-height: 600px;
    position: relative;
}

.seamless-matching-left {
    flex: 0.6;
    display: flex;
    align-items: center;
}

.seamless-matching-title {
    font-family: 'Inter', sans-serif;
    font-size: 65px;
    font-weight: 400;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 2rem 0;
}

.seamless-matching-description {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    color: #FFFFFF;
    margin: 0;
    opacity: 0.9;
}

.seamless-matching-right {
    flex: 0.4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup-wrapper {
    position: relative;
    max-width: 300px;
}

.phone-image-container {
    position: relative;
    display: inline-block;
}

.seamless-matching .phone-mockup {
    width: 500px;
    height: auto;
    display: block;
}

.seamless-matching-title span {
    color: #FFCDEE;
    text-shadow: 0 0 20px rgba(255, 205, 238, 0.5);
    font-weight: 500;
}

.seamless-matching-blur-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: none;
    z-index: 10;
}

.blob-right-phone {
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

/* 3 Steps Section */
.three-steps-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.three-steps-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.three-steps-header {
    text-align: center;
    margin-bottom: 6rem;
}

.three-steps-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
    width: 750px;
    margin: 0 auto;
}

.three-steps-title span {
    color: #FFCDEE;
    text-shadow: 0 0 20px rgba(255, 205, 238, 0.5);
    font-weight: 500;
}

.three-steps-content {
    position: relative;
}

.steps-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    min-height: 500px;
}

.timeline-line {
    position: absolute;
    top: 70px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.1) 20%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 80%, 
        rgba(255, 255, 255, 0.3) 100%);
    z-index: 1;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    justify-content: flex-start;
}

.step-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(213, 175, 199, 0.25);
}

.step-marker {
    width: 20px;
    height: 20px;
    background: #7D4567;
    border-radius: 50%;
    margin-top: 6px;
    margin-bottom: 4rem;
    position: relative;
    z-index: 3;
}

.step-marker-active {
    margin-top: 0;
    width: 36px;
    height: 36px;
    background: radial-gradient(circle at 5% 70%, #7D4567 0%, #EC96C1 70%, #EC96C1 100%);
    box-shadow: 0 0 20px rgba(213, 175, 199, 0.6);
}

.step-illustration {
    margin-bottom: 2rem;
    max-width: 300px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-image {
    width: 100%;
    height: auto;
    display: block;
}

.step-2 .step-image {
    margin-top: 25px;
    width: 80%;
}

.step-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.4;
}

/* Step blur blobs */
.step-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: none;
}

.step-blob-left {
    top: 20%;
    left: -1%;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.1);
}

.step-blob-right {
    top: 20%;
    right: -1%;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.1);
}

/* In Real Time Section */
.in-real-time-section {
    padding: 4rem 0;
    position: relative;
    overflow: visible;
    margin: 0 auto;
}

.in-real-time-container {
    max-width: 1240px;
    width: 1240px;
    margin: 0 auto;
}

.in-real-time-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    min-height: 600px;
}

.in-real-time-left {
    flex: 1;
    max-width: 500px;
    margin-left: 100px;
}

.in-real-time-title {
    font-family: 'Inter', sans-serif;
    font-size: 55px;
    font-weight: 500;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 2rem 0;
}
.in-real-time-title span {
    color: #FFCDEE;
    text-shadow: 0 0 20px rgba(255, 205, 238, 0.5);
    font-weight: 500;
}

.in-real-time-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: #DBCBD5;
    margin: 0 0 3rem 0;
    opacity: 0.9;
}

.in-real-time-cta {
    margin-top: 2rem;
}

.app-store-btn {
    height: 60px;
    width: auto;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.in-real-time-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-wrapper {
    position: relative;
    max-width: 400px;
    width: 100%;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.phone-mockup {
    width: 320%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    mask-image: 
      linear-gradient(to right, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 1) 75%, 
        rgba(0, 0, 0, 0) 100%),
      linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 1) 95%, 
        rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: 
      linear-gradient(to right, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 1) 75%, 
        rgba(0, 0, 0, 0) 100%),
      linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 1) 95%, 
        rgba(0, 0, 0, 0) 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }

.phone-video {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 30px;
    z-index: 1;
    position: relative;
}

/* In Real Time blur blob */
.in-real-time-blur-blob {
    position: absolute;
    top: 21%;
    right: -15%;
    width: 400px;
    height: 550px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(40px);
    animation: none;
}

/* For Instant Match Section */
.for-instant-match-section {
    padding: 4rem 0;
    position: relative;
    overflow: visible;
    margin: 0 auto;
}

.for-instant-match-container {
    max-width: 1240px;
    width: 1240px;
    margin: 0 auto;
}

.for-instant-match-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    min-height: 600px;
}

.for-instant-match-left {
    flex: 1;
    max-width: 500px;
    margin-left: 100px;
}

.for-instant-match-title {
    font-family: 'Inter', sans-serif;
    font-size: 55px;
    font-weight: 500;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 2rem 0;
}

.for-instant-match-title span {
    color: #FFCDEE;
    text-shadow: 0 0 20px rgba(255, 205, 238, 0.5);
    font-weight: 500;
}

.for-instant-match-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color:#DBCBD5;
    margin: 0 0 3rem 0;
    opacity: 0.9;
}

.for-instant-match-cta {
    margin-top: 2rem;
}

.for-instant-match-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* For Instant Match blur blob */
.for-instant-match-blur-blob {
    position: absolute;
    top: 21%;
    right: -15%;
    width: 400px;
    height: 550px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(40px);
    animation: none;
}

/* What Users Say Section */
.what-users-say-section {
    background: var(--bg);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.what-users-say-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
    width: 100%;
}

.what-users-say-header {
    text-align: center;
    margin-bottom: 4rem;
}

.what-users-say-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
}

.what-users-say-title .highlight-text {
    color: #FFCDEE;
    text-shadow: 0 0 20px rgba(255, 205, 238, 0.5);
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(255, 205, 238, 0.25);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    z-index: 0;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.star {
    color: #FFCDEE;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 205, 238, 0.5);
}

.user-name {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-headline {
    font-family: 'Inter', sans-serif;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #DBCBD5;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* What Users Say blur blobs */
.what-users-say-blur-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: none;
}

.what-users-say-section .blob-left {
    top: 45%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
}

.what-users-say-section .blob-right {
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
}





















/* ========================================
   TABLET STYLES (768px - 1199px)
   ======================================== */
@media (max-width: 1199px) {
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    /* Hero Section for Tablet */
    .hero-section {
        margin-top: 0;
        padding-bottom: 0;
        min-height: auto;
    }
    
    .hero-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 50px;
        min-height: auto;
        position: relative;
    }
    
    .hero-left,
    .hero-right {
        display: none; /* Скрываем боковые элементы на планшетах */
    }
    
    .hero-center {
        order: 0;
        flex: none;
        width: 100%;
        max-width: 600px;
        margin-top: 50px;
        margin-bottom: 30px;
        position: relative;
        z-index: 2;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        margin: 1.5rem auto 2.5rem;
        max-width: 500px;
    }
    
    /* Mobile Visual Container */
    .hero-mobile-visual {
        display: block;
        position: relative;
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        height: 800px;
    }
    
    .mobile-phone-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .mobile-phone-image {
        position: absolute;
        width: 560px;
        height: auto;
        left: 50%;
        top: 0;
        transform: translateX(-60%);
        z-index: 2;
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    }
    
    .mobile-shirt-image {
        position: absolute;
        width: 500px;
        height: auto;
        right: 20px;
        bottom: 100px;
        z-index: 1;
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    }
    
    /* Mobile blur effect */
    .mobile-blur-effect {
        position: absolute;
        width: 700px;
        height: 700px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        filter: blur(60px);
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 0;
    }
    
    /* Hide desktop blur elements */
    .hero-blur-blob {
        display: none;
    }
    
    .header-container {
        padding: 0 2rem;
    }
    
    .mobile-menu-header {
        padding: 0 2rem;
    }
    
    /* Footer Tablet */
    .footer-top {
        flex-wrap: wrap;
        padding: 0 2rem;
        gap: 1rem;
        margin-bottom: 4rem;
    }
    
    .footer-branding {
        order: -1;
        flex-basis: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-column {
        flex: 1;
        min-width: calc(50% - 0.5rem);
        text-align: left;
    }
    
    .footer-bottom {
        text-align: left;
        padding: 1rem 2rem;
    }

    /* Struggling Section for Tablet */
    .struggling-section {
        padding: 0 5%;
    }
    
    .struggling-container {
        padding: 0;
    }
    
    .struggling-wrapper {
        margin: 0;
        padding: 2rem 2rem 0; /* Верхний и боковые отступы, нижний убран */
        overflow: visible; /* Позволяем изображению выходить за границы */
        align-items: flex-end; /* Выравниваем дочерние элементы по низу */
    }
    
    .struggling-left {
        flex: 0.35;
        position: relative;
        height: 100%; /* Занимаем всю высоту */
        /* Удалены display: flex, align-items, justify-content */
        z-index: 1;
    }
    
    .woman-image-wrapper {
        position: relative;
        margin-bottom: -6px; /* Выступ за нижнюю границу */
        left: -30px; /* Сдвиг влево */
    }

    .woman-image-container {
        left: auto; /* Сбрасываем left */
        bottom: auto; /* Сбрасываем bottom */
    }
    
    .struggling-right {
        flex: 0.65;
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column; /* Изменяем на column для выравнивания текста */
        align-items: flex-start; /* Выравниваем элементы по левому краю */
        justify-content: center; /* Центрируем по вертикали */
        padding-left: 2rem;
    }

    .struggling-title {
        font-size: 38px; /* Оставляем 2.8rem, так как 38px может быть слишком маленьким для rem */
        margin-top: 25px;
        text-align: left; /* Выравниваем текст по левому краю */
    }

    .struggling-description {
        font-size: 1rem;
        padding-right: 20%;
        text-align: left; /* Выравниваем текст по левому краю */
    }

    .woman-image {
        width: 250px;
        transform: none; /* Убираем отзеркаливание */
    }
    .app-store-btn-struggling {
        margin-bottom: 15px;
    }
    .roadmap-container {
        padding: 0 5%;
    }

    .roadmap-video,
    .roadmap-image {
        width: 282px;
        height: auto;
    }

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

    .roadmap-item {
        gap: 0;
    }


    .designed-by-content {
        flex-direction: column-reverse;
    }

    .designed-by-text,
    .designed-by-description,
    .designed-by-benefit {
        width: 100%;
    }

    .seamless-matching-section {
        margin-top: 100px;
        padding: 0;
    }

    .seamless-matching-wrapper {
        margin: 0 5%;
        flex-direction: column;
        align-items: stretch;
        min-height: 1000px;
    }

    .seamless-matching-right {
        min-height: 675px;
    }

    .phone-mockup {
        left: -100px;
    }

    .seamless-matching-title  {
        font-size: 50px;
    }

    .seamless-matching-description {
        font-size: 18px;
    }

    .seamless-matching-description {
        width: 550px;
    }

    .three-steps-title {
        font-size: 50px;
    }

    .in-real-time-content,
    .for-instant-match-content {
        flex-direction: column-reverse;
    }

    .in-real-time-content .phone-mockup,
    .for-instant-match-content .phone-mockup {
        left: 50%;
        width: 400%;
    }

    .in-real-time-content .phone-video,
    .for-instant-match-content .phone-video {
        width: 95%;
    }
    
    .in-real-time-container,
    .for-instant-match-container {
        width: 100%;
    }

    .in-real-time-blur-blob,
    .for-instant-match-blur-blob {
        right: -50%;
    }

    .in-real-time-left, 
    .for-instant-match-left {
        margin-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;

    }

    .for-instant-match-title,
    .in-real-time-title {
        font-size: 50px;
        text-align: center;
    }

    .for-instant-match-description, 
    .in-real-time-description {
        font-size: 18px;
        text-align: center;
    }
    
    .what-users-say-container {
        margin: 50px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .what-users-say-title {
        font-size: 50px;
    }

    .discover-title {
        font-size: 50px;
    }
    
    .discover-description {
        font-size: 18px;
    }
}


















/* ========================================
   MOBILE STYLES (< 768px)
   ======================================== */
@media (max-width: 767px) {
    .btn-download-app {
        display: none;
    }
    
    /* Header Mobile */
    .header-container {
        padding: 0 1rem;
    }
    
    /* Logo Mobile */
    .site-logo img {
        height: 30px;
        width: auto;
    }
    
    /* Mobile Menu Header */
    .mobile-menu-header {
        padding: 0 1rem;
    }
    
    .mobile-menu-logo img {
        height: 30px;
        width: auto;
    }
    
    .header-content {
        gap: 1rem;
    }
    
    /* Hero Mobile Adjustments */
    .hero-section {
        padding-top: 30px;
    }
    
    .hero-container {
        padding: 0 1.5rem;
    }
    
    .hero-center {
        margin-top: 30px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        margin: 1rem auto 2rem;
        max-width: 350px;
    }
    
    .app-store-btn {
        height: 50px;
    }
    
    /* Mobile Visual Adjustments */
    .hero-mobile-visual {
        height: 700px;
        max-width: 700px;
    }
    
    .mobile-shirt-image {
        width: 500px;
        right: -125px;
        bottom: 0px;
    }
    
    .mobile-blur-effect {
        width: 600px;
        height: 600px;
        top: 40%;
    }

    .footer-top {
        padding: 0 1rem;
    }

    .struggling-wrapper {
        flex-direction: column-reverse;
    }

    .woman-image {
        width: 250px;
        transform: scaleX(-1);
    }
    
    .woman-image-container {
        left: auto;
        right: -100px;
    }

    .struggling-left {
        margin-top: -150px;
    }

    .struggling-title {
        font-size: 28px;
    }

    .roadmap-section {
        padding: 250px 0 150px 0;
    }
    
    .roadmap-item.solution-1,
    .roadmap-item.solution-3 {
        flex-direction: column-reverse;
    }

    .roadmap-item.solution-2 {
        flex-direction: column;
    }

    .roadmap-video,
    .roadmap-image {
        width: 100%;
        height: auto;
    }

    .roadmap-text {
        margin-top: 50px;
    }

    .roadmap-title {
        font-size: 24px;
    }

    .roadmap-item {
        margin-bottom: 10rem;
    }

    .roadmap-bg-image {
        display: none;
    }

    .designed-by-container {
        padding: 0 1.5rem !important;
    }

    .blob-solution-3 {
        bottom: unset;
    }

    .designed-by-section {
        padding-top: 0;
    }

    .designed-by-title {
        font-size: 2rem;
    }

    .designed-by-content {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .designed-by-left,
    .designed-by-right {
        flex: none;
        width: 100%;
    }

    .designed-by-description,
    .designed-by-benefit {
        width: 100%;
    }

    .quote-block {
        width: 100%;
    }

    .phone-julia {
        max-width: 100%;
    }

    .phone-video-wrapper,
    .designed-by-left {
        justify-content: center;
    }

    .phone-julia {
        max-width: 75%;
    }

    .blob-under-phone  {
        height: 500px;
    }

    .seamless-matching-title {
        font-size: 32px;
    }

    .seamless-matching-description {
        font-size: 16px;
    }

    .seamless-matching-wrapper {
        margin: 0 1.5rem;
        min-height: 0;
    }

    .seamless-matching .phone-mockup {
        left: -400px;
        width: 300px;
    }

    .seamless-matching-blur-blob.blob-right-phone {
        right: 150px;
    }
    
    .seamless-matching-left {
        flex: none;
    }

    .seamless-matching-right {
        min-height: 550px;
    }

    .seamless-matching-text {
        width: 100%;
    }

    .seamless-matching-description {
        width: 350px;
    }

    .steps-timeline {
        flex-direction: column;
        align-items: center;
    }

    .steps-timeline .step-marker,
    .steps-timeline .timeline-line,
    .steps-timeline .step-blob {
        display: none;
    }

    .three-steps-title {
        font-size: 32px;
    }
    
    .step-item.step-2,
    .step-item.step-3 {
        margin-top: 75px;
    }

    .step-description {
        margin-top: -20px;
    }

    .for-instant-match-title,
    .in-real-time-title {
        font-size: 32px;
        text-align: center;
    }

    .for-instant-match-description, 
    .in-real-time-description {
        font-size: 16px;
        width: 80%;
        text-align: center;
    }

    .in-real-time-content .phone-mockup,
    .for-instant-match-content .phone-mockup {
        width: 300%;
    }

    .in-real-time-content .phone-video,
    .for-instant-match-content .phone-video {
        width: 70%;
    }

    .in-real-time-content .phone-wrapper,
    .for-instant-match-content .phone-wrapper {
        height: 500px;
    }


    .what-users-say-title {
        font-size: 32px;
    }

    .what-users-say-container {
        padding: 0 20px;
    }

    .what-users-say-blur-blob.blob-left,
    .what-users-say-blur-blob.blob-right{
        display: none;
    }

    .discover-title {
        font-size: 32px;
    }
    
    .discover-description {
        font-size: 16px;
    }

    .discover-container {
        padding: 0 20px;
    }

    .three-steps-title {
        max-width: 350px;
    }

}

/* Page Styles */
.site-main {
    min-height: 80vh;
    padding: 4rem 0;
    background: var(--bg);
}

.site-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.site-main article {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-main article h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}

.site-main .entry-content {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #DBCBD5;
}

.site-main .entry-content h2 {
    font-size: 2rem;
    color: var(--white);
    margin: 2rem 0 1rem 0;
}

.site-main .entry-content h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin: 1.5rem 0 1rem 0;
}

.site-main .entry-content p {
    margin-bottom: 1.5rem;
}

.site-main .entry-content a {
    color: #FF6B9D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-main .entry-content a:hover {
    color: #FF8FB3;
}

/* Tablet Styles for Pages */
@media (max-width: 1199px) {
    .site-main .container {
        padding: 0 1.5rem;
    }
    
    .site-main article {
        padding: 2rem;
    }
    
    .site-main article h1 {
        font-size: 2.5rem;
    }
}

/* Mobile Styles for Pages */
@media (max-width: 767px) {
    .site-main {
        padding: 2rem 0;
    }
    
    .site-main .container {
        padding: 0 1rem;
    }
    
    .site-main article {
        padding: 1.5rem;
    }
    
    .site-main article h1 {
        font-size: 2rem;
    }
    
    .site-main .entry-content {
        font-size: 1rem;
    }
    
    .site-main .entry-content h2 {
        font-size: 1.5rem;
    }
    
    .site-main .entry-content h3 {
        font-size: 1.2rem;
    }
}