/* ===================================================
   CERVA PREMIUM CSS V2
   PART 1
   GLOBAL + HERO
=================================================== */

:root{
    --primary:#0d6efd;
    --primary-dark:#0a58ca;
    --secondary:#00b7ff;

    --heading:#0f172a;
    --text:#5b6677;

    --bg:#f8fbff;
    --white:#ffffff;

    --radius-sm:12px;
    --radius-md:18px;
    --radius-lg:26px;

    --shadow-sm:0 10px 30px rgba(15,23,42,.06);
    --shadow-md:0 20px 60px rgba(15,23,42,.08);
    --shadow-lg:0 30px 90px rgba(15,23,42,.12);
}

.cerva-shell{
    width:min(1240px,calc(100% - 32px));
    margin:auto;
}

.cerva-section-tag,
.cerva-chip,
.cerva-mini-label{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 16px;
    border-radius:999px;
    background:#eaf5ff;
    color:var(--primary);
    font-size:12px;
    font-weight:700;
    letter-spacing:.4px;
    text-transform:uppercase;
}

.cerva-section-tag{
    margin-bottom:18px;
}

.cerva-hero{
    padding:70px 0;
    background:
    radial-gradient(circle at top left,rgba(13,110,253,.10),transparent 30%),
    linear-gradient(180deg,#fbfdff 0%,#f5faff 100%);
}

.cerva-hero-layout{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
}

.cerva-hero h1{
    font-size:58px;
    line-height:1.08;
    font-weight:800;
    color:var(--heading);
    margin:20px 0;
    letter-spacing:-1.5px;
}

.cerva-intro{
    font-size:16px;
    line-height:1.9;
    color:var(--text);
    margin:0 0 18px;
}

.cerva-action-row{
    display:flex;
    gap:16px;
    margin-top:30px;
    flex-wrap:wrap;
}

.cerva-btn-primary,
.cerva-btn-secondary{
    min-height:56px;
    padding:0 26px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.cerva-btn-primary{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    box-shadow:0 15px 40px rgba(13,110,253,.25);
}

.cerva-btn-primary:hover{
    transform:translateY(-3px);
}

.cerva-btn-secondary{
    background:#fff;
    color:var(--heading);
    border:1px solid rgba(0,0,0,.08);
}

.cerva-btn-secondary:hover{
    transform:translateY(-3px);
}

.cerva-trust-row{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:24px;
}

.cerva-trust-row span{
    background:#fff;
    border:1px solid rgba(0,0,0,.06);
    padding:10px 14px;
    border-radius:12px;
    font-size:13px;
    font-weight:600;
    color:#334155;
}

.cerva-hero-media{
    position:relative;
}

.cerva-hero-media img{
    width:100%;
    display:block;
    border-radius:24px;
    box-shadow:var(--shadow-lg);
}

.cerva-float-card{
    position:absolute;
    background:#fff;
    border-radius:18px;
    padding:16px 18px;
    box-shadow:var(--shadow-md);
    max-width:220px;
}

.cerva-float-card strong{
    display:block;
    margin-bottom:6px;
    color:var(--heading);
}

.cerva-float-card span{
    font-size:13px;
    line-height:1.6;
    color:var(--text);
}

.cerva-float-a{
    left:-20px;
    bottom:30px;
}

.cerva-float-b{
    right:-20px;
    top:30px;
}

/* TABLET */

@media(max-width:1024px){

    .cerva-hero-layout{
        grid-template-columns:1fr;
        gap:40px;
    }

    .cerva-hero h1{
        font-size:46px;
    }

    .cerva-float-card{
        display:none;
    }
}

/* MOBILE */

@media(max-width:768px){

    .cerva-hero{
        padding:35px 0;
    }

    .cerva-hero h1{
        font-size:34px;
        line-height:1.15;
        margin:16px 0;
        letter-spacing:-0.8px;
    }

    .cerva-intro{
        font-size:15px;
        line-height:1.8;
    }

    .cerva-action-row{
        flex-direction:column;
    }

    .cerva-btn-primary,
    .cerva-btn-secondary{
        width:100%;
    }

    .cerva-trust-row{
        gap:8px;
    }

    .cerva-trust-row span{
        font-size:12px;
    }
}


/* ===================================================
   CERVA PREMIUM CSS V2
   PART 2
   CONTENT SECTIONS
=================================================== */

.cerva-snapshot,
.cerva-overview,
.cerva-cause-zone,
.cerva-rehab-path,
.cerva-methods{
    padding:90px 0;
}

/* =========================
   SECTION HEADINGS
========================= */

.cerva-snapshot-head,
.cerva-cause-head,
.cerva-methods-head{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.cerva-snapshot-head h2,
.cerva-cause-head h2,
.cerva-methods-head h2,
.cerva-overview-content h2,
.cerva-rehab-content h2{
    font-size:48px;
    line-height:1.15;
    font-weight:800;
    color:var(--heading);
    margin:0 0 18px;
    letter-spacing:-1px;
}

.cerva-snapshot-head p,
.cerva-cause-head p,
.cerva-overview-content p,
.cerva-rehab-content p{
    color:var(--text);
    line-height:1.9;
    font-size:16px;
}

/* =========================
   SNAPSHOT CARDS
========================= */

.cerva-snapshot-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.cerva-snapshot-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:var(--shadow-sm);
    border:1px solid rgba(15,23,42,.05);
    transition:.35s;
}

.cerva-snapshot-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-md);
}

