.go-to-link-icon {
    height: 16px;
    width: 16px;
    margin: -2px 10px;
}

/* ================================
   GLOBAL DESIGN SYSTEM
================================ */

:root {
    --white: #ffffff;
    --soft-silver: #f7f7f7;
    --light-silver: #ececec;
    --border-silver: #e5e5e5;
    --mid-silver: #8a8a8a;
    --dark-silver: #555555;
    --black: #111111;
    --charcoal: #1c1c1c;
    --radius: 14px;
    --transition: all 0.3s ease;
    --h1-size: 40px;
    --h2-size: 28px;
    --h3-size: 22px;
    --h4-size: 18px;
    --accent-red: #dc2626;
    --accent-green: #16a34a;
    --accent-blue: #2563eb;
    --accent-amber: #f59e0b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

h1 { 
    font-size: var(--h1-size); 
    font-weight: 700; 
    line-height: 1.2;
}

h2 { 
    font-size: var(--h2-size); 
    font-weight: 600; 
}

h3 { 
    font-size: var(--h3-size); 
    font-weight: 600; 
}

h4 { 
    font-size: var(--h4-size); 
    font-weight: 600; 
}

/* ================================
   BUTTONS
================================ */

.btn-primary {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--charcoal);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--white);
    color: var(--black);
    transition: var(--transition);
}

