/* ========================================
   CLEAN DESIGN SYSTEM - Airbnb + Apple Style
   ======================================== */

:root {
    --primary: #FF385C;
    --primary-dark: #E31C5F;
    --secondary: #00A699;
    --gold: #FFB400;
    --dark: #222222;
    --grey-dark: #717171;
    --grey-mid: #B0B0B0;
    --grey-light: #EBEBEB;
    --grey-lighter: #F7F7F7;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Circular", "SF Pro Display", "Segoe UI", sans-serif;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: none;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Hide mobile-only elements on desktop */
.mobile-phone-preview {
    display: none;
}

/* ========================================
   CLEAN HEADER
   ======================================== */

.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(235, 235, 235, 0.6);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #5B7AC4;
    letter-spacing: -0.03em;
}

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

.location-badge {
    padding: 0.5rem 1rem;
    background: var(--grey-lighter);
    border-radius: 22px;
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--dark);
}

.header-cta {
    padding: 0.625rem 1.25rem;
    background: rgba(90, 120, 180, 0.9);
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-weight: 300;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.header-cta:hover {
    background: rgba(107, 136, 196, 1);
    transform: scale(1.02);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(-45deg, #5B7AC4, #7A95D8, #6580CC, #8AA0E0, #6E89D2, #94A8E8);
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, 
        rgba(91, 122, 196, 0.95), 
        rgba(122, 149, 216, 0.95), 
        rgba(101, 128, 204, 0.95), 
        rgba(138, 160, 224, 0.95), 
        rgba(110, 137, 210, 0.95), 
        rgba(148, 168, 232, 0.95));
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

.hero-split-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 3rem;
    align-items: flex-end;
}

.hero-content {
    text-align: left;
    color: var(--white);
    margin-top: -4rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.05em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.title-line {
    display: inline-block;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    white-space: pre;
}

.title-line .char {
    display: inline-block;
    opacity: 1;
    white-space: pre;
    will-change: transform, opacity, filter;
}

.title-line .char.fading-out {
    animation: fadeOut 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.title-line .char.fading-in {
    animation: fadeIn 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-6px) scale(0.98);
        filter: blur(4px);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(6px) scale(0.98);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.cta-primary {
    padding: 1rem 2.5rem;
    background: var(--white);
    border: none;
    border-radius: 8px;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--white);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.25rem;
    font-weight: 300;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-form-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 380px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-form-header {
    margin-bottom: 1rem;
    text-align: left;
}

.hero-form-header h3 {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.hero-form-header p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.hero-form .form-group {
    margin-bottom: 0.75rem;
}

.hero-form .form-label {
    font-size: 0.6875rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: left;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-form .form-row {
    gap: 0.75rem;
}

.hero-form input,
.hero-form select {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9375rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(107, 136, 196, 0.25) !important;
    transition: all 0.3s ease;
    font-weight: 300;
    color: var(--white);
}

.hero-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.hero-form input:focus,
.hero-form select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(107, 136, 196, 0.35) !important;
}

.hero-form input:-webkit-autofill,
.hero-form input:-webkit-autofill:hover,
.hero-form input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px rgba(107, 136, 196, 0.25) inset !important;
    -webkit-text-fill-color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.hero-form .toggle-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.hero-form .toggle-option {
    border-radius: 8px;
    padding: 0.5rem 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
}

.hero-form .toggle-option:active {
    transform: scale(0.96);
    transition: transform 0.1s ease;
}

.hero-form .toggle-option:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.hero-form .toggle-option:has(input:checked) {
    border-color: var(--white);
    background: var(--white);
    outline: none;
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
}

.hero-form .toggle-option:focus-within,
.hero-form .toggle-option input:focus,
.hero-form .toggle-option input:focus-visible {
    outline: none;
}

.hero-form .toggle-option input:checked + .toggle-content {
    color: #5B7AC4;
}

.hero-form .toggle-option input:checked + .toggle-content .toggle-icon {
    color: #5B7AC4;
}

.hero-form .toggle-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    background: none;
    border: none;
    padding: 0;
    height: 100%;
}

.hero-form .toggle-icon {
    display: none;
}

.hero-form .toggle-title {
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.hero-form .toggle-option input:checked + .toggle-content .toggle-title {
    color: #5B7AC4;
}

.hero-form .toggle-desc {
    font-size: 0.75rem;
    display: none;
}

.hero-form .submit-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-form .submit-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-form .checkbox-container {
    font-size: 0.8125rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
    display: none;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   VIDEO SECTION - BUSINESS SHOWCASE
   ======================================== */

.video-section {
    padding: 1.5rem;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    min-height: auto;
}

.video-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 3rem;
}

.morph-badge {
    position: relative;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.morph-badge-left {
    animation: flyInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
}

.morph-badge-right {
    animation: flyInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
}

.morph-label {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: rgba(91, 122, 196, 0.9);
    text-transform: uppercase;
}

@keyframes flyInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes flyInRight {
    0% {
        opacity: 0;
        transform: translateX(60px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.morph-icon {
    width: 100px;
    height: 100px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.morph-icon:hover {
    transform: scale(1.08) translateY(-4px);
}

.morph-badge-left .morph-icon {
    background: linear-gradient(135deg, #4A6FA5 0%, #3D5A80 100%);
    box-shadow: 
        0 25px 50px rgba(61, 90, 128, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    animation: morphColorLeft 5s ease-in-out 2s infinite;
}

.morph-badge-right .morph-icon {
    background: linear-gradient(135deg, #9B8AA0 0%, #7D6B83 100%);
    box-shadow: 
        0 25px 50px rgba(155, 138, 160, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    animation: morphColorRight 5s ease-in-out 2s infinite;
}

@keyframes morphColorLeft {
    0%, 38% {
        background: linear-gradient(135deg, #4A6FA5 0%, #3D5A80 100%);
        box-shadow: 
            0 25px 50px rgba(61, 90, 128, 0.4),
            0 10px 20px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }
    52%, 88% {
        background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
        box-shadow: 
            0 25px 50px rgba(212, 175, 55, 0.4),
            0 10px 20px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }
    100% {
        background: linear-gradient(135deg, #4A6FA5 0%, #3D5A80 100%);
        box-shadow: 
            0 25px 50px rgba(61, 90, 128, 0.4),
            0 10px 20px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }
}

@keyframes morphColorRight {
    0%, 38% {
        background: linear-gradient(135deg, #9B8AA0 0%, #7D6B83 100%);
        box-shadow: 
            0 25px 50px rgba(155, 138, 160, 0.4),
            0 10px 20px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }
    52%, 88% {
        background: linear-gradient(135deg, #7BA89D 0%, #5E8F82 100%);
        box-shadow: 
            0 25px 50px rgba(123, 168, 157, 0.4),
            0 10px 20px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }
    100% {
        background: linear-gradient(135deg, #9B8AA0 0%, #7D6B83 100%);
        box-shadow: 
            0 25px 50px rgba(155, 138, 160, 0.4),
            0 10px 20px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }
}

.morph-text {
    font-size: 2.6rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    position: absolute;
}

.morph-badge-left .morph-text-p {
    animation: textMorphOut 5s cubic-bezier(0.4, 0, 0.2, 1) 2s infinite;
}

.morph-badge-left .morph-text-aed {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: textMorphIn 5s cubic-bezier(0.4, 0, 0.2, 1) 2s infinite;
}

.morph-badge-right .morph-text {
    animation: none;
}

@keyframes textMorphOut {
    0%, 38% {
        opacity: 1;
        transform: scale(1) rotateX(0deg);
        filter: blur(0px);
    }
    45% {
        opacity: 0;
        transform: scale(0.8) rotateX(90deg);
        filter: blur(4px);
    }
    50%, 88% {
        opacity: 0;
        transform: scale(0.8) rotateX(90deg);
        filter: blur(4px);
    }
    95% {
        opacity: 0;
        transform: scale(0.8) rotateX(-90deg);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateX(0deg);
        filter: blur(0px);
    }
}

@keyframes textMorphIn {
    0%, 38% {
        opacity: 0;
        transform: scale(0.8) rotateX(-90deg);
        filter: blur(4px);
    }
    45% {
        opacity: 0;
        transform: scale(0.8) rotateX(-90deg);
        filter: blur(4px);
    }
    52% {
        opacity: 1;
        transform: scale(1.05) rotateX(0deg);
        filter: blur(0px);
    }
    55%, 88% {
        opacity: 1;
        transform: scale(1) rotateX(0deg);
        filter: blur(0px);
    }
    95% {
        opacity: 0;
        transform: scale(0.8) rotateX(90deg);
        filter: blur(4px);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) rotateX(-90deg);
        filter: blur(4px);
    }
}

.morph-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.95);
}

.morph-x {
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.morph-x {
    animation: xFadeOut 5s cubic-bezier(0.4, 0, 0.2, 1) 2s infinite;
}

@keyframes xFadeOut {
    0%, 38% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: blur(0px);
    }
    45% {
        opacity: 0;
        transform: scale(0.3) rotate(180deg);
        filter: blur(4px);
    }
    50%, 88% {
        opacity: 0;
        transform: scale(0.3) rotate(180deg);
        filter: blur(4px);
    }
    95% {
        opacity: 0;
        transform: scale(0.3) rotate(-180deg);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: blur(0px);
    }
}

@keyframes checkFadeIn {
    0%, 38% {
        opacity: 0;
        transform: scale(0.3);
        filter: blur(4px);
    }
    45% {
        opacity: 0;
        transform: scale(0.3);
        filter: blur(4px);
    }
    52% {
        opacity: 1;
        transform: scale(1.15);
        filter: blur(0px);
    }
    55%, 88% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0px);
    }
    95% {
        opacity: 0;
        transform: scale(0.3);
        filter: blur(4px);
    }
    100% {
        opacity: 0;
        transform: scale(0.3);
        filter: blur(4px);
    }
}

.video-frame {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: 315px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(91, 122, 196, 0.15);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.video-frame:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 40px rgba(91, 122, 196, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.video-frame video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 11px;
    object-fit: cover;
}

/* ========================================
   APP TEASER SECTION - COMING SOON
   ======================================== */

.app-teaser-section {
    position: relative;
    overflow: hidden;
    height: 40vh;
    min-height: 300px;
    width: 100%;
    background: linear-gradient(180deg, #FFFFFF 0%, #EDF2FC 25%, #D8E4F8 50%, #C5D4F0 75%, #B8CCF0 100%);
}

.teaser-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(91, 122, 196, 0.25) 0%, rgba(122, 149, 216, 0.12) 35%, transparent 65%);
    top: -20%;
    right: -10%;
    filter: blur(60px);
    animation: ambientPulse1 20s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(122, 149, 216, 0.2) 0%, rgba(148, 168, 232, 0.1) 35%, transparent 65%);
    bottom: -15%;
    left: -10%;
    filter: blur(50px);
    animation: ambientPulse2 25s ease-in-out infinite;
    animation-delay: -8s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(138, 160, 224, 0.18) 0%, rgba(107, 141, 217, 0.08) 35%, transparent 65%);
    top: 30%;
    left: 25%;
    filter: blur(45px);
    animation: ambientPulse3 18s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes ambientPulse1 {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-30px, 20px) scale(1.1);
        opacity: 1;
    }
}

@keyframes ambientPulse2 {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translate(40px, -25px) scale(1.15);
        opacity: 0.9;
    }
}

@keyframes ambientPulse3 {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% { 
        transform: translate(25px, 15px) scale(1.08);
        opacity: 0.85;
    }
    66% { 
        transform: translate(-20px, -10px) scale(0.95);
        opacity: 0.75;
    }
}

.app-teaser-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1.2s ease-out;
}

.app-teaser-background.visible {
    opacity: 1;
}

.teaser-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.app-teaser-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    max-width: 600px;
    padding: 0 2rem;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.app-teaser-content-wrapper.fade-out {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
}

.teaser-title {
    font-size: 4rem;
    font-weight: 200;
    color: #2D3C64;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.teaser-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: #4A5A8A;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.app-teaser-phone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 4;
    opacity: 0;
    transition: opacity 1s ease-out 0.3s, transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.app-teaser-phone.visible {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.phone-frame-wrapper {
    position: relative;
    width: 130px;
    height: 265px;
    background: linear-gradient(145deg, #1f1f21 0%, #141415 100%);
    border-radius: 28px;
    padding: 3px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 10px 25px rgba(0, 0, 0, 0.3),
        inset 0 0.5px 0 rgba(255, 255, 255, 0.15);
}

.phone-frame-wrapper::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 16px;
    background: #000;
    border-radius: 12px;
    z-index: 10;
}

.phone-screen-minimal {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a15 0%, #0f0f1a 100%);
}

.wave {
    position: absolute;
    width: 250%;
    height: 250%;
    top: -75%;
    left: -75%;
    opacity: 0.8;
}

.wave-1 {
    background: radial-gradient(ellipse at 40% 50%, #4A6BB5 0%, #6B8DD9 25%, transparent 55%);
    animation: waveMove1 8s ease-in-out infinite;
}

.wave-2 {
    background: radial-gradient(ellipse at 60% 40%, #7B9CE8 0%, #5C7FD3 30%, transparent 50%);
    animation: waveMove2 10s ease-in-out infinite;
    animation-delay: -2s;
}

.wave-3 {
    background: radial-gradient(ellipse at 50% 60%, #8FAEF0 0%, #6A8FE0 20%, transparent 45%);
    animation: waveMove3 12s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes waveMove1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(10%, 5%) rotate(5deg) scale(1.1); }
    66% { transform: translate(-5%, 10%) rotate(-3deg) scale(0.95); }
}

@keyframes waveMove2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(-8%, 8%) rotate(-4deg) scale(1.05); }
    66% { transform: translate(8%, -5%) rotate(6deg) scale(1.1); }
}

@keyframes waveMove3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(5%, -8%) rotate(3deg); }
}

.coming-soon-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 0.32rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* Phone Slideshow */
.phone-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.phone-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* ========================================
   BENEFITS SECTION - SLIDE 2 (LUXURY PREMIUM)
   ======================================== */

.benefits-section {
    height: 100vh;
    padding: 0;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    display: none;
}

.benefits-section::after {
    display: none;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

.benefits-header {
    text-align: center;
    margin-bottom: 5rem;
}

.benefits-header h2 {
    font-size: 4.5rem;
    font-weight: 300;
    color: #2D3C64;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
    line-height: 1;
}

.benefits-header p {
    font-size: 1.125rem;
    color: #717171;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.benefits-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.benefit-card {
    background: rgba(91, 122, 196, 0.08);
    border-radius: 16px;
    padding: 4rem 3.5rem;
    position: relative;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(91, 122, 196, 0.15);
    box-shadow: 0 10px 40px rgba(91, 122, 196, 0.1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(91, 122, 196, 0.25);
    background: rgba(91, 122, 196, 0.12);
    box-shadow: 0 20px 60px rgba(91, 122, 196, 0.15);
}

.card-number {
    position: absolute;
    top: 3rem;
    right: 3rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.2);
}

.benefit-card-owner .card-number {
    color: rgba(255, 255, 255, 0.25);
}

.benefit-card-driver .card-number {
    color: rgba(255, 255, 255, 0.25);
}

.card-content h3 {
    font-size: 2.25rem;
    font-weight: 300;
    color: #2D3C64;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #717171;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.card-locations {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.card-locations span {
    padding: 0.625rem 1.5rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

.benefit-card-owner .card-locations span {
    color: rgba(255, 56, 92, 0.9);
    border-color: rgba(255, 56, 92, 0.2);
}

.benefit-card-owner .card-locations span:hover {
    background: rgba(255, 56, 92, 0.1);
    border-color: rgba(255, 56, 92, 0.4);
    color: #FF385C;
}

.benefit-card-driver .card-locations span {
    color: rgba(0, 166, 153, 0.9);
    border-color: rgba(0, 166, 153, 0.2);
}

.benefit-card-driver .card-locations span:hover {
    background: rgba(0, 166, 153, 0.1);
    border-color: rgba(0, 166, 153, 0.4);
    color: #00A699;
}

.benefits-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    padding: 0;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 4rem;
}

.footer-stat {
    text-align: center;
}

.stat-value {
    font-size: 4rem;
    font-weight: 200;
    color: #5B7AC4;
    letter-spacing: -0.05em;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.6875rem;
    color: #FFFFFF;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-divider {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
}

.many-more {
    font-size: 1rem;
    color: var(--grey-dark);
    font-weight: 300;
    margin-top: 0.5rem;
}

/* ========================================
   FORM SECTION
   ======================================== */

.form-section {
    padding: 7rem 0;
    background: var(--grey-lighter);
}

.form-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2.25rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
    color: var(--dark);
}

.form-header p {
    font-size: 1.0625rem;
    color: var(--grey-dark);
}

.benefits-box {
    background: var(--grey-lighter);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.benefits-title {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 1.25rem;
    text-align: center;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--dark);
}

.benefits-list svg {
    flex-shrink: 0;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.toggle-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.toggle-option {
    position: relative;
    cursor: pointer;
}

.toggle-option input {
    position: absolute;
    opacity: 0;
}

.toggle-content {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    background: var(--white);
    border: 2px solid var(--grey-light);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.toggle-option:hover .toggle-content {
    border-color: var(--grey-mid);
}

.toggle-option input:checked + .toggle-content {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
}

.toggle-option input:focus + .toggle-content,
.toggle-option input:focus-visible + .toggle-content {
    outline: none;
    border-color: rgba(255, 255, 255, 1);
}

.toggle-option input {
    outline: none;
}

.toggle-option:focus-within .toggle-content {
    outline: none;
}

.toggle-title {
    font-size: 1rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.toggle-desc {
    font-size: 0.875rem;
    color: var(--grey-dark);
}

select,
input[type="text"],
input[type="email"],
input[type="number"] {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: 8px;
    color: var(--dark);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23717171' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

input::placeholder {
    color: var(--grey-mid);
}

select:hover,
input:hover {
    border-color: var(--dark);
}

select:focus,
input:focus {
    outline: none;
    border-color: var(--dark);
    box-shadow: 0 0 0 1px var(--dark);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--grey-mid);
    border-radius: 4px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    position: relative;
}

.checkbox-container:hover .checkmark {
    border-color: var(--dark);
}

.checkbox-container input:checked ~ .checkmark {
    background: var(--dark);
    border-color: var(--dark);
}

.checkbox-container input:checked ~ .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 0.9375rem;
    color: var(--grey-dark);
    line-height: 1.5;
}

.error-message {
    font-size: 0.8125rem;
    color: var(--primary);
    margin-top: 0.375rem;
    min-height: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--dark);
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #000000;
    transform: scale(1.01);
}

.success-message {
    display: none;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.success-message.show {
    display: block;
    animation: successPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.confetti {
    position: absolute;
    opacity: 0;
    animation: confettiFall 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    --rotate: 720deg;
    --drift: 0px;
}

.confetti-circle {
    border-radius: 50%;
}

.confetti-square {
    border-radius: 2px;
}

.confetti-star {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.confetti-triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translateY(-30px) translateX(0) rotate(0deg) scale(1);
    }
    25% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(350px) translateX(var(--drift)) rotate(var(--rotate)) scale(0.3);
    }
}

.success-content {
    position: relative;
    z-index: 1;
}

.success-icon {
    margin-bottom: 1rem;
    animation: successIconPop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s both;
}

@keyframes successPop {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes successIconPop {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.success-message h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.success-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.success-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
}


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

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand .logo {
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--grey-mid);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: var(--grey-mid);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--grey-mid);
    font-size: 0.875rem;
}

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

@media (max-width: 1024px) {
    .hero-split-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 1.5rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .value-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .value-split-reverse .value-content-side,
    .value-split-reverse .value-image-side {
        order: unset;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3rem;
    }

    .value-content-side h2 {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .value-section {
        padding: 5rem 0;
    }

    .value-content-side h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .toggle-group {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .header-container {
        padding: 1rem 1.5rem;
    }

    .location-badge {
        display: none;
    }

    .floating-card img {
        height: 350px;
    }

    .value-container,
    .locations-container {
        padding: 0 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-primary {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .value-content-side h2 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .floating-card img {
        height: 260px;
    }

    .location-image {
        height: 220px;
    }

    .form-header h2 {
        font-size: 1.875rem;
    }

    .header-cta {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works-section {
    position: relative;
    padding: 4rem 2rem;
    background: linear-gradient(-45deg, #3B5998, #5B7AC4, #4A68B8, #6B8FD4, #5A7BC8, #7BA0DC);
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    pointer-events: none;
}

.how-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.how-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.how-header h2 {
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.05em;
    line-height: 1;
}

.how-header p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.how-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-track {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 10%, rgba(255, 255, 255, 0.3) 90%, transparent 100%);
}

.timeline-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.timeline-dot-1 { top: 15%; }
.timeline-dot-2 { top: 50%; }
.timeline-dot-3 { top: 85%; }

.timeline-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline-row:last-child {
    margin-bottom: 0;
}

.timeline-row-owners {
    flex-direction: row;
}

.timeline-row-seekers {
    flex-direction: row-reverse;
}

.timeline-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    padding: 1rem 0;
    position: absolute;
    top: 50%;
}

.timeline-row-owners .timeline-label {
    left: 0;
    transform: rotate(180deg) translateY(50%);
}

.timeline-row-seekers .timeline-label {
    right: 0;
    transform: rotate(0deg) translateY(-50%);
}

.timeline-portrait {
    width: 280px;
    height: 280px;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 16px 48px rgba(91, 122, 196, 0.35), 
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    align-self: center;
    position: absolute;
    top: 50%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.320, 1), 
                transform 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.timeline-row-owners .timeline-portrait {
    transform: translateY(-50%) translateX(80px);
}

.timeline-row-seekers .timeline-portrait {
    transform: translateY(-50%) translateX(-80px);
}

.timeline-portrait.animate-in {
    opacity: 1;
}

.timeline-row-owners .timeline-portrait.animate-in {
    transform: translateY(-50%) translateX(0);
}

.timeline-row-seekers .timeline-portrait.animate-in {
    transform: translateY(-50%) translateX(0);
}

.timeline-row-owners .timeline-portrait {
    left: calc(50% + 60px);
}

.timeline-row-seekers .timeline-portrait {
    right: calc(50% + 60px);
}

.timeline-row-owners .timeline-portrait.animate-in {
    left: calc(50% + 60px);
}

.timeline-row-seekers .timeline-portrait.animate-in {
    right: calc(50% + 60px);
}

.timeline-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.timeline-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem;
}

.timeline-row-owners .timeline-steps {
    padding-right: calc(50% + 2rem);
    align-items: flex-end;
    text-align: right;
}

.timeline-row-seekers .timeline-steps {
    padding-left: calc(50% + 2rem);
    align-items: flex-start;
    text-align: left;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    width: 200px;
    min-height: 70px;
    position: relative;
}

.timeline-row-owners .timeline-step {
    flex-direction: row-reverse;
}

.timeline-step::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
}

.timeline-row-owners .timeline-step::before {
    right: -30px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
}

.timeline-row-seekers .timeline-step::before {
    left: -30px;
}

.timeline-step:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 0.375rem;
    letter-spacing: -0.01em;
}

.step-content p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.5;
}

/* ========================================
   LOCATIONS SECTION
   ======================================== */

.locations-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 100%);
    position: relative;
}

.mobile-locations {
    display: none;
}

.mobile-showcase {
    display: none;
}

.timeline-inline-image {
    display: none;
}

.locations-container {
    max-width: 1000px;
    margin: 0 auto;
}

.locations-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.locations-header h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #2D3C64;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.locations-header p {
    font-size: 1rem;
    color: rgba(91, 122, 196, 0.8);
    font-weight: 300;
}

/* Premium Location Cards Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.location-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 1.75rem 1rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(91, 122, 196, 0.08);
    border: 1px solid rgba(91, 122, 196, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5B7AC4, #8AA5DC);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(91, 122, 196, 0.15);
}

.location-card:hover::before {
    opacity: 1;
}

.location-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(91, 122, 196, 0.1), rgba(138, 165, 220, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-icon svg {
    width: 24px;
    height: 24px;
    stroke: #5B7AC4;
}

.location-card h3 {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #2D3C64;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.location-card p {
    font-size: 0.75rem;
    color: rgba(91, 122, 196, 0.7);
    font-weight: 300;
}

/* Hide legacy map elements */
.dubai-map-container {
    display: none;
}

.dubai-embed-map {
    display: none;
}

.map-overlay {
    display: none;
}

.map-locations-list {
    display: none;
}

.map-location-item {
    display: none;
}

.map-location-item .location-dot {
    display: none;
}

/* Legacy styles */
.dubai-map {
    display: none;
}

.map-image-container {
    display: none;
}

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

.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
}

.marker-dot {
    width: 12px;
    height: 12px;
    background: #5B7AC4;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(91, 122, 196, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.marker-main .marker-dot {
    width: 16px;
    height: 16px;
    background: #4A6FA5;
}

.map-marker:hover .marker-dot {
    transform: scale(1.3);
    background: #3D5A80;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(91, 122, 196, 0.4);
    animation: markerPulse 2s ease-out infinite;
    z-index: 1;
}

.map-marker:nth-child(2) .marker-pulse { animation-delay: 0s; }
.map-marker:nth-child(3) .marker-pulse { animation-delay: 0.4s; }
.map-marker:nth-child(4) .marker-pulse { animation-delay: 0.8s; }
.map-marker:nth-child(5) .marker-pulse { animation-delay: 1.2s; }
.map-marker:nth-child(6) .marker-pulse { animation-delay: 1.6s; }

@keyframes markerPulse {
    0% {
        width: 12px;
        height: 12px;
        opacity: 0.6;
    }
    100% {
        width: 40px;
        height: 40px;
        opacity: 0;
    }
}

.marker-label {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 11px;
    font-weight: 500;
    color: #FFFFFF;
    background: rgba(91, 122, 196, 0.9);
    padding: 4px 10px;
    border-radius: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.map-marker:hover .marker-label {
    opacity: 1;
    top: -32px;
}

.map-legend {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(91, 122, 196, 0.7);
    font-weight: 300;
}

.legend-dot {
    width: 8px;
    height: 8px;
    background: #5B7AC4;
    border-radius: 50%;
}

/* Old styles - keeping for compatibility */
.flow-item:hover .step-badge::before {
    opacity: 1;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

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

.flow-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.flow-item:hover h4 {
    color: rgba(0, 200, 181, 0.9);
}

.flow-item p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.flow-item:hover p {
    color: rgba(255, 255, 255, 0.95);
}

.flow-connector {
    height: 2rem;
    margin: 0.5rem 0 0 1.5rem;
    position: relative;
    overflow: visible;
}

.flow-connector::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 166, 153, 0.3) 0%, rgba(0, 166, 153, 0.1) 100%);
    animation: connectorExpand 1.2s ease-out forwards;
    opacity: 0;
}

.flow-connector::after {
    content: '';
    position: absolute;
    left: -4px;
    bottom: -1rem;
    width: 8px;
    height: 8px;
    background: rgba(0, 166, 153, 0.4);
    border-radius: 50%;
    animation: connectorDotPulse 1.8s ease-out 0.4s forwards;
    opacity: 0;
    box-shadow: 0 0 15px rgba(0, 200, 181, 0.3);
}

@keyframes connectorExpand {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        height: 2rem;
        opacity: 1;
    }
}

@keyframes connectorDotPulse {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(0, 200, 181, 0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 200, 181, 0.3);
    }
}

/* ========================================
   HOW IT WORKS - RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .how-it-works-section {
        padding: 4rem 2rem;
    }

    .how-header h2 {
        font-size: 3.5rem;
    }

    .timeline-track {
        display: none;
    }

    .timeline-row {
        flex-direction: column !important;
        align-items: center;
    }

    .timeline-label {
        writing-mode: horizontal-tb;
        transform: none !important;
        margin-bottom: 1.5rem;
    }

    .timeline-steps {
        padding: 0 !important;
        align-items: center !important;
        text-align: center !important;
    }

    .timeline-row-owners .timeline-step,
    .timeline-row-seekers .timeline-step {
        flex-direction: column;
        text-align: center;
    }

    .timeline-step::before {
        display: none;
    }

    .locations-header h2 {
        font-size: 3.5rem;
    }

    .marker-label {
        font-size: 10px;
        padding: 3px 8px;
    }

    .marker-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 640px) {
    .how-it-works-section {
        padding: 3rem 1.5rem;
    }

    .how-header h2 {
        font-size: 2.5rem;
    }

    .how-header p {
        font-size: 0.75rem;
    }

    .timeline-step {
        padding: 1.25rem 1.5rem;
        max-width: 100%;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.75rem;
    }

    .locations-section {
        padding: 3rem 1rem;
    }

    .locations-header h2 {
        font-size: 2.5rem;
    }

    .dubai-map {
        padding: 0.5rem;
    }

    .marker-label {
        font-size: 9px;
        padding: 2px 6px;
    }

    .marker-dot {
        width: 8px;
        height: 8px;
    }

    .marker-main .marker-dot {
        width: 10px;
        height: 10px;
    }
}

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

.main-footer {
    position: relative;
    padding: 6rem 2.5rem;
    background: #FFFFFF !important;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    pointer-events: none;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    text-align: center;
}

.footer-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    font-style: normal;
    color: #5B7AC4 !important;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.footer-content p {
    font-size: 1.125rem;
    color: #5B7AC4 !important;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

.footer-cta {
    padding: 1rem 2.5rem;
    background: #5B7AC4 !important;
    border: none;
    border-radius: 8px;
    color: #FFFFFF !important;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 10px 30px rgba(91, 122, 196, 0.3);
    letter-spacing: -0.01em;
}

.footer-cta:hover {
    transform: translateY(-4px) scale(1.02);
    background: #4A68B8 !important;
    box-shadow: 0 15px 40px rgba(91, 122, 196, 0.4);
}

.footer-cta:active {
    transform: translateY(-2px);
}

/* Hero form transitions */
.hero-form-card {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
}

.hero-form-card.pulse-focus {
    animation: cardPulse 0.8s ease-out;
}

@keyframes cardPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 166, 153, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(0, 166, 153, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 166, 153, 0);
    }
}

