/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700;800&family=Open+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:   #0b1e3d;
  --blue:   #1140a0;
  --accent: #ad2a89;
  --acc2:   #c85fa8;
  --light:  #f4f7fc;
  --bdr:    #dde4f0;
  --txt:    #555;
  --muted:  #64748b;
  --r:      10px;
  --shs:    0 2px 12px rgba(11,30,61,.07);
  --shm:    0 6px 28px rgba(11,30,61,.12);
}

/* ── Base reset inside page wrapper ── */
.sp *, .sp *::before, .sp *::after { box-sizing: border-box; }
.sp {
  font-family: 'Open Sans', sans-serif; /* FIX: was commented out - now applying globally */
  color: var(--txt);
}
.sp h1,.sp h2,.sp h3,.sp h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--navy); margin-top: 0;
}
.sp img { max-width: 100%; height: auto; }
.sp a { transition: color .2s; }
.sp p { text-align: justify; font-family: 'Open Sans', sans-serif; }

/* ── Global list styling inside .sp (fixes browser-default bullets in cards) ── */
.sp-card ul,
.sp-card ol {
  padding-left: 18px;
  margin: 10px 0 4px 0;
  font-family: 'Open Sans', sans-serif;
}
.sp-card ul li,
.sp-card ol li {
  font-size: .84rem;
  color: var(--txt);
  line-height: 1.65;
  margin-bottom: 5px;
}
.sp-card ul li::marker { color: var(--accent); }

/* ── List inside sp-why-pill ── */
.sp-why-pill ul {
  padding-left: 16px;
  margin: 8px 0 0 0;
  font-family: 'Open Sans', sans-serif;
}
.sp-why-pill ul li {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 4px;
}
.sp-why-pill ul li::marker { color: var(--accent); }

/* ── List inside sp-feat-text (nested in feature list items) ── */
.sp-feat-text ul {
  padding-left: 16px;
  margin: 8px 0 0 0;
  font-family: 'Open Sans', sans-serif;
}
.sp-feat-text ul li {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 4px;
}
.sp-feat-text ul li::marker { color: var(--accent); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.sp-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 88px 0 56px;
  margin-top: 155px;
}
.sp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,30,61,.90) 0%, rgba(17,64,160,.72) 100%);
}
.sp-hero-inner {
  position: relative; z-index: 2;
  text-align: center;
}
.sp-hero-inner h1 {
  color: #fff;
  font-family: 'Raleway', sans-serif;   /* changed from Sora */
  font-size: clamp(1.75rem, 5vw, 2.9rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.sp-bc {
  display: inline-flex; align-items: center; flex-wrap: wrap;
  justify-content: center; gap: 6px 10px;
  font-size: .82rem; color: white;
}
.sp-bc a { color: white; text-decoration: none; }
.sp-bc a:hover { color: var(--acc2); }
.sp-bc .sep { opacity: .5; }

/* ════════════════════════════════════════
   PAGE BODY
════════════════════════════════════════ */
.sp-body { background: var(--light); }

/* ════════════════════════════════════════
   GRID LAYOUT
════════════════════════════════════════ */
.sp-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-areas: "main sidebar";
  gap: 28px;
  padding: 48px 0 72px;
  align-items: start;
}
.sp-main    { grid-area: main;    min-width: 0; }
.sp-sidebar { grid-area: sidebar; }
@media (min-width: 992px) {
  .sp-sidebar { position: sticky; top: 120px; }
}
@media (max-width: 991px) {
  .sp-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "main" "sidebar";
    gap: 20px;
    padding: 28px 0 52px;
  }
  .sp-sidebar { position: static; }
}

