/* ===== Home Page ===== */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 55%, #f8fafc 100%);
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: 3.2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 55%;
    height: 55%;
    background: radial-gradient(circle, rgba(191, 219, 254, 0.65) 0%, transparent 72%);
    border-radius: 50%;
    opacity: 0.7;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(219, 234, 254, 0.7) 0%, transparent 72%);
    border-radius: 50%;
    opacity: 0.65;
}

.hero-content {
    max-width: 680px;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.38rem 0.8rem;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    color: #1e40af;
    background: #eff6ff;
    font-size: 0.82rem;
    font-weight: 600;
}

.profile-image {
    margin-bottom: 1rem;
    animation: slideUp 0.8s ease-out;
}

.profile-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: 35% 35%;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.22);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.9rem;
    letter-spacing: -0.035em;
    animation: slideUp 0.8s ease-out 0.1s both;
    text-wrap: balance;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #334155;
    margin-bottom: 1rem;
    font-weight: 600;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 1.4rem;
    line-height: 1.75;
    animation: slideUp 0.8s ease-out 0.3s both;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.7rem;
}

.hero-points span {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #334155;
    border-radius: 999px;
    padding: 0.4rem 0.75rem;
    font-size: 0.83rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-visual-card {
    padding: 1.4rem;
}

.hero-visual-card h3 {
    margin-bottom: 0.45rem;
    color: #0f172a;
    font-size: 1.1rem;
}

.hero-visual-card p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.94rem;
}

.hero-visual-card .btn {
    width: 100%;
    text-align: center;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    pointer-events: none;
}

/* ===== Quick Stats ===== */
.quick-stats {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 80px 20px;
}

.quick-stats .container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card {
    text-align: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.5rem 1rem;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.stat-card h3 {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-card p {
    color: #64748b;
    font-size: 1rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero {
        margin-top: 60px;
        min-height: auto;
        padding: 46px 20px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-title {
        font-size: 2rem;
    }

    .quick-stats .container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