.email-input-focus {
    animation: inputGlow 0.6s ease-out;
}

@keyframes inputGlow {
    from {
        box-shadow: inset 0 0 0 2px var(--secondary);
    }
    to {
        box-shadow: inset 0 0 10px 0px rgba(0, 166, 153, 0.1);
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 4rem 2rem;
    }

    .footer-content h2 {
        font-size: 3rem;
    }

    .footer-content p {
        font-size: 1rem;
    }

    .footer-cta {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }

    .timeline-portrait {
        width: 160px;
        height: 160px;
        border-radius: 18px;
    }
}

@media (max-width: 640px) {
    .main-footer {
        padding: 3rem 1.5rem;
    }

    .footer-content h2 {
        font-size: 2.25rem;
    }

    .footer-content p {
        font-size: 0.9375rem;
    }

    .footer-cta {
        padding: 0.75rem 1.75rem;
        font-size: 0.875rem;
    }
}

/* ========================================
   MOBILE - CLEAN PROFESSIONAL DESIGN
   ======================================== */

@media (max-width: 1024px) {
    /* MOBILE PERFORMANCE OPTIMIZATIONS */
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .hero-section,
    .benefits-section,
    .how-it-works,
    .locations-section,
    .mobile-locations {
        will-change: auto;
        transform: translateZ(0);
        backface-visibility: hidden;
    }
    
    /* Reduce animation complexity on mobile */
    @keyframes gradientShift {
        0%, 100% { background-position: 0% 50%; }
    }
    
    /* HEADER - Clean & Minimal */
    .glass-header {
        background: #FFFFFF;
        box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    }
    
    .header-container {
        padding: 14px 20px;
    }
    
    .logo {
        font-size: 17px;
        font-weight: 600;
        color: #2D3C64;
    }
    
    .location-badge {
        display: none;
    }
    
    .header-cta {
        padding: 10px 18px;
        font-size: 13px;
        font-weight: 500;
        border-radius: 20px;
        background: #5B7AC4;
        color: #fff;
    }
    
    /* HERO - Clean Full Screen */
    .hero-section {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 0;
        background: linear-gradient(180deg, #6B8ED0 0%, #8AA5DC 30%, #A8BFE8 60%, #D0DDEF 85%, #FFFFFF 100%) !important;
    }
    
    .hero-split-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 80px 24px 30px;
        max-width: 480px;
        width: 100%;
    }
    
    .hero-content {
        text-align: center;
        margin-top: 0;
    }
    
    .hero-badge,
    .hero-stats,
    .hero-subtitle {
        display: none;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 1.1;
        font-weight: 300;
        letter-spacing: -0.03em;
        margin-bottom: 0;
    }
    
    /* FORM - Minimal & Clean */
    .hero-form-card {
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        background: transparent;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
    }
    
    .hero-form-header {
        display: none;
    }
    
    .hero-form .form-group {
        margin-bottom: 12px;
    }
    
    .hero-form .form-label {
        font-size: 12px;
        font-weight: 400;
        color: rgba(255,255,255,0.7);
        letter-spacing: 0.05em;
        margin-bottom: 10px;
        text-transform: uppercase;
    }
    
    .hero-form .toggle-group {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .hero-form .toggle-option {
        padding: 16px 12px;
        border-radius: 12px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .hero-form .toggle-option:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    .hero-form .toggle-option:has(input:checked) {
        background: #FFFFFF;
        border-color: #FFFFFF;
        transform: scale(1.03);
        box-shadow: 0 6px 24px rgba(255, 255, 255, 0.3);
    }
    
    .hero-form .toggle-title {
        font-size: 14px;
        font-weight: 500;
    }
    
    .hero-form input[type="email"] {
        width: 100%;
        padding: 16px;
        font-size: 16px;
        border-radius: 12px;
        background: rgba(255,255,255,0.1) !important;
        border: 1px solid rgba(255,255,255,0.2) !important;
        color: #fff;
    }
    
    .hero-form input::placeholder {
        color: rgba(255,255,255,0.5);
    }
    
    .hero-form .submit-btn {
        padding: 14px 28px;
        font-size: 15px;
        font-weight: 600;
        margin-top: 8px;
        border-radius: 12px;
        background: #FFFFFF;
        color: #2D3C64;
        border: none;
    }
    
    /* Hide complex sections on mobile */
    .locations-section,
    .video-section,
    .app-teaser-section {
        display: none;
    }
    
    /* ====== PREMIUM LOCATIONS SHOWCASE ====== */
    .mobile-locations {
        display: block;
        padding: 50px 24px;
        background: #FFFFFF;
        text-align: center;
    }
    
    .mobile-locations-more {
        font-size: 14px;
        font-weight: 400;
        color: #5B7AC4;
        margin-top: 16px;
        letter-spacing: 0.02em;
    }
    
    .mobile-locations-title {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: #5B7AC4;
        margin-bottom: 24px;
    }
    
    .location-pills {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .location-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 10px 16px;
        background: linear-gradient(135deg, rgba(91, 122, 196, 0.08) 0%, rgba(122, 149, 216, 0.12) 100%);
        border-radius: 24px;
        font-size: 13px;
        font-weight: 400;
        color: #2D3C64;
        border: 1px solid rgba(91, 122, 196, 0.15);
        transition: all 0.3s ease;
    }
    
    .location-pill:hover {
        background: linear-gradient(135deg, rgba(91, 122, 196, 0.15) 0%, rgba(122, 149, 216, 0.2) 100%);
        transform: translateY(-2px);
    }
    
    .location-pill svg {
        width: 14px;
        height: 14px;
        color: #5B7AC4;
    }
    
    /* ====== MOBILE PHONE PREVIEW ====== */
    .mobile-phone-preview {
        display: flex;
        justify-content: center;
        margin-bottom: 24px;
        margin-top: 0;
        position: relative;
        z-index: 5;
    }
    
    .mobile-phone-preview .phone-frame-wrapper {
        width: 80px;
        height: 160px;
        background: linear-gradient(145deg, #1f1f21 0%, #141415 100%);
        border-radius: 18px;
        padding: 2px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        animation: phoneFloat 3s ease-in-out infinite;
    }
    
    .mobile-phone-preview .phone-frame-wrapper::before {
        content: '';
        position: absolute;
        top: 6px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 10px;
        background: #000;
        border-radius: 8px;
        z-index: 10;
    }
    
    .mobile-phone-preview .phone-screen-minimal {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #5B7AC4 0%, #7A95D8 100%);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
    }
    
    .mobile-phone-preview .coming-soon-text {
        font-size: 7px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.8);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-align: center;
        line-height: 1.4;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        white-space: nowrap;
    }
    
    .mobile-phone-preview .wave-bg {
        display: none;
    }
    
    @keyframes phoneFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-6px); }
    }
    
    /* ====== BENEFITS - Simple & Clean ====== */
    .benefits-section {
        height: auto;
        min-height: auto;
        padding: 60px 0;
        background: linear-gradient(180deg, #FFFFFF 0%, #E8EEF7 30%, #D0DDEF 70%, #C0D2EB 100%);
        position: relative;
    }
    
    .benefits-container {
        padding: 0 24px;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .benefits-header {
        margin-bottom: 32px;
        text-align: center;
    }
    
    .benefits-header h2 {
        font-size: 28px;
        font-weight: 300;
        letter-spacing: -0.02em;
        color: #2D3C64;
    }
    
    .benefits-header p {
        display: none;
    }
    
    .benefits-cards {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 0;
    }
    
    .benefit-card {
        padding: 20px;
        border-radius: 16px;
        background: rgba(91, 122, 196, 0.08);
        border: none;
        box-shadow: none;
    }
    
    .benefit-card .card-icon {
        display: none;
    }
    
    .card-content h3 {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 8px;
        color: #2D3C64;
    }
    
    .card-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 0;
        color: #717171;
        font-weight: 300;
    }
    
    /* ====== STATS - Clean Auto-Slide ====== */
    .benefits-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 32px;
        padding: 0;
        position: relative;
        min-height: 80px;
    }
    
    .footer-stat {
        position: absolute;
        text-align: center;
        opacity: 0;
        transform: scale(0.95);
        transition: all 0.4s ease;
        pointer-events: none;
    }
    
    .footer-stat.active {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }
    
    .footer-stat .stat-value {
        font-size: 36px;
        font-weight: 300;
        color: #5B7AC4;
        margin-bottom: 4px;
        display: block;
    }
    
    .footer-stat .stat-label {
        font-size: 11px;
        font-weight: 400;
        color: #717171;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }
    
    .footer-divider {
        display: none;
    }
    
    /* Stats dot indicators - hidden */
    .stats-dots {
        display: none;
    }
    
    /* ====== HOW IT WORKS - Premium Minimal ====== */
    .how-it-works-section {
        display: block;
        padding: 60px 24px;
        background: linear-gradient(180deg, #C0D2EB 0%, #A8C0E5 40%, #FFFFFF 100%);
    }
    
    .how-container {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .how-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .how-header h2 {
        font-size: 28px;
        font-weight: 300;
        color: #2D3C64;
        letter-spacing: -0.02em;
    }
    
    .how-header p {
        display: none;
    }
    
    .how-timeline {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .timeline-track {
        display: none;
    }
    
    .timeline-row {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .timeline-label {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: #5B7AC4;
        text-align: center;
        margin-bottom: 20px;
        writing-mode: horizontal-tb !important;
        transform: none !important;
        position: static !important;
        background: none !important;
        padding: 0 !important;
    }
    
    .timeline-card-flip {
        perspective: none;
        width: 100%;
        height: auto;
        cursor: default;
    }
    
    .timeline-card-flip::after {
        display: none;
    }
    
    .flip-inner {
        position: relative;
        width: 100%;
        height: auto;
        transition: none;
        transform-style: flat;
        transform: none !important;
    }
    
    .timeline-card-flip.flipped .flip-inner {
        transform: none;
    }
    
    .flip-front {
        position: relative;
        width: 100%;
        height: auto;
        backface-visibility: visible;
        border-radius: 0;
        overflow: visible;
        background: none;
    }
    
    .timeline-card-flip {
        min-height: auto;
        position: relative;
    }
    
    .flip-inner {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .flip-back {
        display: none;
    }
    
    /* Inline Timeline Image */
    .timeline-inline-image {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 24px auto;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
                    transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    }
    
    .timeline-inline-image.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    
    .timeline-inline-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 16px 48px rgba(91, 122, 196, 0.2);
    }
    
    /* Mobile Showcase Section */
    .mobile-showcase {
        display: block;
        padding: 40px 20px;
        background: linear-gradient(180deg, #FFFFFF 0%, #E8EEF8 100%);
    }
    
    .showcase-container {
        display: flex;
        flex-direction: column;
        gap: 24px;
        max-width: 340px;
        margin: 0 auto;
    }
    
    .showcase-card {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
                    transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    }
    
    .showcase-card.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    
    .showcase-label {
        font-size: 12px;
        font-weight: 500;
        color: #5B7AC4;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .showcase-image {
        width: 100%;
        height: 220px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(91, 122, 196, 0.25);
    }
    
    .showcase-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .flip-front .timeline-steps {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 24px;
        padding: 0 !important;
        background: none !important;
        margin: 0 !important;
        width: 100%;
    }
    
    .timeline-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 0 !important;
        background: none !important;
        border-radius: 0 !important;
        border: none !important;
        text-align: center;
        box-shadow: none !important;
        flex: 1;
        opacity: 0.3;
        transform: scale(0.85);
        transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    }
    
    .timeline-step.active {
        opacity: 1;
        transform: scale(1.25);
    }
    
    .timeline-step:last-child {
        border-bottom: none;
    }
    
    .timeline-step::before {
        display: none !important;
    }
    
    .step-number {
        display: none;
    }
    
    .step-icon {
        width: 48px;
        height: 48px;
        background: transparent !important;
        border-radius: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #5B7AC4;
        box-shadow: none !important;
        border: none !important;
        transition: transform 0.4s ease-out, color 0.4s ease-out;
    }
    
    .timeline-step.active .step-icon {
        transform: scale(1.2);
        color: #4A69B3;
    }
    
    .timeline-step.active .step-content h4 {
        font-weight: 600;
        color: #2D3C64;
    }
    
    .step-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .step-content {
        flex: none;
    }
    
    .step-content h4 {
        font-size: 14px;
        font-weight: 500;
        color: #2D3C64;
        margin-bottom: 0;
    }
    
    .step-content p {
        display: none;
    }
    
    /* How it works animation */
    .timeline-row {
        position: relative;
    }
    
    .timeline-row::after {
        content: '';
        position: absolute;
        bottom: 50%;
        left: 10%;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #5B7AC4, transparent);
        animation: lineGrow 1.5s ease-out forwards;
        animation-delay: 0.3s;
        z-index: 0;
    }
    
    .timeline-row-seekers::after {
        animation-delay: 0.3s;
    }
    
    .timeline-row-owners::after {
        animation-delay: 0.8s;
    }
    
    @keyframes lineGrow {
        0% { width: 0; left: 10%; }
        100% { width: 80%; left: 10%; }
    }
    
    
    /* ====== FOOTER - White Background CTA ====== */
    .main-footer {
        padding: 50px 24px;
        background: #FFFFFF !important;
    }
    
    .footer-content {
        max-width: 480px;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content h2 {
        font-size: 24px !important;
        font-weight: 300 !important;
        letter-spacing: -0.02em;
        line-height: 1.3;
        color: #2D3C64 !important;
        margin-bottom: 12px;
    }
    
    .footer-content p {
        font-size: 14px !important;
        color: #717171 !important;
        margin-bottom: 24px;
        line-height: 1.5;
    }
    
    .footer-cta {
        padding: 14px 32px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        border-radius: 24px !important;
        background: #5B7AC4 !important;
        color: #FFFFFF !important;
        display: inline-block;
        text-align: center;
        box-shadow: none !important;
        margin: 0 auto;
    }
    
    /* SUCCESS STATE */
    .success-message h3 {
        font-size: 28px !important;
        font-weight: 300 !important;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .hero-title {
        font-size: 34px;
    }
    
    .hero-split-container {
        padding: 80px 20px 40px;
    }
    
    .benefits-header h2 {
        font-size: 24px;
    }
    
    .how-header h2 {
        font-size: 22px;
    }
    
    .footer-content h2 {
        font-size: 22px !important;
    }
}
