* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

:root {
    --accent-color: #007AFF;
    --accent-hover: #0051D5;
    --bg-color: #d1e5ae;
    --text-primary: #1D1D1F;
    --text-secondary: #6E6E73;
    --card-bg: rgba(255, 255, 255, 0.8);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.15);
}

html, body {
    background-color: #d1e5ae !important;
    background: #d1e5ae !important;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    color: var(--text-primary);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.hero-section {
    background: transparent;
    border-radius: 0;
    padding: 60px 40px 60px 40px;
    padding-right: 0;
    box-shadow: none;
    animation: fadeInUp 0.6s ease-out;
    width: 100%;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 60px;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

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

.left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 10;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-44%);
    width: 50%;
    max-width: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    animation: fadeIn 0.8s ease-out 0.5s both;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1;
}

.hero-image img {
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    display: block;
    object-fit: contain;
    object-position: right center;
    transform: scale(0.4);
    transform-origin: right center;
}

.title-section {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.app-icon img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.title-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #000000;
    letter-spacing: -0.02em;
    line-height: 1;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 0;
}

.description {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

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

.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    animation: fadeInUp 0.6s ease-out 0.6s both;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.secondary-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-primary {
    background: #000000;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}



.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-primary);
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    min-width: 160px;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.15);
}

.btn-secondary:active {
    transform: translateY(0);
}


.btn span {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-section {
        padding: 40px 24px;
        padding-bottom: 40px;
        overflow: hidden;
    }
    
    .hero-image {
        position: relative;
        right: 0;
        top: auto;
        transform: none;
        width: calc(100% + 24px);
        max-width: calc(100% + 24px);
        border-radius: 0;
        margin-top: 32px;
        margin-right: -24px;
        margin-left: 0;
        order: -1;
        padding: 0;
    }
    
    .hero-image img {
        transform: scale(1);
        transform-origin: center;
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    
    .content-wrapper {
        flex-direction: column;
        gap: 32px;
    }
    
    .left-content {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .title-section {
        justify-content: center;
        flex-direction: column;
        gap: 16px;
    }
    
    .title-group {
        align-items: center;
    }
    
    .buttons {
        align-items: center;
        width: 100%;
        margin-top: 32px;
    }
    
    .secondary-buttons {
        justify-content: center;
        width: 100%;
        flex-direction: column;
    }
    
    .btn-primary {
        width: 100% !important;
    }
    
    .btn-secondary {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 32px 20px;
        padding-bottom: 32px;
        overflow: hidden;
    }
    
    .hero-image {
        width: calc(100% + 20px);
        max-width: calc(100% + 20px);
        margin-right: -20px;
    }
    
    .title-section {
        flex-direction: column;
        gap: 12px;
    }
    
    .app-icon img {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }
    
    .title {
        font-size: 42px;
        line-height: 1.1;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .description {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .btn {
        padding: 16px 24px;
        font-size: 17px;
        min-height: 48px;
        border-radius: 12px;
    }
    
    .btn-primary {
        width: 100% !important;
    }
    
    .secondary-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn-secondary {
        width: 100%;
        min-width: unset;
    }
    
    .content-wrapper {
        gap: 24px;
    }
    
    .hero-image {
        margin-top: 24px;
        margin-left: 0;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 24px 16px;
        padding-bottom: 24px;
        overflow: hidden;
    }
    
    .hero-image {
        width: calc(100% + 16px);
        max-width: calc(100% + 16px);
        margin-right: -16px;
    }
    
    .title {
        font-size: 36px;
        line-height: 1.1;
    }
    
    .subtitle {
        font-size: 15px;
    }
    
    .description {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .app-icon img {
        width: 56px;
        height: 56px;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 16px;
        min-height: 44px;
    }
    
    .content-wrapper {
        gap: 20px;
    }
    
    .hero-image {
        margin-top: 20px;
        margin-left: 0;
        padding: 0;
    }
    
    .buttons {
        margin-top: 24px;
        gap: 16px;
    }
}

