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


:root {
    /* Design System Colors */
    --gray-900: #302F2D;
    --gray-700: #73716F;
    --gray-25: #FFFFFF;
    --primary-blue: #4169E3;
    --background: #F8F8F8;
    
    /* Typography */
    --font-family: 'Onest', sans-serif;
    --h1-size: 46px;
    --h6-size: 18px;
    --caption-size: 12px;
    --logo-size: 33px;
}

body {
    font-family: var(--font-family);
    background-color: var(--background);
    color: var(--gray-900);
    line-height: 1.2;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    position: relative;
    width: 1440px;
    height: 100vh;
    min-height: 768px;
    background-color: var(--background);
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px;
    z-index: 10;
}

.logo h1 {
    font-size: var(--logo-size);
    font-weight: 600;
    color: var(--gray-900);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 9px;
}

.email {
    font-size: var(--h6-size);
    font-weight: 400;
    color: var(--gray-900);
}

.email-icon {
    width: 24px;
    height: 24px;
}

/* Main Content */
.main-content {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 580px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.main-title {
    font-size: var(--h1-size);
    font-weight: 600;
    line-height: 1.1;
    color: var(--gray-900);
    max-width: 560px;
}

.highlight {
    color: var(--primary-blue);
}

.description {
    font-size: var(--h6-size);
    font-weight: 400;
    line-height: 1.2;
    color: var(--gray-700);
}

.description p:first-child {
    margin-bottom: 0;
}

.brand {
    color: var(--gray-900);
    font-weight: 400;
}

/* Button Container */
.button-container {
    display: flex;
    gap: 12px;
    align-items: center;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background-color: var(--gray-900);
    border-radius: 19px;
    text-decoration: none;
    box-shadow: 0px 2px 13px 0px rgba(30, 27, 21, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 20px 0px rgba(30, 27, 21, 0.15);
}

.button-icon {
    width: 39px;
    height: 39px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.button-text {
    display: flex;
    flex-direction: column;
    color: var(--gray-25);
}

.button-subtitle {
    font-size: var(--caption-size);
    font-weight: 400;
    line-height: 1.2;
}

.button-title {
    font-size: var(--h6-size);
    font-weight: 500;
    line-height: 1.2;
}

/* Phone Mockups */
.phone-mockups {
    position: absolute;
    right: 0;
    top: 0;
    width: 600px;
    height: 100vh;
    pointer-events: none;
}

.phone-mockup {
    position: absolute;
    height: auto;
}

.phone-1 {
    width: 282px;
    right: 370px;
    top: 218px;
    z-index: 1;
}

.phone-2 {
    width: 282px;
    right: 80px;
    top: 160px;
    z-index: 2;
}

.phone-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .container {
        width: 100%;
        max-width: 1440px;
    }
}

@media (max-width: 1200px) {
    .container {
        width: 100%;
        max-width: 1200px;
    }
    
    .header {
        padding: 30px 40px;
    }
    
    .main-content {
        left: 40px;
        width: 50%;
    }
    
    .main-title {
        font-size: 38px;
        max-width: 100%;
    }
    
    .phone-mockups {
        width: 50%;
    }
    
    .phone-1 {
        width: 220px;
        right: 180px;
        top: 160px;
    }
    
    .phone-2 {
        width: 220px;
        right: 40px;
        top: 220px;
    }
}

@media (max-width: 768px) {
    body {
        align-items: flex-start;
    }
    
    .container {
        width: 100%;
        height: auto;
        min-height: 100vh;
    }
    
    .header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        position: static;
    }
    
    .main-content {
        position: static;
        transform: none;
        left: auto;
        top: auto;
        width: 100%;
        padding: 40px 20px;
    }
    
    .main-title {
        font-size: 28px;
        text-align: center;
    }
    
    .description {
        text-align: center;
        font-size: 16px;
    }
    
    .button-container {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .phone-mockups {
        position: static;
        width: 100%;
        height: 400px;
        transform: none;
        margin-top: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .phone-mockup {
        width: 140px;
    }
    
    .phone-1 {
        width: 140px;
        position: relative;
        right: auto;
        top: auto;
        left: -20px;
    }
    
    .phone-2 {
        width: 140px;
        position: relative;
        right: auto;
        top: auto;
        left: 20px;
        margin-top: 40px;
    }
    
    .phone-image {
        width: 100%;
        height: auto;
        max-height: 288px;
    }
}