/* ════════════════════════════════════════
   SHARED CARD
════════════════════════════════════════ */
.sp-card {
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--shs);
  margin-bottom: 22px;
}
.sp-card:last-child { margin-bottom: 0; }
.sp-card-body { padding: 26px 28px; }
@media (max-width: 575px) { .sp-card-body { padding: 18px 14px; } }
.sp-card-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1.12rem; margin-bottom: 18px;
  padding-bottom: 13px;
  border-bottom: 2px solid var(--accent); /* FIX: changed from plain bdr to accent bottom border for visual hierarchy */
  color: var(--navy);
}
/* p tags directly inside card body */
.sp-card-body > p {
  font-family: 'Open Sans', sans-serif;
  font-size: .9rem;
  color: var(--txt);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ════════════════════════════════════════
   INTRO CARD
════════════════════════════════════════ */
.sp-intro-img {
  width: 100%; display: block;
  height: 320px; object-fit: cover;
  border-radius: var(--r) var(--r) 0 0;
}

@media (max-width: 575px) { .sp-intro-img { height: 190px; } }
@media (min-width: 576px) and (max-width: 767px) { .sp-intro-img { height: 240px; } }
@media(max-width:767px){
  .sp-hero { margin-top: 120px; }
}
.sp-intro-body { padding: 26px 28px; }
@media (max-width: 575px) { .sp-intro-body { padding: 18px 14px; } }
.sp-intro-body h2 {
  font-family: 'Raleway', sans-serif;   /* changed from Sora */
  font-size: 1.45rem; margin-bottom: 16px;
  padding-bottom: 13px; position: relative;
}
.sp-intro-body h2::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 42px; height: 3px;
  background: var(--accent); border-radius: 2px;
}
.sp-lead {
  font-family: 'Open Sans', sans-serif;  /* changed from DM Sans */
  font-size: .96rem; color: var(--muted); line-height: 1.75;
  font-style: italic; border-left: 3px solid var(--accent);
  padding-left: 14px; margin-bottom: 14px;
}
.sp-intro-body p {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.8; color: var(--txt); margin-bottom: 14px;
  font-size: .92rem;
  text-align: justify;
}
.sp-intro-body p:last-child { margin-bottom: 0; }

