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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header */
.header {
    padding: 0.75rem 3rem;
}

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

.logo {
    height: 65px;
    width: auto;
}

/* Main content */
.main {
    padding: 0 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    min-height: calc(100vh - 180px);
}

.hero-content {
    max-width: 500px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.hero-title span {
    display: block;
}

.title-build {
    color: #5B9BD5;  /* Light blue */
}

.title-scale {
    color: #1e3a5f;  /* Dark blue */
}

.title-lead {
    color: #d4af37;  /* Gold */
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
}

/* Background gradient for feature cards */
.feature-grid::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    z-index: -1;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: #1e3a5f;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.875rem;
    color: #6a6a6a;
}

/* Footer */
.footer {
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 20px;
    height: 20px;
    color: #9a9a9a;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #1e3a5f;
}

.social-link svg {
    width: 100%;
    height: 100%;
}

.footer-text {
    color: #9a9a9a;
    font-size: 0.875rem;
}

/* Responsive design */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .feature-grid {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 1.5rem;
    }
    
    .main {
        padding: 0 1.5rem 1.5rem;
    }
    
    .logo {
        height: 50px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 45px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}