/*==============================================================
  SERVICEPAGE.CSS — Clean Service Page Styles
  Theme: dark hero, alternating light/dark sections, red accents
  Reusable across all service pages and location pages
==============================================================*/

/* ── Variables ── */
:root {
  --sp-red:        #C41530;
  --sp-red-dark:   #960F23;
  --sp-red-glow:   rgba(196, 21, 48, 0.40);
  --sp-red-subtle: rgba(196, 21, 48, 0.08);
  --sp-red-border: rgba(196, 21, 48, 0.28);
  --sp-gold:       #D4A017;
  --sp-gold-light: #F0C842;
  --sp-dark:       #0a0a0a;
  --sp-dark2:      #111111;
  --sp-dark3:      #161616;
  --sp-mid:        #37373f;
  --sp-white:      #ffffff;
  --sp-light:      #f8f9fa;
  --sp-grey:       #f2f2f2;
  --sp-border:     #e4e4e4;
  --sp-text:       #444444;
  --sp-text-sm:    #666666;
  --sp-radius:     10px;
  --sp-radius-lg:  16px;
  --sp-shadow:     0 4px 20px rgba(0, 0, 0, .08);
  --sp-shadow-md:  0 8px 32px rgba(0, 0, 0, .12);
  --sp-shadow-red: 0 8px 28px var(--sp-red-glow);
  --sp-transition: all .3s ease;
}

/* ── Shared utility ── */
.sp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sp-red);
  margin-bottom: 12px;
}

.sp-eyebrow span {
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--sp-red);
  border-radius: 2px;
}

/* ── Shared buttons ── */
.sp-btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--sp-red) 0%, var(--sp-red-dark) 100%);
  color: #fff;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .97rem;
  text-decoration: none;
  transition: var(--sp-transition);
  box-shadow: var(--sp-shadow-red);
}

.sp-btn-red:hover {
  background: linear-gradient(135deg, var(--sp-red-dark) 0%, #6e0916 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--sp-red-glow);
}

.sp-btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, .85);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .97rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .3);
  transition: var(--sp-transition);
}

.sp-btn-ghost-white:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.sp-btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--sp-mid);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 2px solid #d0d0d0;
  transition: var(--sp-transition);
}

.sp-btn-ghost-dark:hover {
  border-color: var(--sp-red);
  color: var(--sp-red);
}

/*==============================================================
  HERO — white/light premium (matches homepage palette)
==============================================================*/
.sp-hero {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #fafafa 55%, #f5f0f1 100%);
  padding: 140px 0 80px;
  overflow: hidden;
}

/* Faint red dot grid on white */
.sp-hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(196, 21, 48, .07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Bold red diagonal panel — right side */
.sp-hero-bg-split {
  position: absolute;
  top: -10%;
  right: -4%;
  width: 44%;
  height: 120%;
  background: linear-gradient(145deg, var(--sp-red) 0%, var(--sp-red-dark) 60%, #6e0010 100%);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
  opacity: .92;
}

/* Faint left-side warmth glow */
.sp-hero-glow {
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(196, 21, 48, .05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.sp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 21, 48, .08);
  border: 1px solid var(--sp-red-border);
  color: var(--sp-red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.sp-hero-dot {
  width: 7px;
  height: 7px;
  background: var(--sp-gold-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--sp-gold-light);
  animation: sp-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes sp-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(1.4);
  }
}

.sp-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #111111;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}

.sp-hero h1 span {
  color: var(--sp-red);
  display: block;
}

/* Underline accent on the red span — matching homepage */
.sp-hero h1 span.sp-hero-accent {
  position: relative;
  display: inline-block;
}

.sp-hero h1 span.sp-hero-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--sp-red) 0%, var(--sp-gold) 60%, transparent 100%);
  border-radius: 3px;
}

.sp-hero-lead {
  font-size: clamp(.93rem, 1.5vw, 1.02rem);
  color: #555555;
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 26px;
}

.sp-hero-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.sp-hero-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333333;
  font-size: .88rem;
  font-weight: 500;
}

.sp-hero-checks li i {
  color: var(--sp-red);
  font-size: .95rem;
  flex-shrink: 0;
}

.sp-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Ghost button — dark on white bg */
.sp-btn-ghost-white {
  color: var(--sp-mid);
  border: 1.5px solid rgba(0, 0, 0, .20);
}

.sp-btn-ghost-white:hover {
  border-color: rgba(0, 0, 0, .40);
  background: rgba(0, 0, 0, .04);
  color: var(--sp-mid);
}

/* Hero image frame — sits on red right panel */
.sp-hero-img-frame {
  position: relative;
}

