/* ============================================================================
   City's Towing & Lockout — Services Page Styles
   File:        /assets/css/services.css
   Loaded by:   services.php
   Scoped under .ct-services-page to avoid bleeding into header/footer/other pages.
   ============================================================================ */

.ct-services-page,
.ct-services-page *{ box-sizing: border-box; }
.ct-services-page{
    --sp-red:      #D32F2F;
    --sp-red-hot:  #E84141;
    --sp-red-deep: #A81F1F;
    --sp-black:    #000000;
    --sp-ink:      #0B0B0B;
    --sp-ink-2:    #141414;
    --sp-ink-3:    #1B1B1B;
    --sp-white:    #FFFFFF;
    --sp-gray:     #B0B0B0;
    --sp-gray-dim: #6F6F6F;
    --sp-line:     rgba(255,255,255,.08);
    --sp-cream:    #F5F2EE;
    --sp-bone:     #FAFAF8;
    --sp-shadow-lg:0 30px 70px -28px rgba(0,0,0,.55);
    --sp-shadow-md:0 18px 40px -18px rgba(0,0,0,.40);
    --sp-font:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

    font-family: var(--sp-font);
    color: #1a1a1a;
    background: var(--sp-bone);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---------- shared building blocks ---------- */
.ct-services-page .sp-container{ max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.ct-services-page .sp-section{ padding: 96px 24px; position: relative; }
.ct-services-page .sp-section--cream{ background: var(--sp-cream); }
.ct-services-page .sp-section--ink{ background: var(--sp-ink); color: #fff; }
.ct-services-page .sp-section--dark{ background: var(--sp-black); color: #fff; }
.ct-services-page .sp-eyebrow{
    display: inline-flex; align-items: center; gap: 10px;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--sp-red);
    margin-bottom: 16px;
}
.ct-services-page .sp-eyebrow::before{
    content:""; width: 24px; height: 2px; background: var(--sp-red);
}
.ct-services-page .sp-h2{
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -.018em;
    line-height: 1.08;
    text-wrap: balance;
}
.ct-services-page .sp-h2 em{ font-style: normal; color: var(--sp-red); }
.ct-services-page .sp-lead{
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(0,0,0,.65);
    max-width: 64ch;
    text-wrap: pretty;
}
.ct-services-page .sp-section--ink .sp-lead,
.ct-services-page .sp-section--dark .sp-lead{ color: var(--sp-gray); }
.ct-services-page .sp-section-head{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}
.ct-services-page .sp-section-head > div{ max-width: 64ch; }
.ct-services-page .sp-section-head--center{
    justify-content: center;
    text-align: center;
}
.ct-services-page .sp-section-head--center > div{ margin: 0 auto;}
.ct-services-page .sp-section-head--center .sp-eyebrow{ justify-content: center;}

.ct-services-page .sp-pulse-dot{
    display: inline-block;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--sp-red);
    box-shadow: 0 0 0 0 rgba(211,47,47,.7);
    animation: spPulse 1.8s ease-out infinite;
}
.ct-services-page .sp-pulse-dot--white{
    background: #fff;
    box-shadow: 0 0 0 0 rgba(255,255,255,.7);
}
@keyframes spPulse{
    0%   { box-shadow: 0 0 0 0 rgba(211,47,47,.65); }
    70%  { box-shadow: 0 0 0 12px rgba(211,47,47,0); }
    100% { box-shadow: 0 0 0 0 rgba(211,47,47,0); }
}

/* Buttons */
.ct-services-page .sp-btn{
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.2;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.ct-services-page .sp-btn svg{ width: 16px; height: 16px; flex: 0 0 auto;}
.ct-services-page .sp-btn--primary{
    background: var(--sp-red);
    color: #fff;
    box-shadow: 0 14px 28px -12px rgba(211,47,47,.7), inset 0 1px 0 rgba(255,255,255,.18);
    position: relative;
    overflow: hidden;
}
.ct-services-page .sp-btn--primary::before{
    content:""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0) 45%);
    pointer-events: none;
}
.ct-services-page .sp-btn--primary:hover{
    background: var(--sp-red-hot);
    transform: translateY(-2px);
    box-shadow: 0 20px 36px -12px rgba(232,65,65,.85), inset 0 1px 0 rgba(255,255,255,.22);
}
.ct-services-page .sp-btn--ghost-light{
    background: #fff; color: #111;
    border-color: rgba(0,0,0,.08);
    box-shadow: 0 8px 20px -10px rgba(0,0,0,.2);
}
.ct-services-page .sp-btn--ghost-light:hover{ border-color: rgba(0,0,0,.18); transform: translateY(-2px);}
.ct-services-page .sp-btn--ghost-dark{
    background: rgba(255,255,255,.04); color: #fff;
    border-color: rgba(255,255,255,.14);
}
.ct-services-page .sp-btn--ghost-dark:hover{ background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28);}

