/* Main Content */
.main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 146px 80px 100px;
    margin-top: 90px;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 90px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Intro Text */
.intro-text {
    width: 640px;
}

.intro-text h1 {
    color: var(--primary-text);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.intro-text .highlight {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.subtitle {
    color: var(--secondary-text);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.description {
    color: var(--primary-text);
    font-size: 18px;
    font-weight: 400;
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.9;
}

.stats {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    color: var(--secondary-text);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--primary-text);
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--button-primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    border: 1px solid var(--border-color);
    color: var(--border-color);
    background: var(--button-secondary);
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

/* Profile Image Container */
.profile-image-container {
    position: relative;
    flex-shrink: 0;
    width: 460px;
    height: 460px;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 136, 255, 0.2);
    border: 10px solid transparent;
    background: linear-gradient(var(--primary-bg), var(--primary-bg)) padding-box,
                var(--gradient-blue) border-box;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-image:hover {
    transform: scale(1.03);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-decoration {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px dashed rgb(63, 131, 209);
    animation: rotate 60s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s;
    color: white;
    background: var(--gradient-blue);
}

.floating-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.floating-icon.html {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.floating-icon.css {
    bottom: 10%;
    left: -8%;
    animation-delay: -1.5s;
}

.floating-icon.figma {
    top: -5%;
    right: -8%;
    animation-delay: -3s;
}

.floating-icon.wordpress {
    bottom: 20%;
    right: -12%;
    animation-delay: -4.5s;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
    }
}

/* Homepage Responsive */
@media (max-width: 1024px) {
    .main-content {
        padding: 130px 40px 80px;
        flex-direction: column;
        text-align: center;
        gap: 60px;
        margin-top: 80px;
    }
    
    .intro-text {
        width: 100%;
        max-width: 700px;
    }
    
    .intro-text h1 {
        font-size: 44px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .subtitle {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .description {
        width: 100%;
        max-width: 600px;
        margin: 0 auto 40px;
        font-size: 17px;
        line-height: 1.7;
    }
    
    .stats {
        justify-content: center;
        gap: 60px;
        margin-bottom: 35px;
    }
    
    .stat-number {
        font-size: 30px;
    }
    
    .stat-label {
        font-size: 15px;
    }
    
    .buttons {
        justify-content: center;
        gap: 20px;
    }
    
    .btn {
        padding: 13px 30px;
        font-size: 15px;
    }
    
    .profile-image-container {
        width: 360px;
        height: 360px;
        margin: 0 auto;
    }
    
    .profile-decoration {
        width: 390px;
        height: 390px;
    }
    
    .floating-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
    
    .floating-icon.html {
        top: 8%;
        left: 2%;
    }
    
    .floating-icon.css {
        bottom: 8%;
        left: 4%;
    }
    
    .floating-icon.figma {
        top: 0%;
        right: 2%;
    }
    
    .floating-icon.wordpress {
        bottom: 15%;
        right: 4%;
    }
}

@media (max-width: 767px) {
    .main-content {
        padding: 120px 30px 70px;
        margin-top: 75px;
        gap: 50px;
    }
    
    .intro-text h1 {
        font-size: 38px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .profile-image-container {
        width: 320px;
        height: 320px;
    }
    
    .profile-decoration {
        width: 350px;
        height: 350px;
    }
    
    .floating-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .main-content {
        padding: 110px 24px 60px;
        margin-top: 80px;
        min-height: calc(100vh - 80px);
        gap: 50px;
    }
    
    .intro-text h1 {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .description {
        font-size: 16px;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .stats {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
    }
    
    .profile-image-container {
        width: 300px;
        height: 300px;
    }
    
    .profile-decoration {
        width: 330px;
        height: 330px;
    }
    
    .floating-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .floating-icon.html {
        top: 8%;
        left: 2%;
    }
    
    .floating-icon.css {
        bottom: 5%;
        left: 4%;
    }
    
    .floating-icon.figma {
        top: 0%;
        right: 2%;
    }
    
    .floating-icon.wordpress {
        bottom: 12%;
        right: 4%;
    }
}

@media (max-width: 576px) {
    .main-content {
        padding: 100px 20px 50px;
        margin-top: 70px;
        min-height: calc(100vh - 70px);
        gap: 40px;
    }
    
    .intro-text h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    
    .stats {
        flex-direction: row;
        gap: 30px;
        margin-bottom: 25px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 15px;
        max-width: 100%;
    }
    
    .profile-image-container {
        width: 250px;
        height: 250px;
    }
    
    .profile-decoration {
        width: 280px;
        height: 280px;
    }
    
    .profile-image {
        border-width: 8px;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .floating-icon.html {
        top: 5%;
        left: 5%;
    }
    
    .floating-icon.css {
        bottom: 3%;
        left: 7%;
    }
    
    .floating-icon.figma {
        top: 5%;
        right: 5%;
    }
    
    .floating-icon.wordpress {
        bottom: 10%;
        right: 7%;
    }
}

@media (max-width: 400px) {
    .main-content {
        padding: 90px 16px 40px;
    }
    
    .intro-text h1 {
        font-size: 28px;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .profile-image-container {
        width: 220px;
        height: 220px;
    }
    
    .profile-decoration {
        width: 240px;
        height: 240px;
    }
    
    .floating-icon {
        display: none;
    }
}

@media (min-width: 1400px) {
    .main-content {
        padding-left: calc((100vw - 1400px) / 2 + 80px);
        padding-right: calc((100vw - 1400px) / 2 + 80px);
    }
}