.sp-hero-img-frame img {
  width: 100%;
  border-radius: var(--sp-radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .40), 0 0 0 3px rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .20);
  transition: box-shadow .4s ease;
}

.sp-hero-img-frame img:hover {
  box-shadow: 0 28px 64px rgba(0, 0, 0, .50), 0 0 0 3px rgba(255, 255, 255, .25);
}

/* Decorative corner accent ring behind image */
.sp-hero-img-ring {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 80%;
  height: 80%;
  border: 2px solid rgba(196, 21, 48, .30);
  border-radius: var(--sp-radius-lg);
  pointer-events: none;
  z-index: 0;
}

.sp-hero-img-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: linear-gradient(135deg, var(--sp-red) 0%, var(--sp-red-dark) 100%);
  color: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--sp-shadow-red);
  font-size: .85rem;
  font-weight: 700;
  z-index: 3;
}

.sp-hero-img-badge i {
  font-size: 1.3rem;
  color: var(--sp-gold-light);
}

.sp-hero-img-badge span {
  line-height: 1.3;
}

.sp-hero-img-badge small {
  display: block;
  font-weight: 400;
  opacity: .85;
  font-size: .75rem;
}

/*==============================================================
  INTRO — white, form on right
==============================================================*/
.sp-intro {
  background: #fff;
  padding: 80px 0;
}

.sp-intro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sp-red);
  margin-bottom: 14px;
}

.sp-intro-eyebrow span {
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--sp-red);
  border-radius: 2px;
}

.sp-intro h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--sp-mid);
  line-height: 1.2;
  margin-bottom: 16px;
}

.sp-intro h2 span {
  color: var(--sp-red);
}

.sp-intro-body {
  font-size: .97rem;
  color: var(--sp-text);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Form card */
.sp-form-card {
  background: #fff;
  border-radius: var(--sp-radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
  border: 1.5px solid #eee;
}

.sp-form-card-header {
  background: linear-gradient(135deg, var(--sp-mid) 0%, #2c2c38 100%);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.sp-form-card-header i {
  font-size: 1.6rem;
  color: var(--sp-red);
  flex-shrink: 0;
}

.sp-form-card-header h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 2px;
}

.sp-form-card-header p {
  color: rgba(255, 255, 255, .5);
  font-size: .78rem;
  margin: 0;
}

.sp-form-card .php-email-form {
  padding: 24px 28px 28px;
}

.sp-form-card .php-email-form h2 {
  display: none;
}

.sp-form-card .form-control {
  border: 1.5px solid #e5e5e5;
  border-radius: 8px;
  font-size: .9rem;
  color: var(--sp-mid);
  background: #fafafa;
  transition: border-color .25s, box-shadow .25s;
  height: auto;
}

.sp-form-card .form-control:focus {
  border-color: var(--sp-red);
  box-shadow: 0 0 0 3px rgba(196, 21, 48, .1);
  background: #fff;
  outline: none;
}

.sp-form-card .form-floating label {
  color: #999;
  font-size: .88rem;
}

.sp-form-card .form-floating>.form-control:focus~label,
.sp-form-card .form-floating>.form-control:not(:placeholder-shown)~label {
  color: var(--sp-red);
  font-size: .78rem;
}

.sp-form-card textarea.form-control {
  resize: none;
  min-height: 90px;
}

.sp-form-card button[type="submit"],
.sp-form-card .btn-outline-light {
  background: var(--sp-red) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 8px !important;
  padding: 13px 20px !important;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 16px rgba(196, 21, 48, .3);
}

.sp-form-card button[type="submit"]:hover,
.sp-form-card .btn-outline-light:hover {
  background: var(--sp-red-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(196, 21, 48, .4);
}

.sp-form-card #captcha_code img,
.sp-form-card #captcha_code2 img {
  border-radius: 6px;
  border: 1.5px solid #ddd;
  margin-bottom: 6px;
}

/*==============================================================
  SECTION HEADERS — light & dark variants
==============================================================*/
.sp-section-header {
  margin-bottom: 48px;
}

.sp-section-header.center {
  text-align: center;
}

.sp-section-header.center .sp-eyebrow {
  display: block;
}

.sp-section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.sp-section-header.light h2 {
  color: var(--sp-mid);
}

.sp-section-header.dark h2 {
  color: #fff;
}

.sp-section-header h2 span {
  color: var(--sp-red);
}

.sp-section-header .sp-sub {
  font-size: .97rem;
  line-height: 1.7;
  max-width: 680px;
}

.sp-section-header.center .sp-sub {
  margin-left: auto;
  margin-right: auto;
}

.sp-section-header.light .sp-sub {
  color: var(--sp-text-sm);
}

.sp-section-header.dark .sp-sub {
  color: rgba(255, 255, 255, .6);
}

/*==============================================================
  HIGHLIGHT CARDS — white background section
==============================================================*/
.sp-highlights {
  background: var(--sp-light);
  padding: 80px 0;
}

.sp-highlight-card {
  background: #fff;
  border-radius: var(--sp-radius-lg);
  padding: 30px 26px;
  height: 100%;
  border: 1.5px solid var(--sp-border);
  box-shadow: var(--sp-shadow);
  transition: var(--sp-transition);
  position: relative;
  overflow: hidden;
}

.sp-highlight-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sp-red), #8b0000);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.sp-highlight-card:hover {
  border-color: #f0c0c0;
  box-shadow: var(--sp-shadow-md);
  transform: translateY(-4px);
}

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

