/*
==========================================================================
  services-pages.css
  Common Stylesheet — Auto Clinic Service Pages
  Author: Auto Clinic Web Team
  Version: 1.0
  Description: Shared styles for all service landing pages.
               Does NOT include header / footer styles (those live in
               style.css / newstyle.css).
==========================================================================

TABLE OF CONTENTS
─────────────────
 1. CSS Custom Properties
 2. Base Resets & Typography
 3. Breadcrumb Area
 4. Section Utility Classes
 5. Intro / Hero Content Section
 6. Services Grid Section
 7. Service Card (Icon Card)
 8. Two-Column Content Block
 9. Process Steps Section
10. Why Choose Section (Checklist)
11. Comparison Table (Ceramic Coating)
12. Service Areas Tags Cloud
13. FAQ Accordion
14. Call-To-Action Banner
15. Sidebar (if used)
16. Responsive Breakpoints
==========================================================================*/


/* =========================================================
   1. CSS Custom Properties
   ========================================================= */
:root {
    --ac-primary: #2684E5;
    --ac-primary-dark: #1A6BC4;
    --ac-primary-light: #EBF4FD;
    --ac-dark: #111827;
    --ac-text: #000000;
    --ac-text-light: #000000;
    --ac-white: #ffffff;
    --ac-bg-light: #F8FBFF;
    --ac-bg-grey: #F4F4F4;
    --ac-border: #E2EAF0;
    --ac-shadow: 0 4px 24px rgba(38, 132, 229, .10);
    --ac-radius: 10px;
    --ac-radius-lg: 16px;
    --ac-transition: all .3s ease;
    --ac-font-body: 'Open Sans', sans-serif;
    --ac-font-heading: 'Montserrat', sans-serif;
}


/* =========================================================
   2. Base Resets & Typography
   ========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

.sp-page * {
    font-family: var(--ac-font-body);
    /* color: var(--ac-text); */
}

.sp-page h1,
.sp-page h2,
.sp-page h3,
.sp-page h4,
.sp-page h5,
.sp-page h6 {
    font-family: var(--ac-font-heading);
    color: var(--ac-dark);
    line-height: 1.25;
    margin: 0 0 15px;
    font-weight: 700;
}

.sp-page h1 {
    font-size: clamp(26px, 3.5vw, 42px);
}

.sp-page h2 {
    font-size: clamp(22px, 2.8vw, 34px);
}

.sp-page h3 {
    font-size: clamp(18px, 2vw, 24px);
}

.sp-page h4 {
    font-size: 18px;
}

.sp-page p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ac-text);
    margin: 0 0 16px;
}

.sp-page p:last-child {
    margin-bottom: 0;
}

.sp-page ul,
.sp-page ol {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.sp-page a {
    color: var(--ac-primary);
    transition: var(--ac-transition);
    text-decoration: none;
}

.sp-page a:hover {
    color: var(--ac-primary-dark);
}

strong,
b {
    font-weight: 700;
}

.sp-section {
    padding: 50px 0;
    background: #EEF4F9;
}

.sp-section-alt {
    background: #0F172A;
}

.sp-section-dark {
    background: var(--ac-dark);
}

.sp-section-dark h1,
.sp-section-dark h2,
.sp-section-dark h3,
.sp-section-dark p {
    color: var(--ac-white);
}

/* Container override — keeps consistent with existing site container */
.sp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================================
   3. Breadcrumb Area
   ========================================================= */
.sp-breadcrumb-area {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80');
    /* 1600×600 – car service workshop */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0 70px;
    margin-top: -34px;
    /* compensates for carbazar's mainmenu negative spacing */
    text-align: center;
}

.sp-breadcrumb-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .62);
}

.sp-breadcrumb-inner {
    position: relative;
    z-index: 2;
}