/* ============================================================================
   HERO
   ============================================================================ */
.ct-services-page .sp-hero{
    position: relative;
    background: #000;
    color: #fff;
    overflow: hidden;
    padding: 96px 24px 80px;
}
.ct-services-page .sp-hero::before,
.ct-services-page .sp-hero::after{
    content:""; position: absolute; inset: 0; pointer-events: none;
}
.ct-services-page .sp-hero::before{
    background:
        radial-gradient(60% 80% at 80% 20%, rgba(211,47,47,.28) 0%, rgba(211,47,47,0) 60%),
        radial-gradient(50% 60% at 10% 90%, rgba(211,47,47,.15) 0%, rgba(211,47,47,0) 60%),
        linear-gradient(180deg, #0B0B0B 0%, #000 100%);
    z-index: 0;
}
.ct-services-page .sp-hero::after{
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
    z-index: 0;
}
.ct-services-page .sp-hero-inner{
    position: relative; z-index: 2;
    max-width: 1320px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
}
.ct-services-page .sp-hero-pre{
    display: inline-flex; align-items: center; gap: 12px;
    padding: 8px 14px 8px 10px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    margin-bottom: 24px;
}
.ct-services-page .sp-hero h1{
    margin: 0 0 22px;
    font-size: clamp(36px, 5.4vw, 64px);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.04;
    text-wrap: balance;
    max-width: 14ch;
}
.ct-services-page .sp-hero h1 em{
    font-style: normal;
    background: linear-gradient(180deg, var(--sp-red) 0%, var(--sp-red-hot) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ct-services-page .sp-hero-sub{
    margin: 0 0 32px;
    font-size: 18px;
    color: var(--sp-gray);
    max-width: 56ch;
    line-height: 1.55;
    text-wrap: pretty;
}
.ct-services-page .sp-hero-cta{ display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px;}
.ct-services-page .sp-hero-cta .sp-btn{ padding: 18px 24px; font-size: 16px;}
.ct-services-page .sp-hero-stats{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid var(--sp-line);
}
.ct-services-page .sp-stat strong{
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.01em;
    margin-bottom: 4px;
}
.ct-services-page .sp-stat span{
    font-size: 11px;
    color: var(--sp-gray);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 600;
}

/* Hero visual */
.ct-services-page .sp-hero-card{
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
    border: 1px solid var(--sp-line);
    border-radius: 22px;
    padding: 8px;
    box-shadow: var(--sp-shadow-lg);
}
.ct-services-page .sp-hero-img{
    aspect-ratio: 5 / 4;
    border-radius: 16px;
    overflow: hidden;
    background: repeating-linear-gradient(135deg, #1a1a1a 0px, #1a1a1a 14px, #161616 14px, #161616 28px);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.ct-services-page .sp-hero-img::after{
    content: "[ SERVICES HERO — branded tow truck on call ]";
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 11px;
    color: var(--sp-gray-dim);
    letter-spacing: .14em;
    text-transform: uppercase;
    text-align: center;
    padding: 0 18px;
}
.ct-services-page .sp-hero-overlay{
    position: absolute;
    left: 24px; bottom: 24px; right: 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(15,15,15,.86);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--sp-line);
    border-radius: 12px;
}
.ct-services-page .sp-hero-overlay-text{ display: flex; flex-direction: column; line-height: 1.2; }
.ct-services-page .sp-hero-overlay-text strong{ color:#fff; font-size:14px; font-weight:700;}
.ct-services-page .sp-hero-overlay-text small{ color: var(--sp-gray); font-size:11.5px; font-weight:500; margin-top:2px;}
.ct-services-page .sp-hero-overlay .sp-badge{
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--sp-red);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}

@media (max-width: 980px){
    .ct-services-page .sp-hero-inner{ grid-template-columns: 1fr; gap: 40px;}
    .ct-services-page .sp-hero{ padding: 72px 20px 64px;}
    .ct-services-page .sp-hero h1{ max-width: 18ch;}
}

/* ============================================================================
   EMERGENCY STRIP
   ============================================================================ */
.ct-services-page .sp-strip{
    background: linear-gradient(90deg, var(--sp-red-deep) 0%, var(--sp-red) 50%, var(--sp-red-deep) 100%);
    color: #fff;
    padding: 22px 24px;
    border-top: 1px solid rgba(0,0,0,.2);
    border-bottom: 1px solid rgba(0,0,0,.2);
}
.ct-services-page .sp-strip-inner{
    max-width: 1320px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    flex-wrap: wrap;
}
.ct-services-page .sp-strip-text{
    display: flex; align-items: center; gap: 14px;
    font-size: 16px; font-weight: 700; letter-spacing: -.005em;
}
.ct-services-page .sp-strip a{
    color: #fff; text-decoration: none;
    font-size: 18px; font-weight: 800; letter-spacing: -.01em;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 18px;
    background: rgba(0,0,0,.18);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.18);
    transition: background .18s ease, transform .18s ease;
}
.ct-services-page .sp-strip a:hover{ background: rgba(0,0,0,.3); transform: translateY(-1px);}
.ct-services-page .sp-strip a svg{ width: 18px; height: 18px;}

/* ============================================================================
   SERVICE CARDS GRID
   ============================================================================ */
.ct-services-page .sp-services-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.ct-services-page .sp-service-card{
    position: relative;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex; flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ct-services-page .sp-section--ink .sp-service-card,
.ct-services-page .sp-section--dark .sp-service-card{
    background: var(--sp-ink-2);
    border-color: var(--sp-line);
    color: #fff;
}
.ct-services-page .sp-service-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 32px 56px -24px rgba(0,0,0,.28);
    border-color: rgba(211,47,47,.4);
}
.ct-services-page .sp-section--ink .sp-service-card:hover,
.ct-services-page .sp-section--dark .sp-service-card:hover{
    box-shadow: 0 32px 56px -24px rgba(211,47,47,.4);
}
.ct-services-page .sp-service-img{
    aspect-ratio: 16 / 11;
    background: repeating-linear-gradient(135deg, #1a1a1a 0px, #1a1a1a 12px, #161616 12px, #161616 24px);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.ct-services-page .sp-service-img::before{
    content:""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.65) 100%);
    pointer-events: none;
}
.ct-services-page .sp-service-img::after{
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 10.5px;
    color: var(--sp-gray-dim);
    letter-spacing: .14em;
    text-transform: uppercase;
    text-align: center;
    padding: 0 18px;
    position: relative;
    z-index: 1;
}
.ct-services-page .sp-service-card[data-img="emergency"] .sp-service-img::after{ content:"[ EMERGENCY TOWING ]"; }
.ct-services-page .sp-service-card[data-img="flatbed"]   .sp-service-img::after{ content:"[ FLATBED PHOTO ]"; }
.ct-services-page .sp-service-card[data-img="roadside"]  .sp-service-img::after{ content:"[ ROADSIDE PHOTO ]"; }
.ct-services-page .sp-service-card[data-img="recovery"]  .sp-service-img::after{ content:"[ VEHICLE RECOVERY ]"; }
.ct-services-page .sp-service-card[data-img="lockout"]   .sp-service-img::after{ content:"[ CAR LOCKOUT ]"; }
.ct-services-page .sp-service-card[data-img="locksmith"] .sp-service-img::after{ content:"[ MOBILE LOCKSMITH ]"; }
.ct-services-page .sp-service-card[data-img="keyrep"]    .sp-service-img::after{ content:"[ KEY REPLACEMENT ]"; }
.ct-services-page .sp-service-card[data-img="keyfob"]    .sp-service-img::after{ content:"[ KEY FOB PROGRAMMING ]"; }
.ct-services-page .sp-service-card[data-img="jump"]      .sp-service-img::after{ content:"[ JUMP START ]"; }
.ct-services-page .sp-service-card[data-img="fuel"]      .sp-service-img::after{ content:"[ FUEL DELIVERY ]"; }
.ct-services-page .sp-service-card[data-img="long"]      .sp-service-img::after{ content:"[ LONG DISTANCE TOW ]"; }
.ct-services-page .sp-service-card-tag{
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(211,47,47,.92);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    z-index: 2;
}
.ct-services-page .sp-service-body{
    padding: 24px 24px 26px;
    display: flex; flex-direction: column; gap: 10px;
    flex: 1;
}
.ct-services-page .sp-service-icon{
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(211,47,47,.12);
    color: var(--sp-red);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 4px;
}
.ct-services-page .sp-service-icon svg{ width: 20px; height: 20px;}
.ct-services-page .sp-service-body h3{
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.012em;
    line-height: 1.25;
}
.ct-services-page .sp-service-body p{
    margin: 0;
    color: rgba(0,0,0,.6);
    font-size: 14px;
    line-height: 1.55;
}
.ct-services-page .sp-section--ink .sp-service-body p,
.ct-services-page .sp-section--dark .sp-service-body p{ color: var(--sp-gray); }
.ct-services-page .sp-service-link{
    margin-top: auto;
    padding-top: 14px;
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--sp-red);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.ct-services-page .sp-service-link svg{ width: 14px; height: 14px; transition: transform .2s ease;}
.ct-services-page .sp-service-card:hover .sp-service-link svg{ transform: translateX(4px);}

@media (max-width: 1080px){ .ct-services-page .sp-services-grid{ grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 600px){  .ct-services-page .sp-services-grid{ grid-template-columns: 1fr;} }

/* ============================================================================
   WHY CHOOSE US
   ============================================================================ */
.ct-services-page .sp-why-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ct-services-page .sp-why-card{
    background: var(--sp-ink-2);
    border: 1px solid var(--sp-line);
    border-radius: 16px;
    padding: 32px;
    transition: transform .25s ease, border-color .25s ease;
}
.ct-services-page .sp-why-card:hover{
    transform: translateY(-3px);
    border-color: rgba(211,47,47,.4);
}
.ct-services-page .sp-why-icon{
    width: 50px; height: 50px;
    border-radius: 12px;
    background: rgba(211,47,47,.14);
    color: var(--sp-red);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.ct-services-page .sp-why-icon svg{ width: 24px; height: 24px;}
.ct-services-page .sp-why-card h3{
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.01em;
    color: #fff;
}
.ct-services-page .sp-why-card p{
    margin: 0;
    color: var(--sp-gray);
    font-size: 14.5px;
    line-height: 1.6;
}

@media (max-width: 980px){ .ct-services-page .sp-why-grid{ grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 600px){ .ct-services-page .sp-why-grid{ grid-template-columns: 1fr;} }

/* ============================================================================
   PROCESS / 4 STEPS
   ============================================================================ */
.ct-services-page .sp-process{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
}
.ct-services-page .sp-process::before{
    content:"";
    position: absolute;
    top: 28px; left: 12.5%; right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--sp-red), rgba(211,47,47,.2));
    z-index: 0;
}
.ct-services-page .sp-step{
    position: relative;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    padding: 32px 24px 26px;
    z-index: 1;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.ct-services-page .sp-step:hover{
    transform: translateY(-3px);
    border-color: rgba(211,47,47,.4);
    box-shadow: 0 22px 40px -22px rgba(0,0,0,.18);
}
.ct-services-page .sp-step-num{
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--sp-red);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.01em;
    margin-bottom: 18px;
    box-shadow: 0 12px 24px -10px rgba(211,47,47,.6), inset 0 1px 0 rgba(255,255,255,.18);
    position: relative;
}
.ct-services-page .sp-step-num::after{
    content:""; position: absolute; inset: -6px;
    border: 1px solid rgba(211,47,47,.3);
    border-radius: 50%;
}
.ct-services-page .sp-step h3{
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.01em;
}
.ct-services-page .sp-step p{
    margin: 0;
    color: rgba(0,0,0,.6);
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 980px){
    .ct-services-page .sp-process{ grid-template-columns: repeat(2, 1fr);}
    .ct-services-page .sp-process::before{ display: none;}
}
@media (max-width: 540px){ .ct-services-page .sp-process{ grid-template-columns: 1fr;} }

/* ============================================================================
   TESTIMONIAL SLIDER
   ============================================================================ */
.ct-services-page .sp-slider{
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}
.ct-services-page .sp-slider-track{
    display: flex;
    transition: transform .6s cubic-bezier(.2,.8,.2,1);
    will-change: transform;
}
.ct-services-page .sp-slide{ flex: 0 0 100%; padding: 6px; box-sizing: border-box;}
.ct-services-page .sp-slide-inner{
    background: #fff;
    border: 1px solid rgba(0,0,0,.05);
    border-radius: 18px;
    padding: 48px 56px;
    box-shadow: 0 28px 60px -28px rgba(0,0,0,.15);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
    min-height: 220px;
}
.ct-services-page .sp-slide-quote{
    color: var(--sp-red);
    font-size: 88px;
    line-height: 1;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    align-self: flex-start;
}
.ct-services-page .sp-slide-body{ display: flex; flex-direction: column; gap: 16px;}
.ct-services-page .sp-stars{ display: inline-flex; gap: 2px; color: #FFC745;}
.ct-services-page .sp-stars svg{ width: 17px; height: 17px;}
.ct-services-page .sp-slide-text{
    margin: 0;
    font-size: clamp(18px, 2.3vw, 22px);
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1.35;
    color: #1a1a1a;
    text-wrap: pretty;
}
.ct-services-page .sp-slide-meta{ display: flex; align-items: center; gap: 14px;}
.ct-services-page .sp-slide-avatar{
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--sp-red);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 16px;
}
.ct-services-page .sp-slide-name{ display: flex; flex-direction: column; line-height: 1.2;}
.ct-services-page .sp-slide-name strong{ color: #1a1a1a; font-size: 15px; font-weight: 700;}
.ct-services-page .sp-slide-name span{
    color: rgba(0,0,0,.55);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 3px;
    font-weight: 600;
}

.ct-services-page .sp-slider-controls{
    margin-top: 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.ct-services-page .sp-slider-dots{ display: flex; gap: 8px;}
.ct-services-page .sp-slider-dots button{
    width: 9px; height: 9px;
    border-radius: 50%;
    border: 0;
    background: rgba(0,0,0,.18);
    cursor: pointer;
    padding: 0;
    transition: background .2s ease, width .25s ease;
}
.ct-services-page .sp-slider-dots button.is-active{
    background: var(--sp-red);
    width: 28px;
    border-radius: 999px;
}
.ct-services-page .sp-slider-arrows{ display: flex; gap: 10px;}
.ct-services-page .sp-slider-arrows button{
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.ct-services-page .sp-slider-arrows button:hover{
    background: var(--sp-red); color: #fff; border-color: var(--sp-red);
    transform: translateY(-2px);
}
.ct-services-page .sp-slider-arrows svg{ width: 18px; height: 18px;}

@media (max-width: 720px){
    .ct-services-page .sp-slide-inner{ padding: 32px 24px; grid-template-columns: 1fr; gap: 18px;}
    .ct-services-page .sp-slide-quote{ font-size: 60px;}
}

/* ============================================================================
   AREAS SERVED
   ============================================================================ */
.ct-services-page .sp-areas-grid{
    list-style: none; padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.ct-services-page .sp-areas-grid a{
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 18px 20px;
    background: var(--sp-ink-2);
    border: 1px solid var(--sp-line);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 600;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.ct-services-page .sp-areas-grid a:hover{
    background: rgba(211,47,47,.12);
    border-color: rgba(211,47,47,.5);
    transform: translateY(-2px);
}
.ct-services-page .sp-areas-grid svg{
    width: 14px; height: 14px;
    color: var(--sp-gray-dim);
    transition: color .18s ease, transform .18s ease;
}
.ct-services-page .sp-areas-grid a:hover svg{
    color: var(--sp-red);
    transform: translateX(3px);
}

@media (max-width: 980px){ .ct-services-page .sp-areas-grid{ grid-template-columns: repeat(3, 1fr);} }
@media (max-width: 640px){ .ct-services-page .sp-areas-grid{ grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 380px){ .ct-services-page .sp-areas-grid{ grid-template-columns: 1fr;} }

/* ============================================================================
   FAQ
   ============================================================================ */
.ct-services-page .sp-faq{ max-width: 880px; margin: 0 auto; }
.ct-services-page .sp-faq-item{ border-bottom: 1px solid rgba(0,0,0,.08); }
.ct-services-page .sp-faq-item:first-child{ border-top: 1px solid rgba(0,0,0,.08);}
.ct-services-page .sp-faq-q{
    width: 100%;
    background: none;
    border: 0;
    padding: 24px 8px;
    text-align: left;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -.01em;
    color: inherit;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    line-height: 1.4;
}
.ct-services-page .sp-faq-toggle{
    flex: 0 0 auto;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(211,47,47,.1);
    color: var(--sp-red);
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform .25s ease, background .2s ease;
}
.ct-services-page .sp-faq-toggle svg{ width: 14px; height: 14px; transition: transform .25s ease;}
.ct-services-page .sp-faq-item.is-open .sp-faq-toggle svg{ transform: rotate(45deg);}
.ct-services-page .sp-faq-a{
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.ct-services-page .sp-faq-item.is-open .sp-faq-a{ max-height: 480px; }
.ct-services-page .sp-faq-a-inner{
    padding: 0 8px 24px;
    color: rgba(0,0,0,.65);
    font-size: 15px;
    line-height: 1.65;
    max-width: 68ch;
}
.ct-services-page .sp-faq-a a{
    color: var(--sp-red);
    text-decoration: none;
    font-weight: 600;
}
.ct-services-page .sp-faq-a a:hover{ text-decoration: underline;}

/* ============================================================================
   FINAL CTA
   ============================================================================ */
.ct-services-page .sp-final{
    position: relative;
    overflow: hidden;
    padding: 120px 24px;
    background:
        radial-gradient(60% 80% at 100% 0%, rgba(232,65,65,.22) 0%, rgba(232,65,65,0) 60%),
        radial-gradient(50% 70% at 0% 100%, rgba(211,47,47,.15) 0%, rgba(211,47,47,0) 60%),
        linear-gradient(180deg, #0B0B0B 0%, #000 100%);
    color: #fff;
    text-align: center;
}
.ct-services-page .sp-final .sp-eyebrow{ justify-content: center;}
.ct-services-page .sp-final h2{
    margin: 0 auto 18px;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -.022em;
    line-height: 1.05;
    max-width: 22ch;
    text-wrap: balance;
}
.ct-services-page .sp-final h2 em{
    font-style: normal;
    background: linear-gradient(180deg, var(--sp-red) 0%, var(--sp-red-hot) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ct-services-page .sp-final p{
    margin: 0 auto 44px;
    color: var(--sp-gray);
    font-size: 17px;
    line-height: 1.6;
    max-width: 56ch;
}
.ct-services-page .sp-final-actions{
    display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
.ct-services-page .sp-final-actions .sp-btn{ padding: 18px 28px; font-size: 16px;}

/* ============================================================================
   STICKY MOBILE CALL
   ============================================================================ */
.ct-services-page .sp-sticky-call{
    display: none;
    position: fixed;
    left: 16px; right: 16px;
    bottom: 16px;
    z-index: 950;
    padding: 16px 20px;
    border-radius: 14px;
    background: var(--sp-red);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -.01em;
    font-size: 15.5px;
    text-align: center;
    box-shadow: 0 18px 36px -10px rgba(211,47,47,.6), 0 2px 10px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.18);
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.ct-services-page .sp-sticky-call svg{ width: 18px; height: 18px;}

/* ============================================================================
   RESPONSIVE OVERRIDES
   ============================================================================ */
@media (max-width: 720px){
    .ct-services-page .sp-section{ padding: 64px 20px;}
    .ct-services-page .sp-section-head{ margin-bottom: 36px;}
    .ct-services-page .sp-strip-inner{ flex-direction: column; align-items: flex-start;}
    .ct-services-page .sp-strip a{ align-self: stretch; justify-content: center;}
    .ct-services-page .sp-final{ padding: 88px 20px;}
    .ct-services-page .sp-hero-cta{ flex-direction: column; align-items: stretch;}
    .ct-services-page .sp-hero-cta .sp-btn{ justify-content: center;}
    .ct-services-page .sp-sticky-call{ display: inline-flex;}
    .ct-services-page{ padding-bottom: 76px;}
}

@media (prefers-reduced-motion: reduce){
    .ct-services-page *{ animation: none !important; transition: none !important;}
}