.cerva-icon-wrap{
    width:56px;
    height:56px;
    border-radius:14px;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    margin-bottom:18px;
}

.cerva-snapshot-card h3{
    margin:0 0 12px;
    color:var(--heading);
    font-size:22px;
}

.cerva-snapshot-card p{
    margin:0;
    color:var(--text);
    line-height:1.8;
}

/* =========================
   OVERVIEW SECTION
========================= */

.cerva-overview{
    background:#fff;
}

.cerva-overview-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:70px;
    align-items:center;
}

.cerva-overview-image img{
    width:100%;
    display:block;
    border-radius:24px;
    box-shadow:var(--shadow-lg);
}

.cerva-overview-content p{
    margin:0 0 18px;
}

/* =========================
   CAUSE SECTION
========================= */

.cerva-cause-zone{
    background:#f7fbff;
}

.cerva-cause-layout{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.cerva-cause-box{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:var(--shadow-sm);
    border:1px solid rgba(15,23,42,.05);
    transition:.35s;
}

.cerva-cause-box:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-md);
}

.cerva-cause-box h3{
    margin:0 0 14px;
    color:var(--heading);
    font-size:22px;
}

.cerva-cause-box p{
    margin:0;
    color:var(--text);
    line-height:1.8;
}

/* =========================
   REHAB SECTION
========================= */

.cerva-rehab-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
}

.cerva-rehab-image img{
    width:100%;
    display:block;
    border-radius:24px;
    box-shadow:var(--shadow-lg);
}

.cerva-rehab-content p{
    margin:0 0 18px;
}

/* =========================
   METHODS SECTION
========================= */

.cerva-methods{
    background:#0f172a;
}

.cerva-methods-head h2{
    color:#fff;
}

.cerva-methods-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.cerva-method-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:30px;
    transition:.35s;
}

.cerva-method-card:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.08);
}

.cerva-method-no{
    width:56px;
    height:56px;
    border-radius:14px;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    margin-bottom:18px;
}

.cerva-method-card h3{
    margin:0 0 12px;
    color:#fff;
    font-size:22px;
}

.cerva-method-card p{
    margin:0;
    color:rgba(255,255,255,.75);
    line-height:1.8;
}

/* =========================
   TABLET
========================= */