.sp-breadcrumb-area h1 {
    color: var(--ac-white);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.sp-breadcrumb-area .sp-breadcrumb-sub {
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
    font-family: var(--ac-font-body);
    margin-bottom: 20px;
}

.sp-breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sp-breadcrumb-nav a,
.sp-breadcrumb-nav span {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--ac-font-heading);
    color: rgba(255, 255, 255, .80);
    transition: var(--ac-transition);
}

.sp-breadcrumb-nav a:hover {
    color: var(--ac-primary);
}

.sp-breadcrumb-nav .sp-bc-sep {
    color: rgba(255, 255, 255, .50);
    font-size: 12px;
}

.sp-breadcrumb-nav .sp-bc-current {
    color: var(--ac-primary);
}


/* =========================================================
   4. Section Utility Classes
   ========================================================= */
.sp-section-heading {
    margin-bottom: 20px;
}

.sp-section-heading.centered {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.sp-section-heading .sp-eyebrow {
    display: inline-block;
    background: #2684E5;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.sp-section-heading h2 {
    font-size: clamp(22px, 2.8vw, 34px);
    color: #FFFFFF;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 18px;
}

.sp-section-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--ac-primary);
    border-radius: 2px;
}

.sp-section-heading.centered h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.sp-section-heading p {
    font-size: 16px;
    color: var(--ac-text);
    line-height: 1.8;
}

/* Primary CTA Button */
.sp-btn {
    display: inline-block;
    background: var(--ac-primary);
    color: var(--ac-white) !important;
    font-family: var(--ac-font-heading);
    font-size: 15px;
    font-weight: 700;
    padding: 13px 30px;
    border: 2px solid var(--ac-primary);
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: var(--ac-transition);
    cursor: pointer;
    text-decoration: none;
}

.sp-btn:hover {
    background: var(--ac-primary-dark);
    border-color: var(--ac-primary-dark);
    color: var(--ac-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 132, 229, .30);
}

.sp-btn-outline {
    background: transparent;
    color: var(--ac-primary) !important;
    border: 2px solid var(--ac-primary);
}

.sp-btn-outline:hover {
    background: var(--ac-primary);
    color: var(--ac-white) !important;
}


/* =========================================================
   5. Intro / Hero Content Section
   ========================================================= */
.sp-intro-section {
    padding: 50px 0;
    background: var(--ac-white);
}

.sp-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sp-intro-content h2 {
    margin-bottom: 20px;
}

.sp-intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ac-text);
    margin-bottom: 16px;
}

.sp-intro-img {
    position: relative;
    border-radius: var(--ac-radius-lg);
    overflow: hidden;
    box-shadow: var(--ac-shadow);
}

.sp-intro-img img {
    width: 100%;
    display: block;
    border-radius: var(--ac-radius-lg);
    /* Recommended: 720 × 500 px */
}

.sp-intro-img .sp-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--ac-primary);
    color: var(--ac-white);
    font-family: var(--ac-font-heading);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: var(--ac-radius);
}


/* =========================================================
   6. Services Grid Section
   ========================================================= */
.sp-services-grid-section {
    padding: 70px 0;
    background: var(--ac-bg-light);
}

.sp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

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

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


/* =========================================================
   7. Service Card (Icon Card)
   ========================================================= */
.sp-card {
    background: var(--ac-white);
    border: 1px solid var(--ac-border);
    border-radius: var(--ac-radius-lg);
    padding: 32px 28px;
    transition: var(--ac-transition);
    position: relative;
    overflow: hidden;
}

.sp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ac-primary);
    transform: scaleX(0);
    transition: transform .35s ease;
    transform-origin: left;
}

.sp-card:hover {
    box-shadow: 0 10px 40px rgba(38, 132, 229, .13);
    transform: translateY(-5px);
    border-color: var(--ac-primary);
}

.sp-card:hover::before {
    transform: scaleX(1);
}

.sp-card-icon {
    width: 60px;
    height: 60px;
    background: var(--ac-primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--ac-transition);
}

.sp-card:hover .sp-card-icon {
    background: var(--ac-primary);
}

