.hero-section {
    padding: 140px 0 60px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat {
    padding: 15px;
}

.hero-stat h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.hero-stat p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: box-shadow 0.2s;
}

.feature-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: border-color 0.2s;
}

.pricing-card:hover {
    border-color: var(--primary);
}

.pricing-featured {
    border-color: var(--primary);
    transform: scale(1.03);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-name {
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-price {
    margin-bottom: 10px;
}

.pricing-amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
}

.pricing-unit {
    font-size: 16px;
    color: var(--text-muted);
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.pricing-features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-dark);
}

.pricing-features li i {
    color: var(--success);
    margin-right: 8px;
    width: 16px;
}

.about-icon-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.contact-card {
    padding: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-card h6 {
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-card p {
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .hero-title { font-size: 28px; }
    .hero-subtitle { font-size: 15px; }
    .pricing-featured { transform: none; }
}