/* ════════════════════════════════════════
   FEATURE LIST
════════════════════════════════════════ */
.sp-feat-list { list-style: none; padding: 0; margin: 0; }
.sp-feat-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 15px 0; border-bottom: 1px solid var(--bdr);
}
.sp-feat-list li:last-child { border-bottom: none; padding-bottom: 0; }
.sp-feat-icon {
  width: 40px; height: 40px; flex-shrink: 0; /* FIX: slightly bigger icon box */
  background: linear-gradient(135deg, #f5e0f0, #e8b8de);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}
.sp-feat-icon i{color:#ad2a89;}
.sp-feat-text { flex: 1; min-width: 0; } /* FIX: allow text to wrap properly */
.sp-feat-text strong {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.sp-feat-text > span {
  font-family: 'Open Sans', sans-serif;
  font-size: .84rem; color: var(--muted); line-height: 1.65;
  display: block; /* FIX: display block so ul below doesn't overlap */
}

/* ════════════════════════════════════════
   3-COLUMN MINI CARDS
════════════════════════════════════════ */
.sp-g3 {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 13px; margin-top: 6px;
}
@media (max-width: 575px) { .sp-g3 { grid-template-columns: 1fr; } }
@media (min-width: 576px) and (max-width: 767px) { .sp-g3 { grid-template-columns: 1fr 1fr; } }
.sp-mini {
  background: var(--light); border: 1px solid var(--bdr);
  border-radius: 8px; padding: 16px 14px; text-align: center;
  transition: all .22s;
}
.sp-mini:hover {
  border-color: var(--accent); transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(173,42,137,.11);  /* changed to pink shadow */
}
.sp-mini-ico { font-size: 22px; margin-bottom: 7px; }
.sp-mini strong {
  display: block;
  font-family: 'Raleway', sans-serif;   /* changed from Sora */
  font-size: .83rem; font-weight: 700; color: var(--navy); margin-bottom: 5px;
}
.sp-mini p {
  font-family: 'Open Sans', sans-serif;  /* changed from DM Sans */
  font-size: .8rem; color: var(--muted); line-height: 1.5; margin: 0;
}

/* ════════════════════════════════════════
   WHY GRID
════════════════════════════════════════ */
.sp-why-g { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (max-width: 575px) { .sp-why-g { grid-template-columns: 1fr; } }
.sp-why-pill {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--light); border: 1px solid var(--bdr);
  border-left: 3px solid var(--accent); /* FIX: left accent border for visual identity */
  border-radius: 8px; padding: 16px 14px;
}
.sp-why-num {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem; /* FIX: slightly bigger */
  font-weight: 800; color: var(--accent); line-height: 1; flex-shrink: 0;
  min-width: 32px; /* FIX: so numbers align consistently */
}
.sp-why-pill strong {
  font-family: 'Raleway', sans-serif;
  display: block; font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 5px;
}
.sp-why-pill > div > p { /* FIX: target only direct child p */
  font-family: 'Open Sans', sans-serif;
  font-size: .83rem; color: var(--muted); margin: 0 0 6px 0; line-height: 1.6;
}

/* ════════════════════════════════════════
   INDUSTRY TABLE
════════════════════════════════════════ */
.sp-tbl-wrap { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--bdr); }
.sp-tbl { width: 100%; border-collapse: collapse; font-size: .86rem; }
.sp-tbl thead th {
  background: var(--navy); color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700; font-size: .8rem; letter-spacing: .6px; text-transform: uppercase;
  padding: 12px 16px; text-align: left;
}
.sp-tbl tbody tr { transition: background .15s; }
.sp-tbl tbody tr:hover { background: #fdf0fa; } /* FIX: subtle pink hover on rows */
.sp-tbl tbody tr:nth-child(even) { background: var(--light); }
.sp-tbl tbody tr:nth-child(even):hover { background: #fdf0fa; }
.sp-tbl tbody td {
  font-family: 'Open Sans', sans-serif;
  padding: 11px 16px; border-bottom: 1px solid var(--bdr); color: var(--txt);
  font-size: .85rem; line-height: 1.5;
}
.sp-tbl tbody td:first-child { font-weight: 700; color: var(--navy); white-space: nowrap; }

/* ════════════════════════════════════════
   FAQ ACCORDION
════════════════════════════════════════ */
.sp-faq-item { border: 1px solid var(--bdr); border-radius: 8px; margin-bottom: 8px; overflow: hidden; }
.sp-faq-q {
  width: 100%; background: #fff; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 18px;
   text-align: left; gap: 10px;
  font-family: 'Raleway', sans-serif;   /* changed from Sora */
  font-size: .87rem;
  font-weight: 600; color: var(--navy); transition: background .2s;
}
.sp-faq-q1 {
  /* width: 100%; background: #fff; border: none; cursor: pointer; */
  /* display: flex; justify-content: space-between; align-items: center; */
  /* padding: 15px 18px; text-align: left; gap: 10px; */
  font-family: 'Raleway', sans-serif;   /* changed from Sora */
  font-size: .87rem;
  font-weight: 600; color: var(--navy); transition: background .2s;
  margin-bottom: 0; 
}

.sp-faq-q.open .sp-faq-q1 { color: #fff; }

.sp-faq-q:hover { background: var(--light); }
.sp-faq-q.open  { background: var(--navy); color: #fff; }
.sp-faq-arr {
  width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%;
  background: var(--light); display: flex; align-items: center;
  justify-content: center; font-size: 10px; transition: all .3s; color: var(--navy);
}
.sp-faq-q.open .sp-faq-arr { background: var(--accent); color: #fff; transform: rotate(180deg); }
.sp-faq-a {
  display: none; padding: 15px 18px;
  font-family: 'Open Sans', sans-serif;
  font-size: .86rem; color: var(--txt); line-height: 1.75; /* FIX: slightly bigger font + darker color for readability */
  background: #fff; border-top: 1px solid var(--bdr);
}
.sp-faq-a.open { display: block; }

/* ════════════════════════════════════════
   SIDEBAR
════════════════════════════════════════ */
.sp-sb-card {
  background: #fff; border-radius: var(--r);
  box-shadow: var(--shs); overflow: hidden; margin-bottom: 18px;
}
.sp-sb-card:last-child { margin-bottom: 0; }
.sp-snav-head {
  padding: 14px 18px; background: var(--accent); /* FIX: accent bg for sidebar heading for better branding */
  border-bottom: 1px solid var(--bdr);
  font-family: 'Raleway', sans-serif;
  font-size: .80rem;
  font-weight: 700; color: #fff; /* FIX: white text on accent bg */
  text-transform: uppercase; letter-spacing: 1.2px;
}
.sp-snav-list { list-style: none; padding: 6px 0; margin: 0; }
.sp-snav-list li a {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 18px; font-size: .90rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--txt); text-decoration: none;
  border-left: 3px solid transparent; transition: all .2s;
}
.sp-snav-list li a:hover,
.sp-snav-list li a.active {
  color: var(--accent); font-weight: 600; /* FIX: accent color for active/hover */
  border-left-color: var(--accent);
  background: #fdf0fa; text-decoration: none; /* FIX: light pink bg on active */
}
.sp-sn-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--bdr); flex-shrink: 0; transition: background .2s;
}
.sp-snav-list li a:hover .sp-sn-dot,
.sp-snav-list li a.active .sp-sn-dot { background: var(--accent); }
.sp-sb-ct { padding: 18px; }
.sp-sb-ct-lbl {
  font-family: 'Raleway', sans-serif;   /* changed from Sora */
  font-size: .7rem; font-weight: 700;
  color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 11px;
}
.sp-chips { display: flex; flex-direction: column; gap: 9px; }
.sp-chip {
  display: flex; gap: 11px; align-items: center;
  padding: 10px 12px; background: var(--light);
  border-radius: 8px; border: 1px solid var(--bdr);
  text-decoration: none; transition: all .2s;
}
.sp-chip:hover { border-color: var(--accent); transform: translateX(3px); text-decoration: none; }
.sp-chip-ico {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--navy); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px;
}
.sp-chip-txt strong {
  display: block; font-size: .77rem; font-weight: 600;
  color: var(--navy); font-family: 'Raleway', sans-serif;  /* changed from Sora */
}
.sp-chip-txt span {
  font-family: 'Open Sans', sans-serif;  /* changed from DM Sans */
  font-size: .77rem; color: var(--muted);
}

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.sp-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3470 55%, #1f4ea0 100%);
  padding: 68px 0; position: relative; overflow: hidden;
}
.sp-cta::before {
  content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(173,42,137,.12), transparent 65%);
  pointer-events: none;
}
.sp-cta-in {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  gap: 22px;
}
.sp-cta-txt { max-width: 100%; }
.sp-cta-txt h2 {
  font-family: 'Raleway', sans-serif;
  color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800; 
  margin-bottom: 12px;
  line-height: 1.25;
}
.sp-cta-txt h2 span { color: var(--acc2); }
.sp-cta-txt p {
  font-family: 'Open Sans', sans-serif;
  color: rgba(255,255,255,.72); font-size: .95rem;
  line-height: 1.75; margin: 0;
  text-align: center;
}
.sp-cta-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  align-items: center; justify-content: center;
}
@media (max-width: 767px) {
  .sp-cta { padding: 44px 0; }
  .sp-cta-btns { flex-direction: column; width: 100%; max-width: 320px; }
  .sp-cta-btns a { width: 100%; justify-content: center; }
}

/* Buttons */
.btn-p {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent); color: #fff;
  font-family: 'Raleway', sans-serif;   /* changed from Sora */
  font-weight: 600; font-size: .87rem;
  padding: 12px 26px; border-radius: 8px; border: none;
  cursor: pointer; text-decoration: none; transition: all .22s;
  box-shadow: 0 4px 14px rgba(173,42,137,.28);  /* changed to pink shadow */
}
.btn-p:hover {
  background: #911f71;  /* changed from orange hover to darker pink */
  transform: translateY(-2px); color: #fff; text-decoration: none;
}
.btn-g {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; color: #fff;
  font-family: 'Raleway', sans-serif;   /* changed from Sora */
  font-weight: 600; font-size: .87rem;
  padding: 11px 24px; border-radius: 8px;
  border: 2px solid rgba(255,255,255,.38);
  cursor: pointer; text-decoration: none; transition: all .22s;
}
.btn-g:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; text-decoration: none; }