.sp-card-icon i {
    font-size: 26px;
    color: var(--ac-primary);
    transition: var(--ac-transition);
}

.sp-card:hover .sp-card-icon i {
    color: var(--ac-white);
}

.sp-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--ac-dark);
}

.sp-card p {
    font-size: 15px;
    color: var(--ac-text);
    line-height: 1.75;
    margin: 0;
}

.sp-card .sp-card-list {
    margin-top: 14px;
}

.sp-card .sp-card-list li {
    font-size: 15px;
    color: var(--ac-text);
    padding: 5px 0 5px 22px;
    position: relative;
    line-height: 1.6;
}

.sp-card .sp-card-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 12px;
    color: var(--ac-primary);
}

/* Full-width service row card */
.sp-service-row {
    background: var(--ac-white);
    border: 1px solid var(--ac-border);
    border-radius: var(--ac-radius-lg);
    padding: 36px;
    margin-bottom: 28px;
    transition: var(--ac-transition);
}

.sp-service-row:hover {
    border-color: var(--ac-primary);
    box-shadow: var(--ac-shadow);
}

.sp-service-row h3 {
    font-size: 20px;
    color: var(--ac-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sp-service-row h3 i {
    color: var(--ac-primary);
    font-size: 22px;
}

.sp-service-row p {
    font-size: 16px;
    color: var(--ac-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.sp-service-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
    margin-top: 12px;
}

.sp-service-row-grid li {
    font-size: 15px;
    color: var(--ac-text);
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.sp-service-row-grid li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--ac-primary);
    font-size: 13px;
}


/* =========================================================
   8. Two-Column Content Block
   ========================================================= */
.sp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.sp-two-col:last-child {
    margin-bottom: 0;
}

.sp-two-col.reversed .sp-two-col-img {
    order: -1;
}

.sp-two-col-img {
    border-radius: var(--ac-radius-lg);
    overflow: hidden;
    box-shadow: var(--ac-shadow);
}

.sp-two-col-img img {
    width: 100%;
    display: block;
    /* Recommended: 600 × 420 px */
}

.sp-two-col-content h2,
.sp-two-col-content h3 {
    margin-bottom: 16px;
}

.sp-two-col-content p {
    font-size: 16px;
    color: #CBD5E1;
    line-height: 1.8;
    margin-bottom: 14px;
}

.sp-two-col-content .sp-check-list {
    margin-top: 18px;
}

.sp-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #fff;
    padding: 7px 0;
    line-height: 1.6;
}

.sp-check-list li i {
    color: var(--ac-primary);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}


/* =========================================================
   9. Process Steps Section
   ========================================================= */
.sp-process-section {
    padding: 50px 0;
    background: #022242;
}

.sp-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    counter-reset: step;
}

.sp-step {
    background: var(--ac-bg-light);
    border: 1px solid var(--ac-border);
    border-radius: var(--ac-radius-lg);
    padding: 32px 26px;
    position: relative;
    transition: var(--ac-transition);
    counter-increment: step;
}

.sp-step:hover {
    border-color: var(--ac-primary);
    box-shadow: var(--ac-shadow);
}

.sp-step-number {
    width: 48px;
    height: 48px;
    background: var(--ac-primary);
    color: var(--ac-white);
    font-family: var(--ac-font-heading);
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sp-step h4 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--ac-dark);
}

.sp-step p {
    font-size: 15px;
    color: var(--ac-text);
    line-height: 1.75;
    margin: 0;
}

/* Connector line between steps */
.sp-steps-grid.with-connector .sp-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 52px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: var(--ac-primary);
    opacity: .35;
}


/* =========================================================
  10. Why Choose Section (Checklist)
   ========================================================= */
.sp-why-section {
    padding: 50px 0;
    background: var(--ac-bg-light);
}

.sp-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.sp-why-img {
    border-radius: var(--ac-radius-lg);
    overflow: hidden;
    box-shadow: var(--ac-shadow);
}

