/* Hero Section */
.landing-hero-wrapper {
    background: white;
    color: #1a1a1a;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e5e5e5;
}

.landing-hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(0,0,0,0.02)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

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

.landing-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.landing-hero-text h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0;
    color: #666;
    text-align: left;
    line-height: 1.3;
}

.hero-content-wrapper {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin: 2rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text-section {
    flex: 2;
    display: flex;
    align-items: flex-start;
}

.hero-benefits {
    flex: 1;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    background: #f8f9fa;
    color: #1a1a1a;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    border: 1px solid #e5e5e5;
    justify-content: flex-start;
}

.benefit-icon {
    width: 22px;
    height: 22px;
    fill: #667eea;
    font-size: 22px;
}

.cta-section {
    margin-top: 2rem;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: #667eea;
    color: #000000 !important;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: #000000 !important;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.secondary-cta {
    margin-top: 1rem;
}

.secondary-cta a {
    color: #666;
    text-decoration: underline;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.secondary-cta a:hover {
    color: #1a1a1a;
}

/* Quick Access Section - Changed from white to grey background */
.quick-access {
    padding: 1.5rem 20px;
    background: #f8f9fa;
}

.quick-access-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #667eea;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleY(1);
}

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

.card-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 1rem;
    fill: #667eea;
    font-size: 72px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #1a1a1a;
}

.card-link.black-text {
    color: #000000;
    font-weight: 700;
}

.card-link.black-text:hover {
    color: #1a1a1a;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.card-link:hover .arrow-icon {
    transform: translateX(4px);
}

/* Info Block */
.landing-info-block {
    background: #1a1a1a;
    color: white;
    padding: 1.5rem 20px;
    text-align: center;
}

.info-container {
    max-width: 800px;
    margin: 0 auto;
}

.landing-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.landing-info-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .landing-hero-text h2 {
        font-size: 1.2rem;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .landing-hero-text h2 {
        text-align: center;
    }
    
    .hero-benefits {
        align-items: center;
    }
    
    .benefit-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .grid-cards {
        grid-template-columns: 1fr;
    }
}