/* ════════════════════════════════════════
   CONTACT FORM SECTION
════════════════════════════════════════ */
.sp-form-sec { padding: 68px 0; background: var(--light); }
@media (max-width: 767px) { .sp-form-sec { padding: 40px 0; } }
.sp-sec-ttl { text-align: center; margin-bottom: 40px; }
.sp-lbl {
  display: inline-block; background: rgba(173,42,137,.1);   /* changed to pink */
  border: 1px solid rgba(173,42,137,.28); color: var(--accent);  /* changed to pink */
  font-family: 'Raleway', sans-serif;   /* changed from Sora */
  font-size: .69rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 13px; border-radius: 50px; margin-bottom: 11px;
}
.sp-sec-ttl h2 {
  font-family: 'Raleway', sans-serif;   /* changed from Sora */
  font-size: 1.8rem; margin-bottom: 9px;
}
.sp-sec-ttl p {
  font-family: 'Open Sans', sans-serif;  /* changed from DM Sans */
  color: var(--muted); font-size: .92rem; max-width: 500px; margin: 0 auto;
  text-align:center;
}

/* Alert */
.sp-alert {
  border-radius: 9px; padding: 15px 18px; margin-bottom: 22px;
  display: flex; gap: 11px; align-items: flex-start;
  font-family: 'Raleway', sans-serif;   /* changed from Sora */
  font-size: .86rem;
}
.sp-alert-s { background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; }
.sp-alert-e { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }
.sp-alert-ico { font-size: 1.1rem; flex-shrink: 0; }
.sp-alert strong { display: block; margin-bottom: 2px; }
.sp-alert span   { font-weight: 400; }

