:root{
    --remote-primary:#0b1f3a;
    --remote-secondary:#ff7a00;
    --remote-light:#f4f7fb;
    --remote-border:#e5e7eb;
    --remote-text:#1f2937;
    --remote-text-light:#6b7280;
    --remote-white:#ffffff;
    --remote-success:#16a34a;
    --remote-shadow:0 10px 40px rgba(15,23,42,0.08);
    --remote-radius:24px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.remote-salary-container{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding-left:20px;
    padding-right:20px;
}

/* ===================================================
   HERO
=================================================== */

.remote-salary-hero{
    position:relative;
    padding:90px 0 70px;
    background:
    linear-gradient(135deg,#071426 0%,#0b1f3a 100%);
    overflow:hidden;
}

.remote-salary-hero::before{
    content:'';
    position:absolute;
    top:-120px;
    right:-120px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,255,255,0.04);
}

.remote-salary-hero::after{
    content:'';
    position:absolute;
    bottom:-140px;
    left:-140px;
    width:380px;
    height:380px;
    border-radius:50%;
    background:rgba(255,122,0,0.08);
}

.remote-salary-hero .remote-salary-container{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    align-items:center;
    gap:60px;
    position:relative;
    z-index:2;
}

.remote-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 20px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:999px;
    color:#fff;
    font-size:14px;
    font-weight:700;
    margin-bottom:24px;
    backdrop-filter:blur(10px);
}

.remote-salary-left h1{
    font-size:58px;
    line-height:1.08;
    font-weight:900;
    color:#fff;
    margin-bottom:24px;
    letter-spacing:-1px;
}

.remote-desc{
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,0.82);
    margin-bottom:35px;
    max-width:680px;
}

.remote-features{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}

.remote-feature-item{
    display:flex;
    align-items:center;
    padding:18px 20px;
    border-radius:18px;
    background:rgba(255,255,255,0.06);
    color:#fff;
    font-size:15px;
    font-weight:700;
    border:1px solid rgba(255,255,255,0.08);
}

.remote-salary-right img{
    width:100%;
    height:auto;
    border-radius:30px;
    display:block;
    box-shadow:0 25px 70px rgba(0,0,0,0.35);
}

/* ===================================================
   CALCULATOR
=================================================== */

.remote-calculator-section{
    padding:70px 0 30px;
    background:var(--remote-light);
}

.remote-calculator-card{
    background:var(--remote-white);
    border-radius:30px;
    padding:45px;
    box-shadow:var(--remote-shadow);
    border:1px solid var(--remote-border);
}

.remote-card-header{
    text-align:center;
    margin-bottom:40px;
}

.remote-card-header h2{
    font-size:38px;
    color:var(--remote-primary);
    margin-bottom:14px;
    font-weight:900;
}

.remote-card-header p{
    color:var(--remote-text-light);
    font-size:17px;
    line-height:1.7;
}

.remote-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
}

.remote-form-group{
    display:flex;
    flex-direction:column;
}

.remote-form-group label{
    margin-bottom:10px;
    font-size:15px;
    font-weight:700;
    color:var(--remote-primary);
}

.remote-form-group input,
.remote-form-group select{
    width:100%;
    height:62px;
    padding:0 20px;
    border-radius:18px;
    border:1px solid #d7dde7;
    background:#fff;
    font-size:16px;
    font-weight:600;
    color:var(--remote-text);
    transition:all .25s ease;
    outline:none;
}

.remote-form-group input:focus,
.remote-form-group select:focus{
    border-color:var(--remote-secondary);
    box-shadow:0 0 0 4px rgba(255,122,0,0.12);
}

.remote-calculate-btn{
    width:100%;
    border:none;
    margin-top:30px;
    height:68px;
    border-radius:20px;
    background:linear-gradient(135deg,#ff7a00 0%,#ff5500 100%);
    color:#fff;
    font-size:18px;
    font-weight:800;
    cursor:pointer;
    transition:all .3s ease;
    box-shadow:0 12px 35px rgba(255,122,0,0.30);
}

.remote-calculate-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 45px rgba(255,122,0,0.35);
}