.sp-why-img img {
    width: 100%;
    display: block;
    /* Recommended: 560 × 440 px */
}

.sp-why-content h2 {
    margin-bottom: 20px;
}

.sp-why-list {
    margin-top: 24px;
}

.sp-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--ac-border);
    font-size: 15px;
    color: var(--ac-text);
    line-height: 1.65;
}

.sp-why-list li:last-child {
    border-bottom: none;
}

.sp-why-list li .sp-why-icon {
    width: 36px;
    height: 36px;
    background: var(--ac-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.sp-why-list li .sp-why-icon i {
    color: var(--ac-primary);
    font-size: 14px;
}

.sp-why-list li .sp-why-text strong {
    display: block;
    font-size: 16px;
    color: var(--ac-dark);
    margin-bottom: 3px;
    font-family: var(--ac-font-heading);
}

/* Simple tick-list variant */
.sp-tick-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    margin-top: 20px;
}

.sp-tick-list li {
    font-size: 15px;
    color: #000000;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
    padding-top: 3px;
    padding-bottom: 3px;
}

.sp-tick-list li::before {
    content: '\2714';
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--ac-primary);
    font-size: 13px;
    font-weight: 900;
}


/* =========================================================
  11. Comparison Table (Ceramic Coating)
   ========================================================= */
.sp-table-wrapper {
    overflow-x: auto;
    border-radius: var(--ac-radius-lg);
    box-shadow: var(--ac-shadow);
    margin-top: 30px;
}

.sp-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--ac-white);
    font-size: 15px;
}

.sp-compare-table thead tr {
    background: var(--ac-primary);
    color: var(--ac-white);
}

.sp-compare-table thead th {
    padding: 16px 24px;
    font-family: var(--ac-font-heading);
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    color: var(--ac-white);
}

.sp-compare-table tbody tr {
    border-bottom: 1px solid var(--ac-border);
    transition: var(--ac-transition);
}

.sp-compare-table tbody tr:last-child {
    border-bottom: none;
}

.sp-compare-table tbody tr:hover {
    background: var(--ac-primary-light);
}

.sp-compare-table tbody td {
    padding: 14px 24px;
    font-size: 15px;
    color: var(--ac-text);
    line-height: 1.6;
}

.sp-compare-table tbody td:first-child {
    font-weight: 600;
    color: var(--ac-dark);
}

.sp-compare-table tbody td.sp-highlight {
    color: var(--ac-primary);
    font-weight: 600;
}


/* =========================================================
  12. Service Areas Tags Cloud
   ========================================================= */
.sp-areas-section {
    padding: 50px 0;
    background: var(--ac-white);
}

.sp-areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.sp-areas-tags .sp-tag {
    display: inline-block;
    background: var(--ac-primary-light);
    color: var(--ac-primary);
    font-family: var(--ac-font-heading);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(38, 132, 229, .20);
    transition: var(--ac-transition);
}

.sp-areas-tags .sp-tag:hover {
    background: var(--ac-primary);
    color: var(--ac-white);
    border-color: var(--ac-primary);
}

.sp-areas-note {
    margin-top: 18px;
    font-size: 15px;
    color: var(--ac-text);
    font-style: italic;
}


/* =========================================================
  13. FAQ Accordion
   ========================================================= */
.sp-faq-section {
    padding: 50px 0;
    background: #0F172A;
}

.sp-faq-list {
    max-width: 860px;
    margin: 30px auto 0;
}

.sp-faq-item {
    background: var(--ac-white);
    border: 1px solid var(--ac-border);
    border-radius: var(--ac-radius);
    margin-bottom: 14px;
    overflow: hidden;
    transition: var(--ac-transition);
}

.sp-faq-item.open {
    border-color: var(--ac-primary);
    box-shadow: 0 4px 20px rgba(38, 132, 229, .10);
}

.sp-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--ac-font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--ac-dark);
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    transition: var(--ac-transition);
    user-select: none;
}