/* Form box */
.sp-fbox {
  background: #fff; border-radius: 13px; box-shadow: var(--shm);
  overflow: hidden; display: grid; grid-template-columns: 1fr 1.6fr;
}
@media (max-width: 767px) { .sp-fbox { grid-template-columns: 1fr; } }
.sp-finfo {
  background: var(--navy); padding: 40px 32px;
  display: flex; flex-direction: column;
}
@media (max-width: 575px) { .sp-finfo { padding: 26px 18px; } }
.sp-finfo h3 {
  font-family: 'Raleway', sans-serif;   /* changed from Sora */
  color: #fff; font-size: 1.25rem; margin-bottom: 8px;
}
.sp-finfo > p {
  font-family: 'Open Sans', sans-serif;  /* changed from DM Sans */
  color: rgba(255,255,255,.6); font-size: .87rem; line-height: 1.7; margin-bottom: 28px;
}
.sp-irow { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 18px; }
.sp-irow:last-child { margin-bottom: 0; }
.sp-iico {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(255,255,255,.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--acc2); font-size: 14px;
}
.sp-irow strong {
  display: block; color: #fff; font-size: .82rem;
  font-family: 'Raleway', sans-serif;   /* changed from Sora */
  font-weight: 600; margin-bottom: 2px;
}
.sp-irow span {
  font-family: 'Open Sans', sans-serif;  /* changed from DM Sans */
  color: rgba(255,255,255,.5); font-size: .79rem;
}
.sp-fbody { padding: 40px 36px; }
@media (max-width: 575px) { .sp-fbody { padding: 22px 14px; } }
@media (min-width: 576px) and (max-width: 767px) { .sp-fbody { padding: 28px 22px; } }
.sp-fbody h3 {
  font-family: 'Raleway', sans-serif;   /* changed from Sora */
  font-size: 1.2rem; margin-bottom: 5px;
}
.sp-fbody .sub {
  font-family: 'Open Sans', sans-serif;  /* changed from DM Sans */
  color: var(--muted); font-size: .84rem; margin-bottom: 22px;
}

