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

:root {
    --primary-teal: #14B8A6;
    --light-blue: #E0F2FE;
    --soft-pink: #FCE7F3;
    --pink-accent: #EC4899;
    --green-accent: #10B981;
    --dark-gray: #1F2937;
    --medium-gray: #6B7280;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    padding: 24px 0;
    position: relative;
    z-index: 10;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--dark-gray);
}

.language-selector {
    display: flex;
    gap: 8px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--medium-gray);
    transition: all 0.2s;
}

.lang-btn:hover {
    background: var(--light-gray);
}

.lang-btn.active {
    background: var(--light-gray);
    border-color: var(--primary-teal);
    color: var(--dark-gray);
}

.flag {
    font-size: 16px;
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    position: relative;
    min-height: 600px;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark-gray);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--medium-gray);
    margin-bottom: 40px;
    font-weight: 400;
}

.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--dark-gray);
    color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.download-btn svg {
    width: 20px;
    height: 20px;
}

/* Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--light-blue);
    bottom: -100px;
    left: -100px;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: var(--soft-pink);
    top: -50px;
    right: 200px;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    color: var(--dark-gray);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-illustration {
    height: 120px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.illustration-item {
    position: absolute;
}

.nail-bottle {
    width: 40px;
    height: 60px;
    background: var(--soft-pink);
    border-radius: 8px 8px 20px 20px;
    left: 20px;
}

.magnifying-glass {
    width: 50px;
    height: 50px;
    border: 4px solid var(--primary-teal);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.magnifying-glass::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 4px;
    background: var(--primary-teal);
    bottom: -10px;
    right: -10px;
    transform: rotate(45deg);
}

.person-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-teal);
    border-radius: 50%;
    right: 20px;
}

.person-icon::after {
    content: '💬';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 16px;
}

.person-doc {
    width: 50px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.person-doc::before {
    content: '👤';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
}

.dollar-icon {
    width: 30px;
    height: 30px;
    background: var(--green-accent);
    border-radius: 50%;
    top: -10px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.dollar-icon::after {
    content: '$1';
}

.clipboard {
    width: 45px;
    height: 55px;
    background: var(--light-gray);
    border-radius: 6px;
    left: 20px;
}

.clipboard::before {
    content: '✓';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--green-accent);
    font-weight: bold;
    font-size: 20px;
}

.calendar-icon {
    width: 35px;
    height: 35px;
    background: var(--light-blue);
    border-radius: 6px;
    top: 10px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: var(--dark-gray);
}

.calendar-icon::after {
    content: '24';
}

.chart-icon {
    width: 40px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-teal), var(--green-accent));
    border-radius: 4px;
    bottom: 10px;
    right: 30px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.step-description {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Ready Section */
.ready-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.ready-section .download-buttons {
    justify-content: center;
}

/* Mobile Mockup */
.mobile-mockup {
    position: fixed;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: none;
}

@media (min-width: 1400px) {
    .mobile-mockup {
        display: block;
    }
}

.phone-frame {
    width: 320px;
    height: 640px;
    background: #1F2937;
    border-radius: 40px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
}

.status-icons {
    display: flex;
    gap: 8px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.app-welcome {
    font-size: 12px;
    color: var(--medium-gray);
    font-weight: 500;
    margin-bottom: 4px;
}

.app-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
}

.notification-icon {
    font-size: 20px;
}

.search-section {
    padding: 0 20px 16px;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light-gray);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
}

.search-icon {
    font-size: 16px;
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--medium-gray);
    outline: none;
}

.search-btn {
    width: 100%;
    padding: 12px;
    background: var(--dark-gray);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.job-listings {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px;
}

.job-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.job-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-gray);
    flex: 1;
}

.job-avatar {
    font-size: 20px;
}

.job-description {
    font-size: 13px;
    color: var(--medium-gray);
    margin-bottom: 12px;
    line-height: 1.5;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.price-tag {
    background: var(--soft-pink);
    color: var(--pink-accent);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.skill-tag {
    background: #D1FAE5;
    color: var(--green-accent);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.apply-btn {
    width: 100%;
    padding: 10px;
    background: var(--dark-gray);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

.applied-btn {
    width: 100%;
    padding: 10px;
    background: var(--light-gray);
    color: var(--dark-gray);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 16px 20px;
    border-top: 1px solid #E5E7EB;
    background: var(--white);
}

.nav-item {
    font-size: 24px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.nav-item.active {
    opacity: 1;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid #E5E7EB;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-company {
    font-size: 16px;
    color: var(--medium-gray);
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

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

/* Responsive Design */
@media (max-width: 1399px) {
    .hero {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .container {
        padding: 0 16px;
    }
}