.sp-highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(196, 21, 48, .1), rgba(196, 21, 48, .05));
  border: 1px solid rgba(196, 21, 48, .2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.sp-highlight-icon i {
  font-size: 1.25rem;
  color: var(--sp-red);
}

.sp-highlight-card h3 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--sp-mid);
  margin-bottom: 10px;
  line-height: 1.35;
}

.sp-highlight-card p {
  font-size: .88rem;
  color: var(--sp-text-sm);
  line-height: 1.75;
  margin: 0;
}

/*==============================================================
  SIGNS / SYMPTOMS — dark background
==============================================================*/
.sp-signs {
  background: var(--sp-dark2);
  padding: 80px 0;
}

.sp-sign-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--sp-radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: var(--sp-transition);
}

.sp-sign-card:hover {
  border-color: rgba(196, 21, 48, .3);
  background: rgba(196, 21, 48, .05);
  transform: translateY(-4px);
}

.sp-sign-icon {
  width: 46px;
  height: 46px;
  background: rgba(196, 21, 48, .12);
  border: 1px solid rgba(196, 21, 48, .22);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.sp-sign-icon i {
  font-size: 1.15rem;
  color: var(--sp-red);
}

.sp-sign-card h3 {
  font-size: .97rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.35;
}

.sp-sign-card p {
  font-size: .87rem;
  color: rgba(255, 255, 255, .58);
  line-height: 1.75;
  margin: 0;
}

/*==============================================================
  SIGNS SECTION — sub-row divider for multi-block layouts
==============================================================*/

/* Full-width divider row inside .sp-signs with a sub-heading */
.sp-signs-subheading {
  width: 100%;
  padding: 10px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 8px;
}

.sp-signs-subheading h3 {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sp-gold-light);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sp-signs-subheading h3::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--sp-gold-light);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Wide card variant — used for checklist/options blocks in the bottom row */
.sp-sign-card.sp-sign-card--wide {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sp-sign-card.sp-sign-card--wide h3 {
  font-size: 1rem;
  font-weight: 700;
}

.sp-sign-card.sp-sign-card--wide .sp-why-list {
  margin: 0;
}

/*==============================================================
  SERVICES CARDS — white background
==============================================================*/
.sp-services {
  background: #fff;
  padding: 80px 0;
}

.sp-service-card {
  background: var(--sp-light);
  border: 1.5px solid var(--sp-border);
  border-radius: var(--sp-radius-lg);
  overflow: hidden;
  height: 100%;
  transition: var(--sp-transition);
  box-shadow: var(--sp-shadow);
}

.sp-service-card:hover {
  border-color: #f0c0c0;
  box-shadow: var(--sp-shadow-md);
  transform: translateY(-4px);
}

.sp-service-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--sp-mid) 0%, #2c2c38 100%);
  padding: 20px 24px;
}

.sp-service-card-head i {
  font-size: 1.5rem;
  color: var(--sp-red);
  flex-shrink: 0;
}

.sp-service-card-head h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.sp-service-card-body {
  padding: 22px 24px;
}

.sp-service-card-body p {
  font-size: .9rem;
  color: var(--sp-text);
  line-height: 1.75;
  margin: 0;
}

/*==============================================================
  WHY CHOOSE US — light grey background
==============================================================*/
.sp-why {
  background: var(--sp-grey);
  padding: 80px 0;
}

.sp-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .92rem;
  color: var(--sp-text);
  line-height: 1.65;
  padding: 12px 16px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--sp-border);
  transition: var(--sp-transition);
}

.sp-why-list li:hover {
  border-color: #f0c0c0;
  box-shadow: var(--sp-shadow);
}

.sp-why-list li i {
  color: var(--sp-red);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/*==============================================================
  PROCESS STEPS — dark background
==============================================================*/
.sp-process {
  background: var(--sp-dark3);
  padding: 80px 0;
}

.sp-step-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 18px;
  padding: 32px 26px;
  height: 100%;
  position: relative;
  transition: var(--sp-transition);
  overflow: hidden;
}