/* Form fields */
.sp-fg { margin-bottom: 13px; }
.sp-fg label {
  display: block; font-size: .77rem; font-weight: 600;
  color: var(--navy); margin-bottom: 5px;
  font-family: 'Raleway', sans-serif;   /* changed from Sora */
}
.sp-fg input,
.sp-fg select,
.sp-fg textarea {
  width: 100%; padding: 9px 12px;
  border: 1.5px solid var(--bdr); border-radius: 7px;
  font-size: .86rem;
  font-family: 'Open Sans', sans-serif;  /* changed from DM Sans */
  color: var(--txt); background: var(--light);
  transition: border .2s; outline: none;
}
.sp-fg input:focus,
.sp-fg select:focus,
.sp-fg textarea:focus {
  border-color: var(--accent);           /* changed to pink */
  background: #fff;
  box-shadow: 0 0 0 3px rgba(173,42,137,.08);  /* changed to pink */
}
.sp-fg textarea { resize: vertical; min-height: 108px; }
.sp-fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
@media (max-width: 480px) { .sp-fgrid { grid-template-columns: 1fr; } }
.sp-fgrid .full { grid-column: 1 / -1; }
.sp-fsubmit {
  width: 100%; padding: 13px;
  background: var(--accent); color: #fff; border: none;
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;   /* changed from Sora */
  font-weight: 700; font-size: .91rem; cursor: pointer;
  transition: all .22s; letter-spacing: .3px; margin-top: 4px;
}
.sp-fsubmit:hover {
  background: #911f71;  /* changed from orange to darker pink */
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(173,42,137,.28);  /* changed to pink shadow */
}

/* ════════════════════════════════════════
   BRANDS SECTION
════════════════════════════════════════ */
.sp-brands-sec {
  background: #fff; padding-top: 60px;;
}
@media (max-width: 767px) { .sp-brands-sec { padding: 38px 0; } }
.sp-brands-g {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; align-items: center;
}
.sp-brand {
  display: flex; align-items: center; justify-content: center;
  padding: 11px 16px; min-width: 100px;
  border: 1px solid var(--bdr); border-radius: 8px;
  background: #fff; transition: all .22s;
}
.sp-brand:hover {
  border-color: var(--accent); background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 3px 12px rgba(173,42,137,.1);  /* changed to pink shadow */
}
.sp-brand img { max-height: 50px; width: auto; transition: filter .2s; }
.sp-brand:hover img { filter: none; }

/* ════════════════════════════════════════
   BRAINWELL BRAND SECTION OVERRIDES
   Apply .sp-brands-sec--bw to brands section on Brainwell pages
════════════════════════════════════════ */
.sp-brands-sec--bw .sp-brand { background: var(--light); }
.sp-brands-sec--bw .sp-brand img { filter: grayscale(45%); }

/* ════════════════════════════════════════
   UTILITY CLASSES (converted from inline styles)
════════════════════════════════════════ */

/* overflow:hidden on intro image card — replaces style="overflow:hidden;" */
.sp-card-overflow { overflow: hidden; }

/* Muted note paragraph — replaces style="color:var(--muted);font-size:.87rem;margin-bottom:16px;" */
.sp-intro-note { color: var(--muted); font-size: .87rem; margin-bottom: 16px; }

/* Honeypot spam field — replaces style="display:none;" */
.sp-honeypot { display: none; }

/* Form success / error messages */
.sp-form-msg {
  padding: 13px 18px;
  border-radius: 8px;
  font-size: .9rem;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 18px;
  font-weight: 600;
}
.sp-form-msg--ok {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.sp-form-msg--err {
  background: #fdecea;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* ════════════════════════════════════════
   PRODUCT CATEGORIES PAGE
════════════════════════════════════════ */

/* Hero */
.pc-hero {
  position: relative;
  background-image: url('../img/hero-bg-4.jpg');
  background-size: cover;
  background-position: center;
  padding: 88px 0 56px;
  margin-top: 155px;
}
.pc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,30,61,.88) 0%, rgba(17,64,160,.70) 100%);
}
.pc-hero-inner {
  position: relative; z-index: 2;
  text-align: center;
}
.pc-hero-inner h1 {
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,.30);
}
.pc-bc {
  display: inline-flex; align-items: center; flex-wrap: wrap;
  justify-content: center; gap: 6px 10px;
  font-size: .82rem; color: rgba(255,255,255,.85);
}
.pc-bc a { color: rgba(255,255,255,.85); text-decoration: none; }
.pc-bc a:hover { color: #e42d7e; }
.pc-bc .sep { opacity: .5; }

@media(max-width: 767px) {
  .pc-hero { margin-top: 120px; }
}

/* Section title */
.pc-sec-title {
  text-align: center;
  margin-bottom: 48px;
}
.pc-sec-title .lbl {
  display: inline-block;
  background: #fce8f3;
  color: #e42d7e;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.pc-sec-title h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: #0b1e3d;
  margin-bottom: 14px;
}
.pc-sec-title p {
  max-width: 640px;
  margin: 0 auto;
  color: #64748b;
  font-size: .95rem;
  line-height: 1.75;
}

/* Categories grid */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}
@media (max-width: 1199px) { .pc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .pc-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 450px)  { .pc-grid { grid-template-columns: 1fr; } }