.sp-faq-question:hover {
    color: var(--ac-primary);
}

.sp-faq-item.open .sp-faq-question {
    color: var(--ac-primary);
}

.sp-faq-question .sp-faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ac-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--ac-transition);
}

.sp-faq-question .sp-faq-icon i {
    color: var(--ac-primary);
    font-size: 14px;
    transition: var(--ac-transition);
}

.sp-faq-item.open .sp-faq-question .sp-faq-icon {
    background: var(--ac-primary);
}

.sp-faq-item.open .sp-faq-question .sp-faq-icon i {
    color: var(--ac-white);
    transform: rotate(45deg);
}

.sp-faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
}

.sp-faq-item.open .sp-faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.sp-faq-answer p {
    font-size: 16px;
    color: var(--ac-text);
    line-height: 1.8;
    margin: 0;
}


/* =========================================================
  14. Call-To-Action Banner
   ========================================================= */
.sp-cta-section {
    position: relative;
    padding: 50px 0;
    background: var(--ac-primary);
    overflow: hidden;
    text-align: center;
}

.sp-cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
}

.sp-cta-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}

.sp-cta-inner {
    position: relative;
    z-index: 2;
    /* max-width: 760px; */
    margin: 0 auto;
}

.sp-cta-section h2 {
    color: var(--ac-white);
    font-size: clamp(22px, 2.8vw, 36px);
    margin-bottom: 16px;
}

.sp-cta-section p {
    color: rgba(255, 255, 255, .90);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.sp-cta-section .sp-btn {
    background: var(--ac-white);
    color: var(--ac-primary) !important;
    border-color: var(--ac-white);
    margin: 6px;
}

.sp-cta-section .sp-btn:hover {
    background: var(--ac-dark);
    color: var(--ac-white) !important;
    border-color: var(--ac-dark);
}

.sp-cta-section .sp-btn-outline {
    background: transparent;
    color: var(--ac-white) !important;
    border-color: var(--ac-white);
}

.sp-cta-section .sp-btn-outline:hover {
    background: var(--ac-white);
    color: var(--ac-primary) !important;
}


/* =========================================================
  15. Image Blocks (inline images in content)
   ========================================================= */
.sp-img-block {
    border-radius: var(--ac-radius-lg);
    overflow: hidden;
    box-shadow: var(--ac-shadow);
    margin-bottom: 30px;
}

.sp-img-block img {
    width: 100%;
    display: block;
}

.sp-img-caption {
    font-size: 13px;
    color: var(--ac-text-light);
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}

/* Stats / highlight bar */
.sp-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #022242;
    border-radius: var(--ac-radius-lg);
    overflow: hidden;
    /* margin: 50px 0; */
}

.sp-stat-item {
    background: var(--ac-white);
    padding: 30px 20px;
    text-align: center;
}

.sp-stat-item .sp-stat-number {
    font-family: var(--ac-font-heading);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--ac-primary);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.sp-stat-item .sp-stat-label {
    font-size: 14px;
    color: var(--ac-text);
    font-weight: 500;
    line-height: 1.4;
}

/* Brands mini strip */
.sp-brands-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.sp-brands-list .sp-brand-badge {
    background: var(--ac-bg-light);
    border: 1px solid var(--ac-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ac-dark);
    padding: 6px 14px;
    transition: var(--ac-transition);
}

.sp-brands-list .sp-brand-badge:hover {
    background: var(--ac-primary);
    color: var(--ac-white);
    border-color: var(--ac-primary);
}

/* Info box highlight */
.sp-info-box {
    background: var(--ac-primary-light);
    border-left: 4px solid var(--ac-primary);
    border-radius: 0 var(--ac-radius) var(--ac-radius) 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.sp-info-box p {
    font-size: 15px;
    color: var(--ac-text);
    margin: 0;
    line-height: 1.75;
}

/* Maintenance tips list */
.sp-tips-list {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sp-tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--ac-text);
    padding: 10px 16px;
    background: var(--ac-white);
    border: 1px solid var(--ac-border);
    border-radius: var(--ac-radius);
    line-height: 1.6;
}

