/* =====================================
   NECK PAIN TREATMENT PAGE
   PART 1
===================================== */

.npt-shell{
    max-width:1180px;
    margin:0 auto;
    padding:0 30px;
}

.npt-hero-wrap{
    padding:100px 0;
    background:
    linear-gradient(
        135deg,
        #f4f9ff 0%,
        #edf7ff 100%
    );
    overflow:hidden;
    position:relative;
}

.npt-hero-wrap::before{
    content:'';
    position:absolute;
    width:550px;
    height:550px;
    border-radius:50%;
    background:rgba(14,116,144,.05);
    right:-220px;
    top:-220px;
}

.npt-hero-grid{
    display:grid;
    grid-template-columns:1.15fr 1fr;
    gap:80px;
    align-items:center;
}

.npt-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#dff6ff;
    color:#0e7490;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:22px;
}

.npt-hero-copy h1{
    font-size:58px;
    line-height:1.15;
    color:#0f172a;
    margin-bottom:25px;
    font-weight:800;
    letter-spacing:-1px;
}

.npt-hero-copy p{
    font-size:18px;
    line-height:1.95;
    color:#475569;
    margin-bottom:20px;
}

.npt-hero-media img{
    width:100%;
    display:block;
    border-radius:30px;
    box-shadow:
    0 25px 70px rgba(0,0,0,.12);
}

.npt-content-band{
    padding:110px 0;
}

.npt-soft-bg{
    background:#f8fafc;
}

.npt-two-column{
    display:grid;
    grid-template-columns:1.2fr .85fr;
    gap:70px;
    align-items:center;
}

.npt-main-copy h2,
.npt-feature-copy h2,
.npt-highlight-band h2,
.npt-benefits-zone h2,
.npt-cards-area h2,
.npt-recovery-section h2,
.npt-faq-zone h2,
.npt-summary-box h2{
    font-size:44px;
    line-height:1.25;
    color:#0f172a;
    margin-bottom:25px;
}

.npt-main-copy p,
.npt-feature-copy p{
    font-size:18px;
    line-height:1.95;
    color:#475569;
    margin-bottom:18px;
}

.npt-side-media img,
.npt-feature-image img{
    width:100%;
    display:block;
    border-radius:26px;
    box-shadow:
    0 18px 50px rgba(0,0,0,.10);
}

.npt-media-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/* =====================================
   NECK PAIN TREATMENT PAGE
   PART 2
===================================== */

.npt-highlight-band{
    padding:110px 0;
    background:#ffffff;
}

.npt-intro-text{
    max-width:800px;
    margin:0 auto;
    text-align:center;
    font-size:18px;
    line-height:1.9;
    color:#64748b;
}

.npt-highlight-band h2{
    text-align:center;
}

.npt-card-layout{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.npt-info-card{
    background:#ffffff;
    padding:35px;
    border-radius:24px;
    border:1px solid #e2e8f0;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
    transition:.35s ease;
}

.npt-info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.npt-info-card h3{
    font-size:22px;
    color:#0e7490;
    margin-bottom:15px;
}

.npt-info-card p{
    margin:0;
    color:#64748b;
    line-height:1.8;
    font-size:16px;
}

.npt-benefits-zone{
    padding:110px 0;
    background:
    linear-gradient(
        135deg,
        #0e7490 0%,
        #155e75 100%
    );
}

.npt-benefits-zone h2{
    color:#ffffff;
    text-align:center;
}

.npt-benefit-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    margin-top:50px;
}

.npt-benefit-box{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(8px);

    min-height:95px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:20px;
    border-radius:20px;

    color:#ffffff;
    text-align:center;
    font-size:15px;
    font-weight:600;
    line-height:1.6;

    transition:.3s ease;
}

.npt-benefit-box:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.18);
}

.npt-cards-area{
    padding:110px 0;
    background:#ffffff;
}

.npt-service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.npt-service-card{
    background:#ffffff;

    padding:35px;

    border-radius:24px;

    border-top:5px solid #0e7490;

    box-shadow:
    0 10px 35px rgba(0,0,0,.05);

    transition:.35s ease;
}

.npt-service-card:hover{
    transform:translateY(-8px);
    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.npt-service-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#0f172a;
}

