* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #00aeef;
    background: rgba(0, 174, 239, 0.08);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* ========== FREELANCER HERO SECTION (AI Hero Style) ========== */
.freelancer-hero-section {
    position: relative;
    background: linear-gradient(135deg, #0a1a2f 0%, #0c1e35 100%);
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.freelancer-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1000&h=700&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to left, black 70%, transparent 100%);
    mask-image: linear-gradient(to left, black 70%, transparent 100%);
    pointer-events: none;
}

.freelancer-hero-section .neural-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1.5'%3E%3Cpath d='M100 100 L300 200 L200 400 L400 500'/%3E%3Cpath d='M500 100 L600 300 L400 400 L700 600'/%3E%3Ccircle cx='100' cy='100' r='4' fill='rgba(0,174,239,0.2)'/%3E%3Ccircle cx='300' cy='200' r='3' fill='rgba(0,174,239,0.2)'/%3E%3Ccircle cx='200' cy='400' r='5' fill='rgba(0,167,157,0.2)'/%3E%3Ccircle cx='400' cy='500' r='3' fill='rgba(0,174,239,0.2)'/%3E%3Ccircle cx='500' cy='100' r='4' fill='rgba(0,167,157,0.2)'/%3E%3Ccircle cx='600' cy='300' r='3' fill='rgba(0,174,239,0.2)'/%3E%3Ccircle cx='700' cy='600' r='5' fill='rgba(0,167,157,0.2)'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 60px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.freelancer-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(10, 26, 47, 1) 0%, 
        rgba(10, 26, 47, 0.95) 35%,
        rgba(10, 26, 47, 0.5) 65%,
        rgba(10, 26, 47, 0) 100%);
    z-index: 1;
}

.hero-glow {
    position: absolute;
    bottom: -80px;
    left: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
    pointer-events: none;
}

.freelancer-hero-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 24px;
    z-index: 2;
    width: 100%;
}

.freelancer-hero-content {
    max-width: 650px;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    margin-bottom: 24px;
}

.badge-text {
    display: inline-block;
    background: rgba(0, 174, 239, 0.12);
    backdrop-filter: blur(4px);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #00aeef;
    text-transform: uppercase;
}

/* Hero Title */
.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #00aeef 0%, #00a79d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Hero Description */
.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00aeef;
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: #0095cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 174, 239, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    font-size: 13px;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .freelancer-hero-section::before {
        width: 70%;
        opacity: 0.35;
    }
}

@media (max-width: 768px) {
    .freelancer-hero-section::before {
        width: 100%;
        opacity: 0.2;
        -webkit-mask-image: linear-gradient(to left, black 50%, transparent 100%);
        mask-image: linear-gradient(to left, black 50%, transparent 100%);
    }
    
    .freelancer-hero-overlay {
        background: linear-gradient(90deg, 
            rgba(10, 26, 47, 1) 0%, 
            rgba(10, 26, 47, 0.95) 40%,
            rgba(10, 26, 47, 0.85) 100%);
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .freelancer-hero-container {
        padding: 80px 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }
    
    .freelancer-hero-content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .badge-text {
        font-size: 10px;
        padding: 6px 14px;
    }
}
/* ========== SECTION 2: PROTOCOL ========== */
.protocol-section {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}

.protocol-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.protocol-left {
    flex: 1;
    min-width: 280px;
}

.protocol-left h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.protocol-description {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 30px;
}

.protocol-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.protocol-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 174, 239, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 22px;
    color: #00aeef;
}

.protocol-feature h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.protocol-feature p {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.protocol-right {
    flex: 1;
    min-width: 280px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.step-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 36px;
    font-weight: 800;
    color: #00aeef;
    margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.step-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}

/* ========== SECTION 3: EXPERTISE ========== */
.expertise-section {
    padding: 80px 0;
    background: #ffffff;
}

.expertise-wrapper {
    display: flex;
    gap: 90px;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.expertise-left {
    flex: 1;
    min-width: 280px;
}

.expertise-left h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.expertise-description {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    font-size: 16px;
    color: #334155;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.expertise-list li i {
    color: #00aeef;
    font-size: 18px;
}

.expertise-right {
    flex: 1;
    min-width: 280px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.expertise-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.expertise-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.tech-stack {
    font-size: 11px;
    font-weight: 700;
    color: #00aeef;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}

/* ========== SECTION 4: DEPLOY ========== */
.deploy-section {
    padding: 80px 0;
    background: #0a1a2f;
}

.deploy-header {
    text-align: center;
    margin-bottom: 60px;
}

.deploy-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.deploy-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.deploy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.deploy-step {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.deploy-step:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.step-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}

.step-circle.highlight {
    background: #00aeef;
    color: #ffffff;
}

.deploy-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.deploy-step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ========== SECTION 5: DIFFERENCE ========== */
.difference-section {
    padding: 80px 0;
    background: #ffffff;
}

.difference-header {
    text-align: center;
    margin-bottom: 50px;
}

.difference-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.comparison-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.comparison-col {
    flex: 1;
    min-width: 280px;
    border-radius: 24px;
    overflow: hidden;
}

.freelancer-col {
    background: #f8fafc;
    border: 1px solid #eef2f6;
}

.managed-col {
    background: linear-gradient(135deg, #00aeef, #00a79d);
    color: white;
}

.comparison-header {
    padding: 24px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-header i {
    font-size: 28px;
}

.comparison-header h3 {
    font-size: 24px;
    font-weight: 700;
}

.comparison-list {
    list-style: none;
    padding: 24px 30px;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
}

.comparison-list.negative li i {
    color: #ef4444;
}

.comparison-list.positive li i {
    color: #ffffff;
}

.managed-col .comparison-list li {
    color: rgba(255, 255, 255, 0.9);
}


/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }
    
    .protocol-left h2,
    .expertise-left h2 {
        font-size: 36px;
    }
    
    .deploy-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .protocol-wrapper,
    .expertise-wrapper {
        flex-direction: column;
    }
    
    .steps-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .deploy-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-wrapper {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    form {
        padding: 24px;
    }
    
    .form-header {
        padding: 30px 20px;
    }
    
    .form-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .protocol-left h2,
    .expertise-left h2,
    .deploy-header h2 {
        font-size: 28px;
    }
    
    .difference-header h2 {
        font-size: 26px;
    }
    
    .step-card,
    .expertise-card {
        padding: 20px;
    }
    .difference-section {
    padding: 30px 0;
    }
    
}