.sp-step-card:hover {
  border-color: rgba(196, 21, 48, .3);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
}

.sp-step-num {
  font-size: 3.2rem;
  font-weight: 900;
  color: rgba(196, 21, 48, .1);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -2px;
}

.sp-step-icon {
  width: 46px;
  height: 46px;
  background: rgba(196, 21, 48, .12);
  border: 1px solid rgba(196, 21, 48, .22);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.sp-step-icon i {
  font-size: 1.15rem;
  color: var(--sp-red);
}

.sp-step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.sp-step-card p {
  font-size: .87rem;
  color: rgba(255, 255, 255, .57);
  line-height: 1.75;
  margin: 0;
}

/*==============================================================
  CTA BANNER
==============================================================*/
.sp-cta-banner {
  position: relative;
  background: linear-gradient(120deg, #0d0d0d 0%, var(--sp-red-dark) 55%, var(--sp-red) 100%);
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}

.sp-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.sp-cta-inner {
  position: relative;
}

.sp-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.sp-cta-badge i {
  color: var(--sp-gold-light);
}

.sp-cta-banner h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.sp-cta-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.sp-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.sp-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--sp-red);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .97rem;
  text-decoration: none;
  transition: var(--sp-transition);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .2);
}

.sp-cta-btn-primary:hover {
  background: #ffe0e0;
  color: var(--sp-red-dark);
  transform: translateY(-2px);
}

.sp-cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .97rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .5);
  transition: var(--sp-transition);
}

.sp-cta-btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

/*==============================================================
  FAQ — white background
==============================================================*/
.sp-faq {
  background: #fff;
  padding: 80px 0;
}

.sp-faq .accordion-item {
  border: none;
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.sp-faq .accordion-button {
  font-weight: 600;
  color: var(--sp-mid);
  font-size: .96rem;
  background: #fff;
  padding: 20px 24px;
  border-radius: 12px !important;
  box-shadow: none !important;
}

.sp-faq .accordion-button:not(.collapsed) {
  color: var(--sp-red);
  background: #fff9f9;
  border-bottom: 1px solid #f5e0e0;
  box-shadow: none !important;
}

.sp-faq .accordion-button:not(.collapsed)::after {
  filter: invert(15%) sepia(90%) saturate(5000%) hue-rotate(0deg) brightness(80%);
}

.sp-faq .accordion-body {
  font-size: .91rem;
  color: var(--sp-text);
  line-height: 1.75;
  background: #fff;
  padding: 18px 24px 22px;
}

/*==============================================================
  WHY CHOOSE US — prose variant (no bullets, centered header)
==============================================================*/
.sp-why-prose-card {
  background: #fff;
  border: 1.5px solid var(--sp-border);
  border-radius: var(--sp-radius-lg);
  border-left: 4px solid var(--sp-red);
  padding: 32px 36px;
  box-shadow: var(--sp-shadow);
  max-width: 860px;
  margin: 0 auto;
}

.sp-why-prose-card p {
  font-size: .97rem;
  color: var(--sp-text);
  line-height: 1.85;
  margin: 0 0 16px;
}

.sp-why-prose-card p:last-child {
  margin: 0;
}

/*==============================================================
  INLINE LINK
==============================================================*/
.sp-link {
  color: var(--sp-red);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(196, 21, 48, .3);
  transition: border-color .2s;
}

.sp-link:hover {
  border-color: var(--sp-red);
  color: var(--sp-red-dark);
}

/*==============================================================
  RESPONSIVE
==============================================================*/
@media (max-width: 991px) {
  .sp-hero {
    padding: 130px 0 60px;
  }

  .sp-hero-bg-split {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 42%;
    clip-path: polygon(0 28%, 100% 0, 100% 100%, 0 100%);
    opacity: .85;
  }
}

@media (max-width: 767px) {
  .sp-hero {
    padding: 130px 0 50px;
  }

  .sp-hero h1 {
    text-align: center;
  }

  .sp-hero-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

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

  .sp-hero-cta-row {
    justify-content: center;
  }

  .sp-hero-cta-row a {
    width: 100%;
    justify-content: center;
  }

  .sp-highlights,
  .sp-signs,
  .sp-services,
  .sp-why,
  .sp-process,
  .sp-faq,
  .sp-intro {
    padding: 60px 0;
  }

  .sp-hero-img-badge {
    bottom: -14px;
    left: -10px;
    padding: 10px 14px;
    font-size: .78rem;
  }
}

@media (max-width: 575px) {
  .sp-hero-checks {
    padding: 0 4px;
  }

  .sp-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .sp-cta-actions a {
    width: 100%;
    justify-content: center;
  }
}