/* ============================================
   BRAND25 — Apple-style Landing
   Ультра-компактный лендинг с glassmorphism
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

:root {
    /* Цветовая палитра — мягкие, премиальные */
    --color-bg: #F5F7FA;
    --color-bg-milk: #FAFBFC;
    --color-bg-glass: rgba(255, 255, 255, 0.7);
    --color-text: #1D1D1F;
    --color-text-light: #6E6E73;
    --color-accent: #007AFF;
    --color-accent-light: #5AC8FA;
    
    /* Градиенты */
    --gradient-soft: linear-gradient(135deg, #F5F7FA 0%, #E8ECF1 100%);
    --gradient-blue: linear-gradient(135deg, #E8F4FD 0%, #F0F8FF 100%);
    
    /* Тени — мягкие, премиальные */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    /* Типографика */
    --font-primary: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'Neue Haas Grotesk Display', 'Neue Haas Grotesk Text', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    
    /* Отступы */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 120px;
    
    /* Контейнер */
    --container-width: 1200px;
    --container-padding: 24px;
}

body {
    font-family: var(--font-primary);
    font-size: 17px;
    line-height: 1.47059;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern" 1, "liga" 1;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* Дополнительные настройки типографики для SF Pro и Neue Haas Grotesk */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: -0.015em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button, input, select, textarea {
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   BLOCK 1: HERO SPLIT SCREEN
   ============================================ */

.hero-split {
    display: flex;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Заблюренный фон на всю первую страницу */
.hero-blurred-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: #000000;
}

.hero-background-iframe {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    border: none;
    filter: blur(8px) brightness(0.2);
    opacity: 0.3;
    pointer-events: none;
    transform: scale(1.1);
}

.hero-blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

/* Мобильный фон с телефоном */
.mobile-phone-background {
    display: none;
}

@media (max-width: 768px) {
    .mobile-phone-background {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        overflow: hidden;
    }
    
    .mobile-phone-bg-carousel {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .mobile-phone-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 2s ease-in-out;
    }
    
    .mobile-phone-slide.active {
        opacity: 1;
        z-index: 1;
    }
    
    .mobile-phone-frame-bg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1.5);
        width: 300px;
        height: 600px;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        border-radius: 50px;
        padding: 25px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
        filter: blur(12px) brightness(0.3);
        opacity: 0.4;
    }
    
    .mobile-phone-bg-iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 30px;
        overflow: hidden;
    }
}

/* Левая часть: Контент */
.hero-content-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    padding: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.hero-content-inner {
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 3;
}

/* ============================================
   LOGO
   ============================================ */

.logo-container {
    margin-bottom: var(--spacing-lg);
}

.logo {
    font-size: clamp(36px, 5.5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    display: inline-block;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.logo:hover::before {
    left: 100%;
}

.logo:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.5),
                inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.logo-accent {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.4));
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.4));
    }
    50% {
        filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.6));
    }
}

.logo-accent::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    border-radius: 2px;
    opacity: 0.8;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.hero-title {
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin-bottom: var(--spacing-sm);
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.47059;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
}

.hero-cta {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   GLASSMORPHISM BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 980px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-glass:hover::before {
    left: 100%;
}

.btn-primary {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.5),
                inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-secondary {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-large {
    padding: 18px 36px;
    font-size: 19px;
}

/* Кнопка в стиле highlight (золотая) */
.btn-highlight-style {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #FFD700;
    padding: 18px 48px;
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 0 20px rgba(255, 215, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    animation: pulse-glow-button 2s ease-in-out infinite;
}

@keyframes pulse-glow-button {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3), 
                    inset 0 1px 0 rgba(255, 255, 255, 0.3),
                    0 0 20px rgba(255, 215, 0, 0.2);
    }
    50% {
        box-shadow: 0 6px 24px rgba(255, 215, 0, 0.4), 
                    inset 0 1px 0 rgba(255, 255, 255, 0.4),
                    0 0 30px rgba(255, 215, 0, 0.3);
    }
}

.btn-highlight-style::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-highlight-style:hover::before {
    left: 100%;
}

.btn-highlight-style:hover {
    background: rgba(255, 215, 0, 0.25);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                0 0 40px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.5);
}

/* ============================================
   HERO FEATURES
   ============================================ */

.hero-features {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 15px;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-item.feature-highlight {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    color: #FFD700;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 0 20px rgba(255, 215, 0, 0.2);
    position: relative;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3), 
                    inset 0 1px 0 rgba(255, 255, 255, 0.3),
                    0 0 20px rgba(255, 215, 0, 0.2);
    }
    50% {
        box-shadow: 0 6px 24px rgba(255, 215, 0, 0.4), 
                    inset 0 1px 0 rgba(255, 255, 255, 0.4),
                    0 0 30px rgba(255, 215, 0, 0.3);
    }
}

.feature-item.feature-highlight:hover {
    background: rgba(255, 215, 0, 0.25);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                0 0 40px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px) scale(1.02);
}