.npt-service-card p{
    color:#64748b;
    line-height:1.85;
    margin:0;
}

.npt-feature-image img,
.npt-side-media img,
.npt-hero-media img{
    transition:.4s ease;
}

.npt-feature-image img:hover,
.npt-side-media img:hover,
.npt-hero-media img:hover{
    transform:translateY(-6px);
}

.npt-main-copy,
.npt-feature-copy{
    position:relative;
}

.npt-main-copy h2::after,
.npt-feature-copy h2::after{
    content:'';
    width:70px;
    height:4px;
    display:block;
    background:#0e7490;
    border-radius:10px;
    margin-top:15px;
}

.npt-highlight-band h2::after,
.npt-cards-area h2::after{
    content:'';
    width:70px;
    height:4px;
    display:block;
    margin:15px auto 0;
    background:#0e7490;
    border-radius:10px;
}

.npt-benefits-zone h2::after{
    content:'';
    width:70px;
    height:4px;
    display:block;
    margin:15px auto 0;
    background:#ffffff;
    border-radius:10px;
}

/* =====================================
   NECK PAIN TREATMENT PAGE
   PART 3
===================================== */

.npt-recovery-section{
    padding:110px 0;
    background:#f8fafc;
}

.npt-recovery-section h2{
    text-align:center;
}

.npt-recovery-section h2::after{
    content:'';
    width:70px;
    height:4px;
    display:block;
    margin:15px auto 0;
    background:#0e7490;
    border-radius:10px;
}

.npt-recovery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
}

.npt-recovery-card{
    background:#ffffff;
    padding:35px 25px;
    border-radius:24px;
    text-align:center;
    border:1px solid #e2e8f0;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
    transition:.35s ease;
}

.npt-recovery-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.npt-recovery-card h3{
    font-size:22px;
    color:#0e7490;
    margin-bottom:15px;
}

.npt-recovery-card p{
    color:#64748b;
    line-height:1.8;
    margin:0;
}

.npt-faq-zone{
    padding:110px 0;
    background:#ffffff;
}

.npt-faq-list{
    margin-top:50px;
}

.npt-faq-card{
    background:#ffffff;
    padding:30px;
    border-radius:22px;
    margin-bottom:20px;

    border-left:5px solid #0e7490;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    transition:.3s ease;
}

.npt-faq-card:hover{
    transform:translateY(-4px);
    box-shadow:
    0 18px 40px rgba(0,0,0,.08);
}

.npt-faq-card h3{
    font-size:22px;
    line-height:1.5;
    margin-bottom:15px;
    color:#0f172a;
}

.npt-faq-card p{
    color:#64748b;
    line-height:1.9;
    margin:0;
}

.npt-summary-section{
    padding:110px 0;
    background:#f8fafc;
}

.npt-summary-box{
    background:
    linear-gradient(
        135deg,
        #0e7490 0%,
        #155e75 100%
    );

    border-radius:30px;

    padding:60px;

    text-align:center;

    box-shadow:
    0 25px 60px rgba(14,116,144,.25);
}

.npt-summary-box h2{
    color:#ffffff;
    margin-bottom:25px;
}

.npt-summary-box p{
    color:rgba(255,255,255,.92);
    font-size:18px;
    line-height:1.95;
    max-width:900px;
    margin:0 auto 20px;
}

.npt-summary-box p:last-child{
    margin-bottom:0;
}

/* =====================================
   TABLET
===================================== */

@media(max-width:1024px){

    .npt-hero-grid,
    .npt-two-column,
    .npt-media-layout{
        grid-template-columns:1fr;
        gap:50px;
    }

    .npt-card-layout{
        grid-template-columns:repeat(2,1fr);
    }

    .npt-service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .npt-benefit-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .npt-recovery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .npt-hero-copy h1{
        font-size:46px;
    }

    .npt-main-copy h2,
    .npt-feature-copy h2,
    .npt-highlight-band h2,
    .npt-benefits-zone h2,
    .npt-cards-area h2,
    .npt-recovery-section h2,
    .npt-faq-zone h2,
    .npt-summary-box h2{
        font-size:38px;
    }
}