.sp-tips-list li i {
    color: var(--ac-primary);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}


/* =========================================================
  16. Responsive Breakpoints
   ========================================================= */

/* ── ≥ 1400px ─────────────────────────────────── */
@media (min-width: 1400px) {
    .sp-container {
        max-width: 1320px;
    }
}

/* ── ≥ 1200px ─────────────────────────────────── */
@media (min-width: 1200px) and (max-width: 1399px) {
    .sp-container {
        max-width: 1140px;
    }
}

/* ── ≥ 992px ──────────────────────────────────── */
@media (min-width: 992px) and (max-width: 1199px) {
    .sp-container {
        max-width: 960px;
    }

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

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

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

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

/* ── ≥ 768px ──────────────────────────────────── */
@media (min-width: 768px) and (max-width: 991px) {
    .sp-container {
        max-width: 720px;
    }

    .sp-intro-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .sp-two-col.reversed .sp-two-col-img {
        order: 0;
    }

    .sp-why-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

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

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

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

    .sp-tick-list {
        grid-template-columns: 1fr;
    }

    .sp-service-row-grid {
        grid-template-columns: 1fr;
    }

    .sp-breadcrumb-area {
        padding: 80px 0 55px;
    }

    .sp-section {
        padding: 55px 0;
    }

    .sp-cta-section {
        padding: 60px 0;
    }
}

/* ── ≥ 576px ──────────────────────────────────── */
@media (min-width: 576px) and (max-width: 767px) {
    .sp-container {
        max-width: 540px;
    }

    .sp-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .sp-two-col.reversed .sp-two-col-img {
        order: 0;
    }

    .sp-why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sp-services-grid {
        grid-template-columns: 1fr;
    }

    .sp-services-grid.cols-2 {
        grid-template-columns: 1fr;
    }

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

    .sp-steps-grid {
        grid-template-columns: 1fr;
    }

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

    .sp-tick-list {
        grid-template-columns: 1fr;
    }

    .sp-service-row-grid {
        grid-template-columns: 1fr;
    }

    .sp-breadcrumb-area {
        padding: 70px 0 50px;
    }

    .sp-section {
        padding: 50px 0;
    }

    .sp-cta-section {
        padding: 50px 0;
    }

    .sp-steps-grid.with-connector .sp-step::after {
        display: none;
    }
}

/* ── < 576px ──────────────────────────────────── */
@media (max-width: 575px) {
    .sp-container {
        padding: 0 16px;
    }

    .sp-intro-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .sp-two-col.reversed .sp-two-col-img {
        order: 0;
    }

    .sp-why-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sp-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sp-services-grid.cols-2 {
        grid-template-columns: 1fr;
    }

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

    .sp-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .sp-tick-list {
        grid-template-columns: 1fr;
    }

    .sp-service-row-grid {
        grid-template-columns: 1fr;
    }

    .sp-breadcrumb-area {
        padding: 60px 0 44px;
    }

    .sp-breadcrumb-area h1 {
        font-size: 22px;
    }

    .sp-breadcrumb-area .sp-breadcrumb-sub {
        font-size: 14px;
    }

    .sp-section {
        padding: 44px 0;
    }

    .sp-cta-section {
        padding: 44px 0;
    }

    .sp-section-heading {
        margin-bottom: 34px;
    }

    .sp-card {
        padding: 24px 20px;
    }

    .sp-service-row {
        padding: 26px 20px;
    }

    .sp-step {
        padding: 24px 20px;
    }

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

    .sp-stat-item {
        padding: 20px 12px;
    }

    .sp-steps-grid.with-connector .sp-step::after {
        display: none;
    }

    .sp-faq-question {
        font-size: 14px;
        padding: 16px 18px;
    }

    .sp-faq-item.open .sp-faq-answer {
        padding: 0 18px 18px;
    }
}