/* ===================================================
   GLOBAL
=================================================== */

.sar-container{
    width:90%;
    max-width:1280px;
    margin:0 auto;
}

/* ===================================================
   HERO
=================================================== */

.sar-hero{
    
    
    
    
    position:relative;
    overflow:hidden;

    background:
radial-gradient(circle at 15% 15%,rgba(0,212,255,.12),transparent 28%),
radial-gradient(circle at 85% 10%,rgba(37,99,235,.14),transparent 30%),
linear-gradient(135deg,#07111f 0%,#0c1830 45%,#121f45 100%);

    min-height:720px;

    display:flex;

    align-items:center;

    padding:120px 0;
    padding-top:80px !important;
}

.sar-hero .sar-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
    position:relative;
    z-index:2;
}

.sar-hero-bg{

    
    
        position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

    background-size:70px 70px;

    opacity:.30;
}

.sar-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:.35;
}

.sar-glow-1{

    width:420px;
    height:420px;

    background:#00d4ff;

    opacity:.18;

    top:-120px;
    left:-120px;

}

.sar-glow-2{

    width:360px;
    height:360px;

    background:#2563eb;

    opacity:.18;

    bottom:-120px;
    right:-120px;

}

.sar-hero-left{
    flex:1;
}

.sar-hero-right{
    flex:0 0 430px;
    position:relative;
    padding-top:50px;
}

/* ===================================================
   HERO CONTENT
=================================================== */

.sar-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 22px;
    border-radius:40px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    backdrop-filter:blur(16px);
    margin-bottom:30px;
    

}

.sar-hero h1{
    color:#fff;
    font-size:44px;
    line-height:1.15;
    font-weight:700;
    margin-bottom:25px;
    letter-spacing:-2px;
    max-width:700px;
}

.sar-hero p{
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

/* ===================================================
   FORM
=================================================== */

.sar-input-group{
    display:flex;
    background:#fff;
    padding:8px;
    border-radius:16px;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.sar-url-input{
    flex:1;
    border:none;
    outline:none;
    padding:20px 22px;
    font-size:16px;
}
.sar-url-input:focus{

box-shadow:0 0 0 5px rgba(37,99,235,.15);

}

.sar-btn{
    border:none;
    cursor:pointer;
    padding:0 36px;
    border-radius:12px;
    
    color:#fff;
    font-weight:600;
    transition:.3s;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);

box-shadow:0 15px 35px rgba(37,99,235,.35);
}

.sar-btn:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}

/* ===================================================
   FEATURES
=================================================== */

.sar-features-list{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-top:30px;
    padding:0;
    list-style:none;
    color:#fff;
}

/* ===================================================
   DASHBOARD
=================================================== */

.sar-dashboard{
    position:relative;
    z-index:2;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(20px);
    border-radius:24px;
    padding:28px;
    box-shadow:0 35px 80px rgba(0,0,0,.20);
}
.sar-dashboard::before{

content:"";

position:absolute;

width:420px;

height:420px;

border-radius:50%;

background:radial-gradient(circle,#2563eb55,transparent 70%);

left:50%;

top:50%;

transform:translate(-50%,-50%);

z-index:-1;

filter:blur(50px);

}



.sar-dashboard-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:28px;
}

.sar-dashboard-header span:first-child{
    font-size:20px;
    font-weight:600;
    color:#0f172a;
}