.btn-dark:hover {
    background: var(--light-silver);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.btn-secondary {
    border: 1px solid #ddd;
    color: #111;
    transition: 0.3s ease;
}

.btn-secondary:hover {
    background: #f2f2f2;
}

.btn-primary,
.btn-dark,
.btn-secondary {
    border-radius: 8px;
    padding: 14px 28px;
    text-decoration: none;  
    font-weight: 600;
}

.btn-primary,
.btn-dark {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ================================
   HERO SECTION
================================ */

/* ================================
   HERO SECTION (ADVANCED)
================================ */

.row.reverse-order {
    flex-direction: row-reverse;
    width: calc(100% - 1.5rem);
}

.hero-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}


.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT SIDE */

.hero-left {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: #f0f0f0;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 20px;
    color: #555;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
    max-width: 520px;
}


.hero-trust {
    font-size: 14px;
    color: #777;
}

.hero-trust a {
    color: #111;
    text-decoration: none;
    font-weight: 500;
}

/* RIGHT SIDE MOCKUP */

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* ================================
   HERO AUDIT PREVIEW
================================ */

.audit-preview {
    width: 100%;
    max-width: 450px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.audit-score {
    background: linear-gradient(135deg, #111111, #2a2a2a);
    color: #ffffff;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
}

.audit-score span {
    font-size: 13px;
    opacity: 0.8;
}

.audit-score h2 {
    font-size: 36px;
    margin-top: 5px;
}

.audit-metric {
    display: flex;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 10px;
    background: #f7f7f7;
    font-size: 14px;
}

.audit-metric strong {
    font-weight: 600;
}

.audit-metric.good strong {
    color: #2e7d32;
}

.audit-metric.warning strong {
    color: #c62828;
}


.hero-dashboard-placeholder {
    width: 100%;
    max-width: 450px;
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mock-card {
    height: 80px;
    background: linear-gradient(135deg, #f5f5f5, #eaeaea);
    border-radius: 12px;
    animation: float 4s ease-in-out infinite;
}

.mock-card.small {
    height: 50px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 992px) {

    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

}
/* ================================
   PROBLEM SECTION
================================ */

.problems {
    padding: 80px 0;
    background: var(--soft-silver);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.problem-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border-silver);
    text-align: center;
    font-weight: 500;
    transition: var(--transition);
}

.problem-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transform: translateY(-4px);
}

/* ================================
   TOOLS GRID SECTION
================================ */

.tools-grid-section {
    padding: 100px 0;
}

.tools-grid-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
}

.seo-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tool-card {
    background: var(--white);
    border: 1px solid var(--border-silver);
    padding: 30px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--black);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.tool-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: var(--mid-silver);
}

.tool-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.tool-card p {
    font-size: 14px;
    color: var(--mid-silver);
}

/* ================================
   RESULTS SECTION
================================ */
td.tdl-max {
    max-width: 400px;
    font-size: 12px !important;
    line-height: 1.6;
    word-wrap: break-word;
}
.results {
    padding: 100px 0;
    background: var(--soft-silver);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stats-grid h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats-grid p {
    color: var(--dark-silver);
}

/* ===============================
   Crawl Progress Indicator
   =============================== */

.crawl-progress-bar{
    width:100%;
    height:10px;
    background:#e5e7eb;
    border-radius:6px;
    overflow:hidden;
}

#crawl-progress-fill{
    width:0%;
    height:100%;
    background:#22c55e;
    transition:width .3s ease;
}

/* ===============================
   Sortable Table Headers
   =============================== */

.seo-table th.sortable{
    cursor:pointer;
    user-select:none;
    position:relative;
}

Add hover highlight
.seo-table th.sortable:hover{
    background:#f4f6f8;
}

.seo-table th.sortable:after{
    content:"⇅";
    display: contents;
    font-size:11px;
    margin-left:6px;
    opacity:0.4;
    color: #a4a0a0;
    font-weight: 300;
}

.seo-table th.asc:after{
    content:"▲";
    opacity:0.9;
    color: green;
}

.seo-table th.desc:after{
    content:"▼";
    opacity:0.9;
    color: red;
    
}


table.score-card-table-sty-1 {
    width: 100%;
    text-align: left;
    line-height: 2.5;
    margin-top: 20px;
}
table.score-card-table-sty-1 th, table.score-card-table-sty-1 td {
    font-weight: 400;
}

/* ============================================
           SCHEMA TOOL SCORE CARD SECTION
=============================================== */

.schema-summary-card {
    padding-bottom: 50px;
}

.schema-summary-card ol {
    /* display: inline; */
    /* margin: 40px 10px; */
    padding: 20px 30px;
    column-count: 3;
    column-gap: 50px;
    text-align: left;
    font-weight: 400;
    font-size: 14px;
    line-height: 2.5;
    letter-spacing: .4px;
    border-top: 3px solid silver;
    border-bottom: 3px solid silver;
}

.schema-score-grid{
display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:20px;
margin-bottom:30px;
}

.schema-score-card{
background:#fff;
border-radius:10px;
padding:20px;
box-shadow:0 4px 12px rgba(0,0,0,0.06);
}

.score-circle{
font-size:48px;
font-weight:700;
text-align:center;
margin:20px 0;
}

.score-circle.green{color:#1aa84b;}
.score-circle.orange{color:#f59e0b;}
.score-circle.red{color:#ef4444;}

.score-table{
width:100%;
font-size:14px;
}

.score-table td{
padding:6px 0;
border-bottom:1px solid #eee;
}
/* ================================
   FAQ SECTION
================================ */

.faq-section {
    padding: 100px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 30px;
}

.faq-item {
    max-width: 800px;
    margin: auto;
    border-bottom: 1px solid var(--border-silver);
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 22px;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--dark-silver);
    padding-right: 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

/* ================================
   FINAL CTA SECTION
================================ */

.cta-final {
    padding: 100px 0;
    background: var(--black);
    text-align: center;
    color: var(--white);
}

.cta-final h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

/* ================================
   RESPONSIVE DESIGN
================================ */

@media (max-width: 992px) {

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .seo-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }

}

@media (max-width: 600px) {

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .seo-tools-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 80px 20px;
    }

}


/* ================================
   PREMIUM HEADER
================================ */

.site-header {
    width: 100%;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.85);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}


.site-header.scrolled {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-bottom: 1px solid #eaeaea;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
    filter: invert(1);
    width: 125px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.main-nav a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s ease;
}

.main-nav a:hover {
    color: #555;
}

.header-cta .btn-primary {
    padding: 10px 22px;
    font-size: 14px;
}

@media (max-width: 768px) {

    .main-nav {
        display: none;
    }

    .header-flex {
        justify-content: space-between;
    }

}

/* ==================================
   TOOL PAGE LAYOUT
================================== */

.tool-hero {
    padding: 60px 0 40px;
    background: #f7f7f7;
}

.tool-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.tool-subtitle {
    color: #666;
    max-width: 600px;
}

.breadcrumb {
    font-size: 13px;
    margin-bottom: 15px;
    color: #888;
}

.breadcrumb a {
    text-decoration: none;
    color: #111;
}

.breadcrumb a, .breadcrumb span {
    margin-left: 10px;
    margin-right: 10px;
}

/* GRID LAYOUT */

.tool-layout {
    padding: 60px 0;
}

.tool-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 20px;
}