/* ===================================================
   RESULTS
=================================================== */

.remote-result-section{
    padding:30px 0 80px;
    background:var(--remote-light);
}

.remote-result-card{
    background:#fff;
    border-radius:30px;
    padding:45px;
    border:1px solid var(--remote-border);
    box-shadow:var(--remote-shadow);
}

.remote-result-header{
    margin-bottom:35px;
}

.remote-result-header h3{
    font-size:34px;
    color:var(--remote-primary);
    font-weight:900;
}

.remote-result-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:24px;
}

.remote-result-item{
    background:#f8fafc;
    border:1px solid #e8edf5;
    border-radius:24px;
    padding:26px;
    transition:all .25s ease;
}

.remote-result-item:hover{
    transform:translateY(-4px);
    border-color:#ffd2aa;
}

.remote-result-item span{
    display:block;
    font-size:14px;
    color:var(--remote-text-light);
    margin-bottom:12px;
    font-weight:600;
}

.remote-result-item strong{
    font-size:28px;
    line-height:1.2;
    color:var(--remote-primary);
    font-weight:900;
    word-break:break-word;
}

.total-cost{
    background:linear-gradient(135deg,#0b1f3a 0%,#132d52 100%);
    border:none;
}

.total-cost span{
    color:rgba(255,255,255,0.75);
}

.total-cost strong{
    color:#fff;
}

/* ===================================================
   SEO CONTENT
=================================================== */

.remote-seo-content{
    padding:0 0 100px;
    background:var(--remote-light);
}

.remote-content-box{
    background:#fff;
    border-radius:30px;
    padding:50px;
    box-shadow:var(--remote-shadow);
    border:1px solid var(--remote-border);
}

.remote-content-box h2{
    font-size:40px;
    line-height:1.2;
    margin-bottom:24px;
    color:var(--remote-primary);
    font-weight:900;
}

.remote-content-box p{
    font-size:17px;
    line-height:1.9;
    color:var(--remote-text);
    margin-bottom:24px;
}

.remote-content-box img{
    width:100%;
    height:auto;
    border-radius:26px;
    margin-top:20px;
    display:block;
}

/* ===================================================
   MOBILE
=================================================== */

@media (max-width:1200px){

    .remote-result-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

@media (max-width:992px){

    .remote-salary-hero .remote-salary-container{
        grid-template-columns:1fr;
    }

    .remote-salary-left{
        order:2;
    }

    .remote-salary-right{
        order:1;
    }

    .remote-salary-left h1{
        font-size:46px;
    }

    .remote-grid{
        grid-template-columns:1fr;
    }

}

@media (max-width:768px){

    .remote-salary-hero{
        padding:70px 0 50px;
    }

    .remote-salary-left h1{
        font-size:36px;
    }

    .remote-desc{
        font-size:16px;
    }

    .remote-features{
        grid-template-columns:1fr;
    }

    .remote-calculator-card,
    .remote-result-card,
    .remote-content-box{
        padding:28px;
        border-radius:24px;
    }

    .remote-card-header h2{
        font-size:30px;
    }

    .remote-result-header h3{
        font-size:28px;
    }

    .remote-result-grid{
        grid-template-columns:1fr;
    }

    .remote-result-item strong{
        font-size:24px;
    }

    .remote-content-box h2{
        font-size:32px;
    }

}

@media (max-width:480px){

    .remote-salary-container{
        padding-left:14px;
        padding-right:14px;
    }

    .remote-salary-left h1{
        font-size:30px;
    }

    .remote-card-header h2{
        font-size:26px;
    }

    .remote-content-box h2{
        font-size:28px;
    }

    .remote-form-group input,
    .remote-form-group select{
        height:58px;
        font-size:15px;
    }

    .remote-calculate-btn{
        height:62px;
        font-size:16px;
    }

}