/* ===== Hero ===== */
.service-landing-hero{
    position:relative;
    overflow:hidden;
    padding:130px 5% 60px;
    text-align:center;
}
.service-landing-hero .blob{
    position:absolute;
    border-radius:50%;
    filter:blur(70px);
    pointer-events:none;
    z-index:0;
}
.service-landing-hero .blob-1{ top:-140px; inset-inline-end:-100px; width:460px; height:460px; background:radial-gradient(circle, #7a00ff, transparent 70%); opacity:.30; }
.service-landing-hero .blob-2{ bottom:-160px; inset-inline-start:-120px; width:520px; height:520px; background:radial-gradient(circle, #ff007a, transparent 70%); opacity:.25; }
.service-landing-hero .blob-3{ top:40%; inset-inline-start:34%; width:320px; height:320px; background:radial-gradient(circle, #a855f7, transparent 70%); opacity:.20; }
.service-landing-hero > *{ position:relative; z-index:1; }
.service-landing-hero h1{
    font-size:clamp(32px,4.8vw,52px);
    font-weight:800;
    color:#1a1a2e;
    line-height:1.3;
    margin:0 0 18px;
}
.service-landing-hero .subtitle{
    font-size:18px;
    color:#555;
    max-width:760px;
    margin:0 auto;
    line-height:1.9;
}
.service-landing-hero .hero-ctas{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    justify-content:center;
    margin-top:34px;
}
.service-landing-hero .btn-hero-primary{
    background:linear-gradient(135deg,#ff007a,#7a00ff);
    color:#fff;
    font-weight:800;
    font-size:16px;
    padding:16px 40px;
    border-radius:50px;
    text-decoration:none;
    display:inline-block;
    box-shadow:0 12px 30px rgba(122,0,255,.3);
    transition:transform .25s ease, box-shadow .25s ease;
}
.service-landing-hero .btn-hero-primary:hover{ transform:translateY(-3px); box-shadow:0 16px 36px rgba(122,0,255,.4); }
.service-landing-hero .btn-hero-ghost{
    background:transparent;
    color:#7a00ff;
    font-weight:700;
    font-size:16px;
    padding:14px 38px;
    border-radius:50px;
    border:2px solid #7a00ff;
    text-decoration:none;
    display:inline-block;
    transition:background .25s ease, color .25s ease;
}
.service-landing-hero .btn-hero-ghost:hover{ background:#7a00ff; color:#fff; }

/* ===== Stat row ===== */
.service-landing-stats{
    max-width:1140px;
    margin:0 auto;
    padding:0 5% 50px;
    position:relative;
    z-index:2;
}
.service-landing-stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.service-landing-stat{
    text-align:center;
    padding:26px 16px;
    border-radius:20px;
}
.service-landing-stat strong{
    display:block;
    font-family:inherit;
    font-weight:800;
    font-size:36px;
    color:#7a00ff;
    background:linear-gradient(135deg,#ff007a,#7a00ff);
    -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}
.service-landing-stat span{
    display:block;
    margin-top:8px;
    font-size:14px;
    color:#666;
    font-weight:600;
}

/* ===== Body wrapper ===== */
.service-landing-body{
    max-width:1140px;
    margin:0 auto 60px;
    padding:0 5%;
    position:relative;
    z-index:2;
}
.service-landing-card{
    background:#ffffff;
    border:1px solid rgba(0,0,0,.06);
    border-radius:24px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
    padding:60px 70px;
}
/* neutralize the legacy nested glass-panel wrapper the block-editor content still carries */
.service-landing-card .glass-panel{
    background:transparent; backdrop-filter:none; -webkit-backdrop-filter:none;
    border:none; box-shadow:none; border-radius:0; padding:0; margin:0;
}

.service-landing-card > p:first-of-type,
.service-landing-card .glass-panel > p:first-of-type{
    font-size:18px;
    color:#333;
    line-height:1.9;
}
.service-landing-card p{
    line-height:2;
    color:#444;
    margin-bottom:14px;
}
.service-landing-card h2{
    color:#1a1a2e;
    font-size:26px;
    font-weight:800;
    margin:48px 0 20px;
    padding-top:32px;
    border-top:1px solid rgba(0,0,0,.08);
    position:relative;
}
.service-landing-card h2::before{
    content:'';
    display:block;
    width:46px; height:4px; border-radius:4px;
    background:linear-gradient(135deg,#ff007a,#7a00ff);
    margin-bottom:16px;
}
.service-landing-card > p:first-of-type + h2,
.service-landing-card .glass-panel > p:first-of-type + h2{ margin-top:40px; }

/* numbered-row list styling for top-level ul/ol */
.service-landing-card ul,
.service-landing-card ol{
    list-style:none;
    padding:0;
    margin:0 0 8px;
    counter-reset:slitem;
}
.service-landing-card ul > li,
.service-landing-card ol > li{
    counter-increment:slitem;
    display:grid;
    gap:18px;
    align-items:start;
    background:#fafafe;
    border:1px solid rgba(0,0,0,.05);
    border-radius:16px;
    padding:20px 22px;
    margin-bottom:12px;
    line-height:1.9;
    color:#444;
}
.service-landing-card ul > li::before,
.service-landing-card ol > li::before{
    content:counter(slitem, persian);
    display:flex; align-items:center; justify-content:center;
    width:40px; height:40px; border-radius:50%;
    background:linear-gradient(135deg,#ff007a,#7a00ff);
    color:#fff; font-weight:800; font-size:15px;
}

/* FAQ (h3 + p pairs) */
.service-landing-card h3{
    background:rgba(122,0,255,.06);
    border-radius:14px 14px 0 0;
    padding:18px 22px;
    margin:22px 0 0;
    color:#1a1a2e;
    font-size:18px;
    font-weight:800;
    border-top:none;
}
.service-landing-card h3::before{ content:none; }
.service-landing-card h3 + p{
    background:rgba(122,0,255,.06);
    border-radius:0 0 14px 14px;
    padding:0 22px 20px;
    margin-top:0;
}

/* pricing table */
.service-landing-card table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    margin:24px 0 30px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
}
.service-landing-card table th{
    background:linear-gradient(135deg,#ff007a,#7a00ff);
    color:#fff;
    padding:16px;
    font-size:15px;
    text-align:start;
}
.service-landing-card table td{
    padding:16px;
    border-bottom:1px solid rgba(0,0,0,.06);
    background:#fff;
}
.service-landing-card table tbody tr:nth-child(2) td{
    background:rgba(122,0,255,.07);
    font-weight:700;
}
.service-landing-card table tbody tr:last-child td{ border-bottom:none; }

/* closing CTA banner */
.service-landing-card .wp-block-buttons{
    text-align:center;
    background:linear-gradient(135deg,#ff007a,#7a00ff);
    border-radius:24px;
    padding:50px 30px;
    margin:44px 0 0 !important;
}
.service-landing-card .wp-block-button__link{
    background:#fff !important;
    color:#7a00ff !important;
    font-size:18px;
    padding:18px 48px;
    border-radius:50px;
    font-weight:800;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    text-decoration:none;
    display:inline-block;
}

@media (max-width:768px){
    .service-landing-hero{ padding:110px 5% 40px; }
    .service-landing-hero h1{ font-size:30px; }
    .service-landing-stats-grid{ grid-template-columns:1fr; gap:14px; }
    .service-landing-card{ padding:34px 24px; }
    .service-landing-card ul > li,
    .service-landing-card ol > li{  padding:16px; }
    .service-landing-hero .blob-1,
    .service-landing-hero .blob-2,
    .service-landing-hero .blob-3{ opacity:.15; }
}