/* SIDEBAR */
/*

.tool-sidebar {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-current-url {
    font-size: 12px;
    margin-bottom: 20px;
    word-break: break-all;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
}

.sidebar-nav li {
    margin-bottom: 8px;
}

.sidebar-nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #111;
    font-size: 14px;
    transition: 0.2s ease;
}

.sidebar-nav a:hover {
    background: #f2f2f2;
}

.sidebar-nav a.active {
    background: #111;
    color: #fff;
}
*/

/* ==================================
   SIDEBAR NAVIGATION
================================== */
div#content-container {
    flex: 2 2;
    max-width: calc(100% - 3vw);
}

.tool-sidebar {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 260px;
    transition: left 0.3s cubic-bezier(.25,.8,.25,1);
}

/* URL BOX */

.sidebar-url-box {
    background: #f7f7f7;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.sidebar-label {
    font-size: 12px;
    color: #777;
    display: block;
    margin-bottom: 5px;
}

.sidebar-url {
    font-size: 13px;
    font-weight: 500;
    word-break: break-all;
}

/* SECTION */

.sidebar-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
}

/* NAVIGATION */

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 6px;
}

.sidebar-nav a {
    display: block;
    padding: 10px 14px;
    border-radius: 0px;
    text-decoration: none;
    font-size: 14px;
    color: #111;
    transition: 0.2s ease;
}

/* Hover */
.sidebar-nav a:hover {
    background: #f2f2f2;
}