/* =====================================
   MOBILE
===================================== */

@media(max-width:768px){

    .npt-shell{
        padding:0 20px;
    }

    .npt-hero-wrap,
    .npt-content-band,
    .npt-highlight-band,
    .npt-benefits-zone,
    .npt-cards-area,
    .npt-recovery-section,
    .npt-faq-zone,
    .npt-summary-section{
        padding:70px 0;
    }

    .npt-hero-copy h1{
        font-size:34px;
        line-height:1.25;
    }

    .npt-main-copy h2,
    .npt-feature-copy h2,
    .npt-highlight-band h2,
    .npt-benefits-zone h2,
    .npt-cards-area h2,
    .npt-recovery-section h2,
    .npt-faq-zone h2,
    .npt-summary-box h2{
        font-size:30px;
        line-height:1.35;
    }

    .npt-card-layout,
    .npt-service-grid,
    .npt-benefit-grid,
    .npt-recovery-grid{
        grid-template-columns:1fr;
    }

    .npt-info-card,
    .npt-service-card,
    .npt-recovery-card{
        padding:25px;
    }

    .npt-summary-box{
        padding:35px 25px;
    }

    .npt-summary-box p,
    .npt-main-copy p,
    .npt-feature-copy p{
        font-size:16px;
        line-height:1.9;
    }

    .npt-faq-card{
        padding:22px;
    }

    .npt-faq-card h3{
        font-size:18px;
    }
}

/* =====================================
   SMALL MOBILE
===================================== */

@media(max-width:480px){

    .npt-shell{
        padding:0 15px;
    }

    .npt-hero-copy h1{
        font-size:28px;
    }

    .npt-main-copy h2,
    .npt-feature-copy h2,
    .npt-highlight-band h2,
    .npt-benefits-zone h2,
    .npt-cards-area h2,
    .npt-recovery-section h2,
    .npt-faq-zone h2,
    .npt-summary-box h2{
        font-size:24px;
    }

    .npt-info-card,
    .npt-service-card,
    .npt-recovery-card,
    .npt-faq-card{
        padding:20px;
    }

    .npt-summary-box{
        padding:30px 20px;
    }
}






/* ===== SPACE REDUCTION & VISUAL IMPROVEMENTS ===== */

.npt-hero-wrap{padding:70px 0;}
.npt-content-band,
.npt-highlight-band,
.npt-benefits-zone,
.npt-cards-area,
.npt-recovery-section,
.npt-faq-zone,
.npt-summary-section{
    padding:80px 0;
}

.npt-hero-grid,
.npt-two-column,
.npt-media-layout{
    gap:50px;
}

.npt-hero-copy h1{
    font-size:50px;
    margin-bottom:18px;
}

.npt-main-copy h2,
.npt-feature-copy h2,
.npt-highlight-band h2,
.npt-benefits-zone h2,
.npt-cards-area h2,
.npt-recovery-section h2,
.npt-faq-zone h2,
.npt-summary-box h2{
    font-size:38px;
    margin-bottom:18px;
}

.npt-main-copy p,
.npt-feature-copy p,
.npt-hero-copy p{
    line-height:1.75;
    margin-bottom:14px;
}

.npt-card-layout,
.npt-service-grid,
.npt-benefit-grid,
.npt-recovery-grid{
    margin-top:35px;
}

.npt-info-card,
.npt-service-card{
    padding:28px;
}

.npt-faq-list{
    margin-top:35px;
}

.npt-faq-card{
    padding:24px;
    margin-bottom:15px;
}

.npt-summary-box{
    padding:45px;
}

@media (max-width:768px){
    .npt-hero-wrap,
    .npt-content-band,
    .npt-highlight-band,
    .npt-benefits-zone,
    .npt-cards-area,
    .npt-recovery-section,
    .npt-faq-zone,
    .npt-summary-section{
        padding:55px 0;
    }

    .npt-hero-grid,
    .npt-two-column,
    .npt-media-layout{
        gap:30px;
    }

    .npt-card-layout,
    .npt-service-grid,
    .npt-benefit-grid,
    .npt-recovery-grid{
        gap:18px;
        margin-top:25px;
    }
}