.sar-live-badge{
    background:#dcfce7;
    color:#16a34a;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/* ===================================================
   DASHBOARD SCORE
=================================================== */

.sar-dashboard-score{
    display:flex;
    gap:24px;
    align-items:center;
    margin-bottom:35px;
}

.sar-score-ring{
    width:120px;
    height:120px;
    border-radius:50%;
    border:8px solid #22c55e;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}

.sar-score-ring span{
    font-size:42px;
    color:#16a34a;
    font-weight:700;
}

.sar-dashboard-score-info h3{
    margin:0 0 8px;
    font-size:22px;
    color:#0f172a;
}

.sar-dashboard-score-info p{
    margin:0;
    color:#64748b;
    font-size:14px;
    line-height:1.7;
}

/* ===================================================
   METRIC CARDS
=================================================== */

.sar-dashboard-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.sar-metric-card{
    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:18px;
    padding:20px;
}

.sar-metric-card h4{
    margin:0;
    color:#64748b;
    font-size:14px;
}

.sar-metric-card strong{
    display:block;
    margin:10px 0;
    font-size:26px;
    color:#0f172a;
}

.sar-progress{
    height:8px;
    background:#e5e7eb;
    border-radius:30px;
    overflow:hidden;
}

.sar-progress span{
    display:block;
    height:100%;
    background:linear-gradient(90deg,#22c55e,#16a34a);
}

/* ===================================================
   FLOATING CARDS
=================================================== */

.sar-floating-card{
    position:absolute;
    background:#fff;
    padding:12px 18px;
    border-radius:14px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    font-size:14px;
    font-weight:600;
    animation:sarFloat 4s ease-in-out infinite;
}

.sar-floating-1{
    top:60px;
    left:-35px;
}

.sar-floating-2{
    right:-25px;
    top:170px;
}

.sar-floating-3{
    left:40px;
    bottom:-20px;
}

@keyframes sarFloat{

0%{transform:translateY(0);}
50%{transform:translateY(-10px);}
100%{transform:translateY(0);}

}

/* ===================================================
   RESPONSIVE
=================================================== */

@media(max-width:991px){

.sar-hero .sar-container{
    flex-direction:column;
}

.sar-hero-right{
    width:100%;
    max-width:430px;
}

.sar-hero h1{
    font-size:40px;
}

.sar-input-group{
    flex-direction:column;
}

.sar-btn{
    height:58px;
    margin-top:10px;
}

.sar-dashboard-score{
    flex-direction:column;
    text-align:center;
}

.sar-dashboard-grid{
    grid-template-columns:1fr;
}

.sar-floating-card{
    display:none;
}

}


/* ===================================================
   SEO REPORT
=================================================== */

.sar-report-section{

display:none;

padding:90px 0;

background:#f8fafc;

}

.sar-report-container{

width:90%;

max-width:1280px;

margin:auto;

}

/* ========================= */

.sar-report-header{

text-align:center;

margin-bottom:60px;

}

.sar-report-header h2{

font-size:46px;

font-weight:700;

color:#0f172a;

margin-bottom:12px;

}

.sar-report-header p{

font-size:18px;

color:#64748b;

word-break:break-word;

}

/* ========================= */

.sar-score-wrapper{

display:flex;

align-items:center;

gap:60px;

margin-bottom:70px;

}

.sar-score-circle{

width:180px;

height:180px;

border-radius:50%;

background:#fff;

border:12px solid #22c55e;

display:flex;

justify-content:center;

align-items:center;

flex-shrink:0;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.sar-score-circle span{

font-size:72px;

font-weight:700;

line-height:1;

color:#16a34a;

}

.sar-score-info{

flex:1;

}

.sar-score-info h3{

margin:0 0 15px;

font-size:42px;

color:#16a34a;

font-weight:700;

}

.sar-score-info p{

margin:0;

font-size:18px;

line-height:1.8;

color:#64748b;

}

/* ========================= */

.sar-overview-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.sar-overview-card{

background:#fff;

border-radius:22px;

padding:30px;

min-height:170px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.06);

transition:.3s;

}

.sar-overview-card:hover{

transform:translateY(-6px);

box-shadow:0 25px 55px rgba(0,0,0,.10);

}

.sar-overview-card h4{

font-size:18px;

margin-bottom:18px;

color:#0f172a;

}

.sar-overview-card p{

margin:0;

font-size:17px;

line-height:1.6;

font-weight:600;

color:#2563eb;

}

/* ========================= */

@media(max-width:992px){

.sar-score-wrapper{

flex-direction:column;

text-align:center;

}

.sar-overview-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.sar-report-header h2{

font-size:34px;

}

.sar-score-circle{

width:150px;

height:150px;

}

.sar-score-circle span{

font-size:58px;

}

.sar-score-info h3{

font-size:32px;

}

.sar-overview-grid{

grid-template-columns:1fr;

}

}

/* ===================================================
   SCORE ANIMATION
=================================================== */

.sar-score-circle{
    position:relative;
    overflow:hidden;
    transition:.4s;
}

.sar-score-circle::before{
    content:'';
    position:absolute;
    inset:-12px;
    border-radius:50%;
    border:12px solid rgba(34,197,94,.15);
}

.sar-score-circle span{
    position:relative;
    z-index:2;
}

/* ===================================================
   STATUS BADGES
=================================================== */

.sar-status{

display:inline-flex;

align-items:center;

justify-content:center;

padding:8px 18px;

border-radius:40px;

font-size:14px;

font-weight:600;

}

.sar-pass{

background:#dcfce7;

color:#15803d;

}

.sar-warning{

background:#fef3c7;

color:#b45309;

}

.sar-fail{

background:#fee2e2;

color:#dc2626;

}

/* ===================================================
   TECHNICAL SUMMARY
=================================================== */

.sar-tech-summary{

margin-top:60px;

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

}

.sar-tech-card{

background:#fff;

padding:30px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.sar-tech-card h4{

margin:0 0 15px;

font-size:20px;

color:#0f172a;

}

.sar-tech-card p{

margin:0;

line-height:1.8;

color:#64748b;

}

/* ===================================================
   RECOMMENDATION
=================================================== */

.sar-recommendation{

margin-top:50px;

padding:35px;

background:#eff6ff;

border-left:5px solid #2563eb;

border-radius:20px;

}

.sar-recommendation h3{

margin:0 0 15px;

font-size:26px;

}

.sar-recommendation p{

margin:0;

line-height:1.8;

color:#475569;

}

/* ===================================================
   RESPONSIVE
=================================================== */

@media(max-width:992px){

.sar-tech-summary{

grid-template-columns:1fr;

}

}




/*==============================
    WEBMATRIKS HEADER
===============================*/

.wm-tools-header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    background:rgba(12,18,36,.82);
    border-bottom:1px solid rgba(255,255,255,.08);
    overflow:hidden;
}

.wm-header-inner{
    max-width:1320px;
    margin:auto;
    height:88px;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:0 25px;
    position:relative;
}

.wm-logo{
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
    z-index:2;
}

.wm-logo img{
    width:270px;
    max-width:100%;
    height:auto;
    display:block;
    transition:.35s;
    filter:drop-shadow(0 8px 22px rgba(0,200,255,.22));
}

.wm-logo:hover{
    transform:translateY(-2px);
}

.wm-logo:hover img{
    transform:scale(1.04);
}

/* Gradient Glow */

.wm-header-glow{
    position:absolute;
    inset:0;
    pointer-events:none;

    background:
    radial-gradient(circle at center,
    rgba(0,212,255,.15),
    transparent 55%);
}

/* Bottom Line */

.wm-tools-header::after{

    content:"";

    position:absolute;
    left:50%;
    bottom:0;

    transform:translateX(-50%);

    width:220px;
    height:2px;

    background:linear-gradient(
    90deg,
    transparent,
    #18d8ff,
    #00ffb3,
    transparent);

    border-radius:10px;
}

/* Responsive */

@media(max-width:768px){

    .wm-header-inner{
        height:72px;
    }

    .wm-logo img{
        width:210px;
    }

}

@media(max-width:480px){

    .wm-logo img{
        width:180px;
    }

}

/* Header Offset */

body{
    overflow-x:hidden;
}

/*=========================================
SEO Content Section
=========================================*/

.sar-seo-content{

    padding:90px 0;

    background:#ffffff;

}

.sar-content-box{

    max-width:980px;

    margin:auto;

}

.sar-content-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:40px;

    background:#eef5ff;

    color:#2563eb;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.sar-content-box h2{

    font-size:40px;

    font-weight:700;

    color:#111827;

    line-height:1.3;

    margin-bottom:25px;

}

.sar-content-box p{

    font-size:17px;

    line-height:1.9;

    color:#4b5563;

    margin-bottom:22px;

}

.sar-content-box strong{

    color:#111827;

    font-weight:600;

}

@media(max-width:768px){

.sar-seo-content{

padding:60px 20px;

}

.sar-content-box h2{

font-size:30px;

}

.sar-content-box p{

font-size:16px;

}

}