/* ==========================================
   HERO CONTENT SECTION (Inside Scrollable Area)
   ========================================== */
.hero-content-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 120px;
    padding-bottom: 100px;
}

.hero-heading {
    font-size: 104px;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -3px;
    margin: 0;
}

.heading-primary {
    display: block;
    color: var(--text-primary);
}

.heading-secondary {
    display: block;
    color: var(--text-primary);
    opacity: 0.15;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #B3B3B3;
    max-width: 560px;
    margin: 0;
}

/* Hero Stats Cards */
.hero-stats {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.stat-card {
    position: relative;
    padding: 28px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    min-height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-orange {
    background: linear-gradient(135deg, #FF6A00 0%, #FF8533 100%);
}

.stat-lime {
    background: linear-gradient(135deg, #C4FF00 0%, #D4FF33 100%);
}

.stat-icon {
    width: 44px;
    height: 44px;
    margin-bottom: auto;
    padding-bottom: 16px;
}

.stat-icon svg {
    stroke: rgba(0, 0, 0, 0.85);
    stroke-width: 2;
}

.stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-title {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    color: #000000;
    letter-spacing: -0.3px;
}

.stat-subtitle {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.7);
}

.stat-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-arrow svg {
    stroke: rgba(0, 0, 0, 0.85);
}

.stat-card:hover .stat-arrow {
    transform: translate(3px, -3px);
    background: rgba(0, 0, 0, 0.15);
}

/* Download Resume Button */
.download-resume-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-top: 24px;
    overflow: hidden;
    cursor: pointer;
}

.download-resume-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.05), transparent);
    transition: left 0.6s;
}

.download-resume-btn:hover::before {
    left: 100%;
}

.download-resume-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 106, 0, 0.2);
}

.download-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF6A00 0%, #FF8533 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.download-icon svg {
    color: #FFFFFF;
    transition: transform 0.3s ease;
}

.download-resume-btn:hover .download-icon {
    transform: scale(1.05);
}

.download-resume-btn:hover .download-icon svg {
    transform: translateY(2px);
}

.download-content {
    flex: 1;
    padding: 0 20px;
    text-align: left;
}

.download-text {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.3px;
    display: block;
}

.download-arrow {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.download-arrow svg {
    color: #000000;
    transition: transform 0.3s ease;
}

.download-resume-btn:hover .download-arrow {
    background: rgba(255, 106, 0, 0.1);
    transform: translate(2px, -2px);
}

.download-resume-btn:hover .download-arrow svg {
    color: #FF6A00;
}