/* Category card */
.pc-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(11,30,61,.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
  text-decoration: none;
  color: inherit;
}
.pc-card:hover {
  box-shadow: 0 8px 32px rgba(11,30,61,.14);
  transform: translateY(-4px);
  color: inherit;
  text-decoration: none;
}
.pc-card-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) { .pc-card-img { height: 140px; } }

.pc-card-body {
  padding: 20px 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pc-card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #fce8f3, #f5c6e8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #e42d7e;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.pc-card-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0b1e3d;
  margin-bottom: 8px;
  line-height: 1.35;
}
.pc-card-desc {
  font-size: .84rem;
  color: #64748b;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.pc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: #e42d7e;
  text-decoration: none;
}
.pc-card-cta i { font-size: 14px; transition: transform .2s; }
.pc-card:hover .pc-card-cta i { transform: translateX(4px); }

/* CTA Banner */
.pc-cta {
  background: linear-gradient(135deg, #0b1e3d 0%, #1140a0 100%);
  border-radius: 14px;
  padding: 48px 40px;
  text-align: center;
  margin-top: 64px;
  margin-bottom: 0;
}
.pc-cta h3 {
  font-family: 'Raleway', sans-serif;
  color: #fff;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.pc-cta p {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.pc-cta-btn {
  display: inline-block;
  background: #e42d7e;
  color: #fff;
  padding: 13px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  transition: background .2s;
}
.pc-cta-btn:hover { background: #c4256c; color: #fff; text-decoration: none; }
@media (max-width: 575px) { .pc-cta { padding: 36px 20px; } }

/* Location section wrap */
.pc-loc-wrap { padding: 60px 0 0; background: #f4f7fc; }

/* ============================================================
   Explore by Location Section  (.sp-loc-*)
   Used on: all 45 service pages + product-categories.php
   Nested under .sp-loc-sec to ensure cascade priority
   ============================================================ */

.sp-loc-sec {
  background: #f4f7fc;
  padding: 60px 0 60px;
}

.sp-loc-sec .sp-loc-head {
  text-align: center;
  margin-bottom: 36px;
}

.sp-loc-sec .sp-loc-badge {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #e42d7e;
  background: rgba(228,45,126,.08);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.sp-loc-sec .sp-loc-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0b1e3d;
  margin: 0 0 10px;
}

.sp-loc-sec .sp-loc-desc {
  color: #64748b;
  font-size: .9rem;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.sp-loc-sec .sp-loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.sp-loc-sec .sp-loc-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(11,30,61,.07);
  padding: 28px 24px;
}

/* City heading — blue by default (Mumbai, Jaipur) */
.sp-loc-sec .sp-loc-city {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0b1e3d;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1140a0;
}

/* City heading — pink (Ahmedabad HQ, first city on product-categories page) */
.sp-loc-sec .sp-loc-city.sp-loc-city-pink {
  border-bottom-color: #e42d7e;
}

/* List reset inside cards */
.sp-loc-sec .sp-loc-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp-loc-sec .sp-loc-card ul li {
  padding: 6px 0;
  border-bottom: 1px solid #f0f4fb;
  margin: 0;
}

.sp-loc-sec .sp-loc-card ul li:last-child {
  border-bottom: none;
}

.sp-loc-sec .sp-loc-card ul li::marker {
  content: none;
}

.sp-loc-sec .sp-loc-card ul li a {
  color: #1140a0;
  font-size: .84rem;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  display: block;
  transition: color .2s;
}

.sp-loc-sec .sp-loc-card ul li a:hover {
  color: #e42d7e;
}

@media (max-width: 767px) {
  .sp-loc-sec .sp-loc-grid {
    grid-template-columns: 1fr;
  }
}