/* Active Tool */
.sidebar-nav a.active {
    background: linear-gradient(90deg, #111 0%, #222 100%);
    color: #fff;
    font-weight: 600;
    border-left: 4px solid #2563eb;
}

/* CTA BLOCK */

.sidebar-cta {
    background: linear-gradient(135deg, #111 0%, #1f2937 100%);
    color: #fff;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
}

.sidebar-cta p {
    font-size: 13px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.small-btn {
    padding: 10px 18px;
    font-size: 13px;
}

/* TOOL CONTENT */

.tool-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tool-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
}

.tool-card h2 {
    margin-bottom: 20px;
}

/* FORM */

.tool-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tool-form input[type="text"] {
    flex: 1;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* ========== Tool Form 2 ========= */


.tool-form-2 {
    display: block;
}

.tool-form-2 input[type="text"],
.tool-form-2 textarea{
    padding: 8px;
    border-radius: 3px;
    border: 1px solid #ccc;
    font-size: 14px;
    margin: 10px 0px;
    display: block;
    width: 100%;
}


.tool-results-placeholder {
    background: #fafafa;
    border: 1px dashed #ddd;
    padding: 40px;
    border-radius: 14px;
    color: #888;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .tool-grid {
        grid-template-columns: 1fr;
    }

     aside.col-2.tool-sidebar {
        position: relative;
        top: 0;

    }
    
}

 /*
 @media (max-width: 1100px) {
    
    aside.col-2.tool-sidebar {
    width: 30%;
    }
    
    div#content-container.col-10 {
    flex-shrink: 3;
    width: 70%;
    }

}

@media (max-width: 650px) {
    aside.col-2.tool-sidebar {
    margin: 20px auto;
    width: 90%;
    max-width: 360px;
}
}


*/


/* ==================================
   RESULTS UI DESIGN
================================== */




.tool-results {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* SCORE CARD */

.result-score-card {
    background: linear-gradient(135deg, #111 0%, #1f2937 100%);
    color: #fff;
    padding: 35px;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.score-label {
    font-size: 14px;
    opacity: 0.8;
}

.score-number {
    font-size: 48px;
    margin-top: 8px;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.score-total {
    font-size: 20px;
    opacity: 0.6;
}

.score-number span {
    font-size: 20px;
    opacity: 0.7;
}

.score-progress {
    width: 200px;
    height: 8px;
    background: #333;
    border-radius: 10px;
    overflow: hidden;
}

.score-progress-bar {
    height: 100%;
    width: 0%;
    transition: width 1.2s ease-in-out;
    background: linear-gradient(90deg, #4caf50, #81c784);
}
/* METRICS GRID */

.result-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metric-card {
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.metric-card span {
    font-size: 13px;
    color: #777;
}

.metric-card strong {
    display: block;
    font-size: 22px;
    margin-top: 5px;
}

.metric-card.good strong { color: #2e7d32; }
.metric-card.warning strong { color: #c62828; }
.metric-card.critical strong { color: #b71c1c; }

/* TABLE */

.result-table-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 50px;
}



/* ===============================
   SEO Status Colors
   =============================== */

.ok,
.index,
.good{
    color:#2e7d32;
    font-weight:600;
}

.bad,
.noindex,
.missing,
.thin,
.poor{
    color:#c62828;
    font-weight:600;
}

.short,
.minor{
    color:#ef6c00;
    font-weight:600;
}

/* HTTP status */

.status-200{
    color:#2e7d32;
    font-weight:600;
}

.status-error{
    color:#c62828;
    font-weight:600;
}

/* =========================
   Report Section Heading
   ========================= */

.report-heading{
font-size:22px;
font-weight:600;
margin-bottom:15px;
padding-bottom:8px;
border-bottom:2px solid #e6e6e6;
color:#2c3e50;
}

/* =========================
   Report Summary Bar
   ========================= */

.report-summary{
display:flex;
justify-content:space-between;
align-items:center;
margin:10px 0 15px 0;
font-size:15px;
font-weight:500;
color:#444;
}

.report-summary span{
color:#888;
font-weight:400;
}


/* =========================
   Table Search Box
   ========================= */

.report-search{
margin-bottom:12px;
display:flex;
align-items:center;
gap:15px;
}

.report-search input{
width:320px;
padding:8px 12px;
border:1px solid #dcdcdc;
border-radius:6px;
font-size:14px;
outline:none;
transition:all .2s ease;
}

.report-search input:focus{
border-color:#4CAF50;
box-shadow:0 0 0 2px rgba(76,175,80,0.15);
}

/* =========================
   Crawl Summary
   ========================= */

.crawl-summary{
margin-top:8px;
padding:10px 14px;
background:#f7f9fb;
border-left:4px solid #4CAF50;
border-radius:4px;
font-size:14px;
color:#555;
}

/* ==================================
           SEO Table       
====================================*/

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tool-results-placeholder h3, 
.table-header h3 {
    font-size: large;
}

.seo-table th h3 {
    font-size: large;
    /* padding: 0px 0px 0px; */
    color: #000;
    margin-top: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.table-wrapper {
    overflow-x: auto;
}

.seo-table {
    width: 100%;
    border-collapse: collapse;
}

.seo-table th,
.seo-table td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.seo-table th{
     
}


.seo-table th[colspan="2"], .seo-table th[colspan="3"], .seo-table th[colspan="4"], .seo-table th[colspan="5"], .seo-table th[colspan="6"] {
    background: #f3f4f6;
    border-bottom: 2px solid #e5e7eb;
    font-weight: 600;
   border-left: 4px solid var(--accent-blue);
}


/* ===============================
   Sticky SEO Report Table Header
   =============================== */
   
 .table-wrapper{
    max-height: 75vh;
    overflow-y: auto;
}  

.result-table-card{
    position: relative;
}

.seo-table thead th{
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 20;
    border-bottom: 2px solid #ddd;
}

/* ==============================
   Sticy URL columns
  =============================== */
  
.onpage-report-table td:nth-child(3),
.onpage-report-table th:nth-child(3){
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 10;
}

/* ===============================
    small shadow for separation 
    ============================== */

.seo-table thead th::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 4px;
    background: rgba(0,0,0,0.05);
}


/* Copy buttons */
.copy-table-btn {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    transition: 0.2s ease;
}

.copy-table-btn:hover {
    background: #f2f2f2;
}

.full-report-download {
    text-align: right;
    margin-bottom: 20px;
}

.download-full-report-btn {
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #111;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}

.download-full-report-btn:hover {
    background: #333;
}

.email-report-btn{
       padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #2a2ab2;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}

.email-report-btn:hover {
    background: #4a4ae5;
}


.rs-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.rs-modal-content {
    background: #fff;
    max-width: 400px;
    margin: 8% auto;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.rs-modal input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
}

.rs-modal button {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
}

.rs-close {
    float: right;
    cursor: pointer;
    font-size: 20px;
}


.status {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status.good {
    background: #e8f5e9;
    color: #2e7d32;
}

.status.warning {
    background: #fff3e0;
    color: #ef6c00;
}

.status.critical {
    background: #ffebee;
    color: #c62828;
}


#pageStats, #imageStats {
    font-size: 14px;
    font-weight: 500;
}

/* RECOMMENDATIONS */

.recommendation-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 30px;
}

.recommendation-item {
    border-bottom: 1px solid #eee;
}

.rec-title {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 15px 0;
    font-weight: 600;
    cursor: pointer;
}

.rec-content {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    color: #666;
}

.recommendation-item.active .rec-content {
    max-height: 200px;
    padding-bottom: 15px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .result-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .result-metrics-grid {
        grid-template-columns: 1fr;
    }

    .result-score-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}


/* ===========================
        Content Section 
    ========================= */
    
  .content-section {
    background: #fafafa;
    border: 1px dashed #ddd;
    padding: 40px;
    border-radius: 14px;
    color: #888;
}

.page-content {
    background: #ffff;
    border: 1px solid #ddd;
    padding: 40px;
    border-radius: 14px;
    /* text-align: center; */
    color: #888;
}
.page-content h2 {
    padding: 50px 0px 15px;
    font-size: x-large;
}
.page-content h3 {
    padding: 49px 0px 5px;
    font-size: large;
}
.page-content h4 {
    padding: 20px 0px 0px;
    font-size: medium;
    font-weight: bold;
}

/* ==================================
   TOOL CONTENT SECTIONS
================================== */

.tool-content-sections {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.content-section {
    width: 100%;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.content-section p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.minimal-list {
    list-style: none;
    padding: 0;
}

.minimal-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.minimal-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #888;
}

/* TWO COLUMN LAYOUT */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.col-media {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 250px;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

/* CASE SECTION */

.case-section {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #eee;
}

/* FAQ */

.faq-section .faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 15px 0;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 18px;
    color: #888;
    transition: 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: "–";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding-bottom: 10px;
}

/* CONTACT SECTION */

.contact-section {
    text-align: center;
    background: #111;
    color: #fff;
    padding: 60px 40px;
    border-radius: 20px;
}

.contact-section p {
    color: #ccc;
    margin-bottom: 25px;
}

/* MOBILE */

@media (max-width: 992px) {

    .two-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tool-content-sections {
        gap: 60px;
    }

    .content-section {
        padding: 0 20px;
    }

}

/* HERO */
.rs-contact-hero {
    background: #ffffff;
    padding: 80px 20px 40px;
    text-align: center;
}

.rs-contact-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: #111;
}

.rs-contact-hero p {
    color: #666;
    font-size: 16px;
    margin-top: 10px;
}

/* GRID */
.rs-contact-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.rs-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

/* FORM BOX */
.rs-contact-form-box,
.rs-contact-info-box {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.rs-form-group {
    margin-bottom: 18px;
}

.rs-form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #444;
}

.rs-form-group input,
.rs-form-group select,
.rs-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.rs-form-group input:focus,
.rs-form-group textarea:focus,
.rs-form-group select:focus {
    border-color: #000;
    outline: none;
}

.rs-btn-primary {
    background: #000;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.rs-btn-primary:hover {
    background: #333;
}

/* CONTACT INFO */
.rs-contact-card {
    margin-bottom: 20px;
}

.rs-contact-card h4 {
    margin-bottom: 6px;
    color: #111;
}

/* TRUST SECTION */
.rs-contact-trust {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.rs-trust-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.rs-success-message {
    background: #e6f4ea;
    color: #1e7e34;
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.rs-error-message {
    background: #fdecea;
    color: #c62828;
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .rs-contact-grid {
        grid-template-columns: 1fr;
    }

    .rs-trust-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobiel Navigation */
/* =================================
   MOBILE SIDEBAR OFFCANVAS
================================= */

.sidebar-toggle {
    display: none;
    background: #111;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    margin-bottom: 20px;
    cursor: pointer;
}

@media (max-width: 992px) {

    .sidebar-toggle {
        display: inline-block;
    }

    .tool-sidebar {
        position: fixed !important;
        left: -280px;
        top: 0;
        width: 260px;
        height: 100vh;
        z-index: 9999;
        overflow-y: auto;
        transition: 0.3s ease;
        box-shadow: 5px 0 20px rgba(0,0,0,0.15);
    }

    .tool-sidebar.open {
        left: 0;
    }

    body.sidebar-open {
        overflow: hidden;
    }

}

/* =============== Mobile Padding fix */

@media (max-width: 768px) {

    .tool-card,
    .result-table-card,
    .recommendation-card,
    .page-content {
        padding: 18px;
    }

    .tool-hero {
        padding: 40px 20px;
    }

    .tool-layout {
        padding: 40px 20px;
    }
}

/* =================================
   MOBILE SIDEBAR ENHANCED
================================= */

.sidebar-close {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #111;
}

/* Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9998;
    backdrop-filter: blur(2px);
}

/* Active states */
.sidebar-overlay.active {
    display: block;
}

@media (max-width: 992px) {

    .tool-sidebar {
        position: fixed !important;
        left: -280px;
        top: 0;
        width: 260px;
        height: 100vh;
        z-index: 9999;
        overflow-y: auto;
        transition: 0.3s ease;
        box-shadow: 5px 0 25px rgba(0,0,0,0.2);
    }

    .tool-sidebar.open {
        left: 0;
    }

    .sidebar-close {
        display: block;
    }

}


/* ==================================
   REUSABLE SCORE CARDS
================================== */

.rs-score-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.rs-score-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #e5e5e5;
    transition: 0.3s ease;
}

.rs-score-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.rs-score-label {
    font-size: 13px;
    color: #777;
}

.rs-score-value {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 15px;
}

.rs-score-max {
    font-size: 16px;
    opacity: 0.6;
}

.rs-score-progress {
    height: 8px;
    background: #f1f1f1;
    border-radius: 10px;
    overflow: hidden;
}

.rs-score-bar {
    height: 100%;
    transition: width 1s ease;
}

/* STATUS COLORS */

.rs-score-card.good .rs-score-bar {
    background: #16a34a;
}

.rs-score-card.warning .rs-score-bar {
    background: #f59e0b;
}

.rs-score-card.critical .rs-score-bar {
    background: #dc2626;
}

/* onpage seo checker tool- Score Color CSS*/

.score.green{

color:#2e7d32;
font-weight:bold;

}

.score.orange{

color:#ef6c00;
font-weight:bold;

}

.score.red{

color:#c62828;
font-weight:bold;

}


/* 6. Score Color CSS */

.scorecards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
margin-bottom:25px;
}

.scorecard{
background:#ffffff;
border-radius:10px;
padding:20px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
border-top:4px solid #4CAF50;
}

.scorecard.issues{
border-top-color:#e53935;
}

.scorecard.files{
border-top-color:#3f51b5;
}

.scorecard h3{
font-size:16px;
margin-bottom:12px;
}

.scorecard ul{
list-style:none;
padding:0;
margin:0;
}

.scorecard li{
display:flex;
justify-content:space-between;
padding:6px 0;
font-size:14px;
}

.scorecard span{
font-weight:600;
}

/*===================================
        Score Charts 
==============================*/

.seo-charts{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:8vw;
margin:25px 0;
}

.chart-card{
background:#fff;
padding:20px;
border-radius:10px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
text-align:center;
}

.chart-card h3{
font-size:16px;
margin-bottom:15px;
}

/* ===================================
 Sitewide Tool Dashboard Design by GPT
====================================== */

/* TOOL DASHBOARD GRID */

.tool-dashboard{
display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:18px;
margin:20px 0 30px;
}

/* STANDARD TOOL CARD */

.tool-card{

background:#ffffff;
border-radius:10px;
padding:18px 20px;
box-shadow:0 3px 10px rgba(0,0,0,0.06);

}

.tool-card h3{

font-size:16px;
font-weight:600;
margin-bottom:12px;
color:#333;

}

/* ================================
SCHEMA SCORE CARD
================================ */

/* ================================
SCHEMA SCORE CARD
================================ */

.score-card{

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;

padding:22px;
border-radius:10px;

background:#ffffff;
box-shadow:0 3px 10px rgba(0,0,0,0.06);

text-align:center;

}

.score-card h3{

font-size:16px;
font-weight:600;
margin-bottom:18px;
color:#333;

}

/* PROGRESS RING */

.score-ring{

width:130px;
height:130px;
border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:34px;
font-weight:700;

position:relative;

}

/* INNER CIRCLE */

.score-ring::before{

content:"";

position:absolute;

width:95px;
height:95px;

background:#fff;
border-radius:50%;

}

/* SCORE NUMBER */

.score-number{

position:relative;
z-index:2;

}

/* LABEL */

.score-label{

margin-top:14px;
font-size:13px;
color:#666;
font-weight:500;

}
/* SCORE COLORS */

/*
.score-green{
color:#16a34a;
border:6px solid #16a34a;
}

.score-orange{
color:#f59e0b;
border:6px solid #f59e0b;
}

.score-red{
color:#ef4444;
border:6px solid #ef4444;
}
*/
/* LABEL */
/*
.score-label{

margin-top:12px;
font-size:13px;
color:#666;
font-weight:500;

}

*/

/* SCORE BREAKDOWN */

.score-breakdown table{

width:100%;
font-size:13px;

}

.score-breakdown td{

padding:6px 0;
border-bottom:1px solid #eee;

}

.score-breakdown td:last-child{

text-align:right;
font-weight:600;

}

/* WARNING LIST */

.tool-list{

font-size:13px;
padding-left:18px;

}

.tool-list li{

margin-bottom:6px;

}

.tool-warning{

color:#b45309;

}

.tool-recommend{

color:#0f766e;

}

/* WARNING LIST */

.tool-list{

font-size:13px;
padding-left:18px;

}

.tool-list li{

margin-bottom:6px;

}

.tool-warning{

color:#b45309;

}

.tool-recommend{

color:#0f766e;

}