.feature-icon {
    width: 18px;
    height: 18px;
    color: currentColor;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Правая часть: Видео с телефоном */
.hero-examples-side {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.phone-demo-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Заблюренный фон */
.blurred-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.background-site {
    width: 100%;
    height: 120%;
    transform: scale(1.1);
    filter: blur(8px) brightness(0.2);
    opacity: 0.3;
    pointer-events: none;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Телефон мокуп */
.phone-mockup {
    position: relative;
    z-index: 10;
    width: 320px;
    height: 640px;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 0 8px rgba(255, 255, 255, 0.05),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #000000;
}

.phone-content {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.phone-site {
    width: 100%;
    height: 200%;
    border: none;
    transform: scale(1);
    animation: scroll-site 20s ease-in-out infinite;
    animation-direction: alternate;
    pointer-events: none;
}

@keyframes scroll-site {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25%);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Индикатор камеры и динамика */
.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #000000;
    border-radius: 0 0 15px 15px;
    z-index: 1;
}

.phone-frame::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #1a1a1a;
    border-radius: 3px;
    z-index: 2;
}

.examples-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    transform: scale(1.1);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: kenBurns 20s ease-in-out infinite;
}

@keyframes kenBurns {
    0%, 100% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.1) translate(-2%, -2%);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    z-index: 2;
    color: #FFFFFF;
    transform: translateY(20px);
    transition: transform 0.6s ease;
}

.carousel-slide.active .slide-content {
    transform: translateY(0);
}

.slide-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.slide-description {
    font-size: clamp(16px, 2vw, 18px);
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-indicators {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-xs);
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    width: 24px;
    border-radius: 5px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* ============================================
   BLOCK 2: WHY SECTION
   ============================================ */

.why-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) 0;
    background: #000000;
    position: relative;
}

.why-title {
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.015em;
    color: #FFFFFF;
    position: relative;
}

.why-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -1px 0 rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-sm);
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2), 
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
}

.benefit-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.benefit-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.final-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.final-cta .btn {
    position: relative;
}

.final-cta .btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
    border-radius: 0 0 980px 980px;
}

.final-cta .btn:hover::after {
    opacity: 1;
}

/* ============================================
   ORDER MODAL
   ============================================ */

.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.order-modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    z-index: 1001;
    max-width: 500px;
    width: 100%;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: var(--color-text);
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.015em;
}

.modal-subtitle {
    font-size: 17px;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    font-size: 17px;
    font-family: var(--font-primary);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
}

.form-group input::placeholder {
    color: var(--color-text-light);
}

.form-note {
    font-size: 13px;
    color: var(--color-text-light);
    text-align: center;
    margin-top: var(--spacing-xs);
}

/* ============================================
   EXAMPLES SECTION
   ============================================ */

.examples-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
}

.examples-title {
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.015em;
    color: var(--color-text);
}

.examples-subtitle {
    font-size: 19px;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.example-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.example-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.example-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--color-bg-milk);
}

.example-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.example-card:hover .example-image {
    transform: scale(1.05);
}

.example-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.example-card:hover .example-overlay {
    opacity: 1;
}

.example-link {
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.example-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.example-info {
    padding: var(--spacing-md);
}

.example-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.example-description {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.5;
}

.examples-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: var(--spacing-lg) 0;
    text-align: center;
    background: var(--color-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-text {
    font-size: 15px;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.footer-contact {
    font-size: 14px;
    color: var(--color-text-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }
    
    .hero-content-side {
        min-height: 60vh;
        padding: var(--spacing-md);
    }
    
    .hero-examples-side {
        min-height: 40vh;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 48px;
        --spacing-xl: 80px;
    }
    
    .hero-split {
        min-height: 100vh;
        flex-direction: column;
        position: relative;
    }
    
    .hero-content-side {
        flex: 1;
        min-height: auto;
        padding: var(--spacing-lg) var(--spacing-md);
        padding-bottom: 60vh;
        position: relative;
        z-index: 2;
        background: #000000;
    }
    
    .logo-container {
        text-align: center;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .logo {
        display: inline-block;
    }
    
    .hero-examples-side {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 55vh;
        min-height: 400px;
        z-index: 1;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: var(--spacing-md);
    }
    
    .phone-demo-container {
        height: 100%;
        align-items: flex-end;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        padding: 10px;
        transform: scale(0.85);
    }
    
    .background-site {
        filter: blur(8px) brightness(0.2);
        opacity: 0.3;
    }
    
    .blur-overlay {
        background: rgba(0, 0, 0, 0.7);
    }
    
    .hero-background-iframe {
        filter: blur(8px) brightness(0.2);
        opacity: 0.3;
    }
    
    .hero-blur-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: stretch;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .why-section {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }
    
    .modal-content {
        padding: var(--spacing-md);
        border-radius: 24px;
    }
    
    .slide-content {
        padding: var(--spacing-md);
    }
}

/* ============================================
   SMOOTH SCROLL
   ============================================ */

html {
    scroll-behavior: smooth;
}

/* ============================================
   SELECTION
   ============================================ */

::selection {
    background: rgba(0, 122, 255, 0.2);
    color: var(--color-text);
}