@media(max-width:1024px){

    .cerva-snapshot-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cerva-cause-layout{
        grid-template-columns:repeat(2,1fr);
    }

    .cerva-methods-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cerva-overview-grid,
    .cerva-rehab-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .cerva-snapshot-head h2,
    .cerva-cause-head h2,
    .cerva-methods-head h2,
    .cerva-overview-content h2,
    .cerva-rehab-content h2{
        font-size:40px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .cerva-snapshot,
    .cerva-overview,
    .cerva-cause-zone,
    .cerva-rehab-path,
    .cerva-methods{
        padding:60px 0;
    }

    .cerva-snapshot-grid,
    .cerva-cause-layout,
    .cerva-methods-grid{
        grid-template-columns:1fr;
    }

    .cerva-snapshot-head,
    .cerva-cause-head,
    .cerva-methods-head{
        margin-bottom:40px;
    }

    .cerva-snapshot-head h2,
    .cerva-cause-head h2,
    .cerva-methods-head h2,
    .cerva-overview-content h2,
    .cerva-rehab-content h2{
        font-size:30px;
        line-height:1.2;
    }

    .cerva-snapshot-card,
    .cerva-cause-box,
    .cerva-method-card{
        padding:24px;
    }

    .cerva-snapshot-card h3,
    .cerva-cause-box h3,
    .cerva-method-card h3{
        font-size:20px;
    }
}

/* ===================================================
   CERVA PREMIUM CSS V2
   PART 3
   BENEFITS + FAQ + CTA
=================================================== */

/* =========================
   BENEFITS
========================= */

.cerva-benefits{
    padding:90px 0;
    background:#f8fbff;
}

.cerva-benefits-layout{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:70px;
    align-items:center;
}

.cerva-benefits-image img{
    width:100%;
    display:block;
    border-radius:24px;
    box-shadow:var(--shadow-lg);
}

.cerva-benefits-content h2{
    font-size:48px;
    line-height:1.15;
    font-weight:800;
    color:var(--heading);
    margin:0 0 20px;
    letter-spacing:-1px;
}

.cerva-benefits-content > p{
    margin:0 0 24px;
    color:var(--text);
    line-height:1.9;
}

.cerva-benefit-list{
    display:grid;
    gap:18px;
}

.cerva-benefit-item{
    background:#fff;
    border-radius:18px;
    padding:22px 24px;
    border:1px solid rgba(15,23,42,.05);
    box-shadow:var(--shadow-sm);
}

.cerva-benefit-item strong{
    display:block;
    margin-bottom:8px;
    color:var(--heading);
    font-size:18px;
}

.cerva-benefit-item p{
    margin:0;
    color:var(--text);
    line-height:1.8;
}

/* =========================
   LIFESTYLE
========================= */

.cerva-lifestyle{
    padding:90px 0;
    background:#fff;
}

.cerva-lifestyle-head{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.cerva-lifestyle-head h2{
    font-size:48px;
    line-height:1.15;
    font-weight:800;
    color:var(--heading);
    margin:0 0 18px;
}

.cerva-lifestyle-head p{
    color:var(--text);
    line-height:1.9;
}

.cerva-lifestyle-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.cerva-life-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    border:1px solid rgba(15,23,42,.05);
    box-shadow:var(--shadow-sm);
    transition:.35s;
}

.cerva-life-card:hover{
    transform:translateY(-6px);
}

.cerva-life-card h3{
    margin:0 0 12px;
    font-size:22px;
    color:var(--heading);
}

.cerva-life-card p{
    margin:0;
    color:var(--text);
    line-height:1.8;
}

/* =========================
   CANDIDATES
========================= */

.cerva-candidates{
    padding:90px 0;
    background:#f8fbff;
}

.cerva-center-title{
    text-align:center;
    max-width:850px;
    margin:20px auto 50px;
    font-size:48px;
    line-height:1.15;
    color:var(--heading);
    font-weight:800;
}

.cerva-candidate-wrap{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.cerva-candidate{
    background:#fff;
    border-radius:18px;
    padding:24px;
    text-align:center;
    border:1px solid rgba(15,23,42,.05);
    box-shadow:var(--shadow-sm);
    color:#334155;
    font-weight:600;
    line-height:1.7;
}

/* =========================
   FAQ
========================= */

.cerva-faq-zone{
    padding:100px 0;
    background:#fff;
}

.cerva-faq-head{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.cerva-faq-head h2{
    font-size:48px;
    line-height:1.15;
    color:var(--heading);
    font-weight:800;
    margin:0 0 18px;
}

.cerva-faq-head p{
    color:var(--text);
    line-height:1.9;
}

.cerva-faq-stack{
    display:grid;
    gap:18px;
}

.cerva-faq-item{
    border-radius:18px;
    border:1px solid rgba(15,23,42,.06);
    background:#fff;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
}

.cerva-faq-item summary{
    display:flex;
    align-items:center;
    gap:18px;
    cursor:pointer;
    padding:22px 24px;
    list-style:none;
}

.cerva-faq-item summary::-webkit-details-marker{
    display:none;
}

.cerva-faq-number{
    width:48px;
    height:48px;
    flex-shrink:0;
    border-radius:12px;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
}

.cerva-faq-question{
    font-size:18px;
    font-weight:700;
    color:var(--heading);
}

.cerva-faq-answer{
    padding:0 24px 24px 90px;
}

.cerva-faq-answer p{
    margin:0;
    color:var(--text);
    line-height:1.9;
}

/* =========================
   CTA
========================= */

.cerva-cta-zone{
    padding:0 0 100px;
    background:#fff;
}

.cerva-cta-panel{
    border-radius:30px;
    padding:60px;
    background:linear-gradient(135deg,#0f172a,#1e3a5f);
    position:relative;
    overflow:hidden;
    box-shadow:0 35px 90px rgba(15,23,42,.15);
}

.cerva-cta-glow{
    position:absolute;
    border-radius:50%;
}

.cerva-glow-one{
    width:300px;
    height:300px;
    right:-120px;
    top:-120px;
    background:rgba(0,183,255,.15);
}

.cerva-glow-two{
    width:250px;
    height:250px;
    left:-100px;
    bottom:-100px;
    background:rgba(13,110,253,.15);
}

.cerva-cta-content{
    position:relative;
    z-index:2;
}

.cerva-cta-label{
    display:inline-block;
    margin-bottom:16px;
    color:#8fdcff;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.4px;
}

.cerva-cta-content h2{
    color:#fff;
    font-size:52px;
    line-height:1.15;
    margin:0 0 18px;
    max-width:900px;
    font-weight:800;
}

.cerva-cta-content p{
    color:rgba(255,255,255,.78);
    line-height:1.9;
    max-width:900px;
}

.cerva-cta-benefits{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}

.cerva-cta-benefit{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    padding:12px 18px;
    border-radius:999px;
    color:#fff;
    font-size:14px;
}

.cerva-cta-actions{
    display:flex;
    gap:16px;
    margin-top:35px;
}

.cerva-cta-primary,
.cerva-cta-secondary{
    min-height:56px;
    padding:0 26px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.cerva-cta-primary{
    background:#fff;
    color:#111827;
}

.cerva-cta-secondary{
    background:rgba(255,255,255,.08);
    color:#fff;
    border:1px solid rgba(255,255,255,.15);
}

/* =========================
   TABLET
========================= */

@media(max-width:1024px){

    .cerva-benefits-layout{
        grid-template-columns:1fr;
    }

    .cerva-lifestyle-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cerva-candidate-wrap{
        grid-template-columns:repeat(2,1fr);
    }

    .cerva-benefits-content h2,
    .cerva-lifestyle-head h2,
    .cerva-center-title,
    .cerva-faq-head h2,
    .cerva-cta-content h2{
        font-size:40px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .cerva-benefits,
    .cerva-lifestyle,
    .cerva-candidates,
    .cerva-faq-zone{
        padding:60px 0;
    }

    .cerva-lifestyle-grid,
    .cerva-candidate-wrap{
        grid-template-columns:1fr;
    }

    .cerva-benefits-content h2,
    .cerva-lifestyle-head h2,
    .cerva-center-title,
    .cerva-faq-head h2,
    .cerva-cta-content h2{
        font-size:30px;
        line-height:1.2;
    }

    .cerva-life-card,
    .cerva-candidate{
        padding:22px;
    }

    .cerva-faq-answer{
        padding:0 20px 20px;
    }

    .cerva-faq-question{
        font-size:16px;
    }

    .cerva-cta-panel{
        padding:30px 24px;
        border-radius:20px;
    }

    .cerva-cta-actions{
        flex-direction:column;
    }

    .cerva-cta-primary,
    .cerva-cta-secondary{
        width:100%;
    }

    .cerva-cta-benefit{
        font-size:12px;
    }
}