/* ===== ROOT VARIABLES ===== */
:root {
  --navy: #100190;
  --navy-deep: #0a0060;
  --navy-dark: #0d0080;
  --blue-mid: #1a10d0;
  --sky: #6fcdf6;
  --gold: #ffd700;
  --gold-soft: #ffe44d;
  --green: #0ebc40;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --text-dark: #0f0e2a;
  --text-mid: #4a4870;
  --border: #e2e6f0;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --shadow: 0 8px 30px rgba(16,1,144,0.10);
  --shadow-md: 0 14px 40px rgba(16,1,144,0.15);
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container-xl {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Shared Section Header */
.section-header { text-align: center; margin-bottom: 52px; }
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--navy);
  background: rgba(16,1,144,0.07);
  border: 1px solid rgba(16,1,144,0.15);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.section-label.light {
  color: var(--sky);
  background: rgba(111,205,246,0.12);
  border-color: rgba(111,205,246,0.30);
}
.section-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.section-title.light { color: var(--white); }
.section-title span { color: var(--navy); }
.section-title.light span { color: var(--sky); }
.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}
.section-sub.light { color: rgba(255,255,255,0.70); }

/* CTA Buttons */
.cta-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(255,215,0,0.35);
}
.cta-btn-main:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,215,0,0.45); }
.cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.30);
  transition: var(--transition);
}
.cta-btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.60); transform: translateY(-2px); }

/* ===== HERO ===== */
.sp-hero-section {
  position: relative;
  background: var(--navy);
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.sp-hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 10% 50%, rgba(16,1,144,0.75) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(111,205,246,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 75% 85%, rgba(255,215,0,0.05) 0%, transparent 55%);
  z-index: 0;
}
.sp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(111,205,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,205,246,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  z-index: 0;
}
.sp-geo { position: absolute; z-index: 0; border-radius: 50%; opacity: 0.06; }
.sp-geo-1 { width: 550px; height: 550px; top: -180px; right: -80px; background: var(--sky); animation: spGeoFloat 9s ease-in-out infinite alternate; }
.sp-geo-2 { width: 280px; height: 280px; bottom: -60px; left: 8%; background: var(--gold); opacity: 0.05; animation: spGeoFloat 11s ease-in-out infinite alternate-reverse; }
.sp-geo-3 { width: 140px; height: 140px; top: 22%; left: 4%; border: 2px solid rgba(111,205,246,0.22); background: transparent; border-radius: 0; transform: rotate(45deg); opacity: 0.4; animation: spGeoRotate 16s linear infinite; }
.sp-geo-4 { width: 75px; height: 75px; bottom: 22%; right: 7%; border: 2px solid rgba(255,215,0,0.22); background: transparent; border-radius: 0; transform: rotate(20deg); opacity: 0.4; animation: spGeoRotate 11s linear infinite reverse; }
@keyframes spGeoFloat { 0% { transform: translateY(0) scale(1); } 100% { transform: translateY(-28px) scale(1.04); } }
@keyframes spGeoRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.sp-hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  padding: 50px 24px;
  max-width: 1220px;
  margin: 0 auto;
  width: 100%;
}
.sp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(111,205,246,0.12);
  border: 1px solid rgba(111,205,246,0.30);
  color: var(--sky);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.sp-hero-h1 { font-size: 3.2rem; font-weight: 900; color: var(--white); line-height: 1.1; letter-spacing: -0.8px; margin-bottom: 14px; }
.sp-hero-h2 { font-size: 1.25rem; font-weight: 700; color: var(--sky); margin-bottom: 16px; line-height: 1.4; }
.sp-hero-intro { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 30px; max-width: 600px; }
.sp-hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.sp-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
}
.sp-hero-btn.sp-primary { background: var(--gold); color: var(--navy-deep); box-shadow: 0 6px 20px rgba(255,215,0,0.35); }
.sp-hero-btn.sp-primary:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,215,0,0.45); }
.sp-hero-btn.sp-secondary { background: rgba(255,255,255,0.09); color: var(--white); border: 1.5px solid rgba(255,255,255,0.30); backdrop-filter: blur(4px); }
.sp-hero-btn.sp-secondary:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.60); transform: translateY(-2px); }

/* Hero Form */
.sp-hero-form-box { background: #ffffff; border-radius: var(--radius-lg); padding: 21px 28px 0; }
.sp-hero-form-box h3 { font-size: 1.25rem; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.sp-hero-form-box p { font-size: 15px; color: var(--text-mid); margin-bottom: 20px; }
.sp-hero-form-box input,
.sp-hero-form-box textarea {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text-dark);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.25s;
}
.sp-hero-form-box input::placeholder, .sp-hero-form-box textarea::placeholder { color: var(--text-mid); }
.sp-hero-form-box input:focus, .sp-hero-form-box textarea:focus { border-color: var(--navy); }
.sp-hero-form-box button {
  width: 100%;
  background: linear-gradient(135deg, var(--green), #12d94d);
  color: #fff;
  border: none;
  padding: 15px;
  font-weight: 800;
  font-size: 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  box-shadow: 0 6px 20px rgba(14,188,64,0.30);
  transition: var(--transition);
}
.sp-hero-form-box button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(14,188,64,0.40); }

/* ===== INTRO SECTION ===== */
.sp-intro-section { position: relative; background: var(--white); padding: 80px 0; overflow: hidden; text-align: center; }
.sp-title-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--navy);
  background: rgba(16,1,144,0.07);
  border: 1px solid rgba(16,1,144,0.15);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.sp-section-headline { font-size: 2.6rem; font-weight: 900; color: var(--text-dark); line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px; text-align: center;}
.sp-section-headline span { color: var(--navy); }
.sp-section-tagline { font-size: 17px; color: var(--text-mid); line-height: 1.75; margin-bottom: 36px; max-width: 720px; margin-left: auto; margin-right: auto; }
.sp-benefit-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.sp-benefit-mini {
  background: var(--off-white);
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.sp-benefit-mini::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--sky));
  opacity: 0;
  transition: opacity 0.3s;
}
.sp-benefit-mini:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.sp-benefit-mini:hover::before { opacity: 1; }
.sp-benefit-mini i { font-size: 1.6rem; color: var(--navy); margin-bottom: 10px; display: block; }
.sp-benefit-mini p { font-size: 15px; font-weight: 800; color: var(--text-dark); margin: 0; }
.sp-blockquote {
  background: var(--off-white);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 28px;
}
.sp-blockquote p { font-size: 16px; font-style: italic; color: var(--text-mid); margin: 0; line-height: 1.7; }

/* ===== WHITE SECTION ===== */
.sp-white-section { background: var(--white); padding: 80px 0; }
.sp-intro-block {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  margin-bottom: 26px;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
}
.sp-body-text { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 28px; }
.sp-benefits-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.sp-benefit-card-dark {
  background: var(--navy-deep);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.sp-benefit-card-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--navy));
  opacity: 0;
  transition: opacity 0.3s;
}
.sp-benefit-card-dark:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); border-color: rgba(111,205,246,0.30); }
.sp-benefit-card-dark:hover::before { opacity: 1; }
.sp-benefit-card-dark h4 { font-size: 1.05rem; font-weight: 900; color: var(--white); margin-bottom: 10px; }
.sp-benefit-card-dark p { font-size: 15px; color: rgba(255,255,255,0.62); line-height: 1.65; margin: 0; }

/* ===== SERVICES GRID ===== */
.sp-services-section {
  position: relative;
  background: var(--navy);
  padding: 80px 0;
  overflow: hidden;
}
.sp-services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(111,205,246,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(16,1,144,0.4) 0%, transparent 50%),
    linear-gradient(rgba(111,205,246,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,205,246,0.03) 1px, transparent 1px);
  background-size: auto, auto, 60px 60px, 60px 60px;
  z-index: 0;
}
.sp-services-section .container-xl { position: relative; z-index: 1; }
.sp-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sp-svc-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sp-svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--navy));
  opacity: 0;
  transition: opacity 0.3s;
}
.sp-svc-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(111,205,246,0.25); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.sp-svc-card:hover::before { opacity: 1; }
.sp-svc-icon {
  width: 54px; height: 54px;
  background: rgba(111,205,246,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: var(--transition);
}
.sp-svc-card:hover .sp-svc-icon { background: var(--sky); color: var(--navy-deep); }
.sp-svc-card h4 { font-size: 1.1rem; font-weight: 900; color: var(--navy); margin-bottom: 14px; }
.sp-svc-card:hover h4 { color: var(--white); }
.sp-svc-list { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.sp-svc-list li { font-size: 15px; color: var(--text-mid); padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.sp-svc-card:hover .sp-svc-list li { color: rgba(255,255,255,0.80); }
.sp-svc-list li::before { content: ''; width: 6px; height: 6px; min-width: 6px; background: var(--sky); border-radius: 50%; margin-top: 7px; }

/* ===== PROCESS SECTION ===== */
.sp-process-section {
  position: relative;
  background: linear-gradient(135deg, #1a0fa0 0%, #100190 40%, #1e15d8 100%);
  padding: 90px 0;
  overflow: hidden;
}
.sp-process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(111,205,246,0.10) 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(255,215,0,0.06) 0%, transparent 50%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: auto, auto, 55px 55px, 55px 55px;
  pointer-events: none;
}
.sp-process-section .container-xl { position: relative; z-index: 1; }
.sp-process-grid-top { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 22px; }
.sp-process-grid-bottom { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 830px; margin: 0 auto 32px; }
.sp-process-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.sp-process-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sky), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.sp-process-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(111,205,246,0.30); transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,0.35); }
.sp-process-card:hover::before { opacity: 1; }
.sp-process-num { position: absolute; top: 16px; right: 20px; font-size: 3rem; font-weight: 900; color: rgba(255,255,255,0.07); line-height: 1; letter-spacing: -2px; }
.sp-process-icon {
  width: 66px; height: 66px;
  background: rgba(255,215,0,0.12);
  border: 1.5px solid rgba(255,215,0,0.25);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.6rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.sp-process-card:hover .sp-process-icon { background: rgba(255,215,0,0.20); border-color: rgba(255,215,0,0.50); transform: scale(1.1); }
.sp-process-card h4 { font-size: 1.15rem; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.sp-process-card p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0; }
.sp-process-notice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,215,0,0.10);
  border: 1.5px dashed rgba(255,215,0,0.45);
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 50px;
  margin-top: 8px;
}

/* ===== CTA BANNER ===== */
.sp-cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-mid) 50%, #1a10d0 100%);
  padding: 70px 0;
  overflow: hidden;
}
.sp-cta-geo { position: absolute; border-radius: 50%; opacity: 0.08; }
.sp-cta-geo-1 { width: 380px; height: 380px; top: -140px; left: -80px; background: var(--sky); }
.sp-cta-geo-2 { width: 280px; height: 280px; bottom: -90px; right: 8%; background: var(--gold); }
.sp-cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.sp-cta-inner h2 { font-size: 2.2rem; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.sp-cta-inner h2 span { color: var(--sky); }
.sp-cta-inner p { color: rgba(255,255,255,0.70); font-size: 16px; line-height: 1.7; }
.sp-cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; }

/* ===== SPLIT SECTION ===== */
.sp-split-section { background: var(--white); padding: 80px 0; }
.sp-split-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.sp-split-left h2 { font-size: 2.3rem; font-weight: 900; color: var(--text-dark); margin-bottom: 20px; line-height: 1.2; }
.sp-split-left h2 span { color: var(--navy); }
.sp-split-left p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.sp-features-sidebar {
  background: var(--navy-deep);
  border: 1px solid rgba(111,205,246,0.18);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
}
.sp-features-sidebar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--sky));
}
.sp-features-sidebar h3 { font-size: 1.1rem; font-weight: 900; color: var(--white); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); line-height: 1.4; }
.sp-feature-item { display: flex; align-items: flex-start; gap: 10px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 15px; color: rgba(255,255,255,0.72); font-weight: 600; line-height: 1.5; }
.sp-feature-item:last-child { border-bottom: none; }
.sp-feature-item::before { content: ''; width: 7px; height: 7px; min-width: 7px; background: var(--sky); border-radius: 50%; margin-top: 7px; }

/* ===== PROFILE SECTION ===== */
.sp-profile-section {
  position: relative;
  background: var(--navy);
  padding: 80px 0;
  overflow: hidden;
}
.sp-profile-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(111,205,246,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,205,246,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.sp-profile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.sp-profile-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid #f2f2f2;
  border-radius: var(--radius-lg);
  padding: 30px 20px 26px;
  text-align: center;
  transition: var(--transition);
  display: flex; flex-direction: column; align-items: center;
}
.sp-profile-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(111,205,246,0.25); transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,0.35); }
.sp-profile-img-wrap { width: 90px; height: 90px; border-radius: 50%; border: 2.5px solid rgba(111,205,246,0.35); overflow: hidden; margin: 0 auto 16px; box-shadow: 0 0 0 6px rgba(111,205,246,0.07); transition: box-shadow 0.3s; }
.sp-profile-card:hover .sp-profile-img-wrap { box-shadow: 0 0 0 8px rgba(111,205,246,0.16); }
.sp-profile-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.sp-profile-card h4 { font-size: 1.15rem; font-weight: 900; color: var(--white); margin-bottom: 4px; }
.sp-specialty { display: inline-block; font-size: 12px; font-weight: 700; color: var(--sky); background: rgba(111,205,246,0.12); border: 1px solid rgba(111,205,246,0.20); padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; }
.sp-profile-desc { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.sp-btn-hire { display: inline-flex; align-items: center; justify-content: center; width: 100%; gap: 6px; background: var(--gold); color: var(--navy-deep); font-weight: 800; font-size: 14px; padding: 11px 18px; border-radius: 8px; text-decoration: none; transition: var(--transition); }
.sp-btn-hire:hover { background: var(--gold-soft); transform: translateY(-1px); }
  
/*-------------software-----------------*/
.software-expertise-section {
    padding: 60px 0;
    background: #ffffff;
}

.software-tagline {
    font-size: 0.95rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.software-card {
    background: #ffffff;
    padding: 15px 10px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f1f1f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 130px;
    margin-bottom: 5px;
}

/* NEW CONTAINER FOR SAME SIZE LOGOS */
.software-logo-container {
    width: 100%;
    height: 50px; /* Sabka fixed space */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.software-logo {
    max-height: 100%;
    max-width: 85%; /* Logo width ko bhi control mein rakha hai */
    width: auto;
    object-fit: contain; /* Sabse important: stretches nahi hone dega */
    filter: grayscale(0%); 
    opacity: 1;
    transition: all 0.4s ease;
}

.software-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-blue);
    display: block;
    transition: all 0.3s ease;
}

.software-card:hover {
    border-color: var(--second-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.software-card:hover .software-logo {
    filter: grayscale(100%); 
    opacity: 0.5;
}

.software-card:hover .software-name {
    color: #999;
}

.expert-note {
    font-size: 0.85rem;
    color: #777;
    background: #fdfdfd;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #eee;
}

@media (max-width: 768px) {
    .software-card { height: 110px; }
    .software-logo-container { height: 40px; }
}
/*-------------------software end-------------------*/



/* ===== TESTIMONIALS ===== */
.sp-testi-section { position: relative; background: var(--off-white); padding: 80px 0 100px; overflow: hidden; }
.tc { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px; position: relative; margin: 10px; transition: var(--transition); }
.tc:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.tc-rating-badge { display: inline-block; font-size: 13px; font-weight: 800; color: var(--gold); background: rgba(255,215,0,0.10); border: 1px solid rgba(255,215,0,0.25); padding: 4px 14px; border-radius: 20px; margin-bottom: 16px; }
.tc-quote { font-size: 3.5rem; color: var(--navy); line-height: 1; margin-bottom: 8px; font-weight: 900; opacity: 0.25; }
.tc-text { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.tc-sep { height: 1px; background: var(--border); margin-bottom: 18px; }
.tc-footer { display: flex; align-items: center; gap: 12px; }
.tc-avatar { width: 44px; height: 44px; min-width: 44px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; overflow: hidden; }
.tc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tc-info { flex: 1; }
.tc-info strong { display: block; font-size: 15px; font-weight: 800; color: var(--text-dark); }
.tc-info span { font-size: 13px; color: var(--text-mid); }
.tc-stars { font-size: 16px; color: var(--gold); }

/* ===== FAQ ===== */
.sp-faq-section { background: var(--off-white); padding: 80px 0; }
.sp-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.sp-faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; transition: border-color 0.25s; }
.sp-faq-item:last-child { margin-bottom: 0; }
.sp-faq-label { display: flex; align-items: center; gap: 14px; padding: 20px 22px; cursor: pointer; user-select: none; }
.sp-faq-item input[type="checkbox"] { display: none; }
.sp-faq-icon { width: 30px; height: 30px; min-width: 30px; background: var(--off-white); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 300; flex-shrink: 0; transition: transform 0.3s, background 0.3s; }
.sp-faq-question-text { font-size: 15px; font-weight: 700; color: var(--text-dark); }
.sp-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; font-size: 15px; color: var(--text-mid); line-height: 1.75; padding: 0 22px; }
.sp-faq-item input[type="checkbox"]:checked ~ .sp-faq-body .sp-faq-answer { max-height: 400px; padding-bottom: 20px; }
.sp-faq-item input[type="checkbox"]:checked ~ .sp-faq-label .sp-faq-icon { background: var(--navy); color: var(--white); transform: rotate(45deg); }

/* ===== BOTTOM CTA ===== */
.sp-bottom-cta { position: relative; background: var(--navy); padding: 80px 0; text-align: center; overflow: hidden; }
.sp-bcta-geo { position: absolute; border-radius: 50%; opacity: 0.06; }
.sp-bcta-geo-1 { width: 500px; height: 500px; top: -200px; left: -100px; background: var(--sky); }
.sp-bcta-geo-2 { width: 300px; height: 300px; bottom: -100px; right: 5%; background: var(--gold); }
.sp-bcta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.sp-bcta-inner h2 { font-size: 2.4rem; font-weight: 900; color: var(--white); margin-bottom: 14px; }
.sp-bcta-inner h2 span { color: var(--sky); }
.sp-bcta-inner p { color: rgba(255,255,255,0.65); font-size: 17px; margin-bottom: 30px; line-height: 1.7; }
.sp-bcta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== SCOPE / MAXIMIZE SECTION ===== */
.sp-scope-section { background: var(--white); padding: 80px 0; }
.sp-scope-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.sp-scope-left h2 { font-size: 2.2rem; font-weight: 900; color: var(--text-dark); margin-bottom: 16px; line-height: 1.25; }
.sp-scope-left h2 span { color: var(--navy); }
.sp-scope-left p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 24px; }
.sp-scope-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sp-scope-cta-link:hover { background: var(--blue-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.sp-scope-checklist {
  background: var(--navy-deep);
  border: 1px solid rgba(111,205,246,0.15);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
}
.sp-scope-checklist::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--sky), var(--navy)); }
.sp-scope-checklist h4 { font-size: 1.05rem; font-weight: 900; color: var(--white); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.sp-scope-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.sp-scope-list { list-style: none; padding: 0; margin: 0; }
.sp-scope-list li { font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 600; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; gap: 8px; line-height: 1.4; }
.sp-scope-list li:last-child { border-bottom: none; }
.sp-scope-list li::before { content: ''; width: 6px; height: 6px; min-width: 6px; background: var(--sky); border-radius: 50%; }

/* Scroll reveal */
.reveal-on-scroll { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .sp-services-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-benefits-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .sp-benefit-cards-row { grid-template-columns: repeat(2, 1fr); }
  .sp-profile-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-process-grid-top { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
  .sp-hero-container { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .sp-split-grid { grid-template-columns: 1fr; gap: 40px; }
  .sp-scope-grid { grid-template-columns: 1fr; gap: 40px; }
  .sp-faq-grid { grid-template-columns: 1fr; }
  .sp-cta-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .sp-cta-actions { flex-direction: row; justify-content: center; }
  .sp-process-grid-bottom { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .sp-hero-h1 { font-size: 2.3rem; }
  .sp-section-headline { font-size: 2rem; }
  .section-title { font-size: 2.1rem; }
  .sp-services-grid { grid-template-columns: 1fr; }
  .sp-benefits-grid-4 { grid-template-columns: 1fr; }
  .sp-profile-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-process-grid-top { grid-template-columns: 1fr; }
  .sp-scope-lists { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .sp-hero-h1 { font-size: 1.9rem; }
  .sp-benefit-cards-row { grid-template-columns: 1fr 1fr; }
  .sp-profile-grid { grid-template-columns: 1fr 1fr; }
}

/*-------- accounting page section ---------*/

/* ===== WHO WE WORK WITH ===== */
.sp-who-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.sp-who-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(111,205,246,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,205,246,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.sp-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.sp-who-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
}
.sp-who-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(111,205,246,0.25); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.sp-who-icon {
  width: 58px;
  height: 58px;
  background: rgba(111,205,246,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  font-size: 1.4rem;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.sp-who-card:hover .sp-who-icon { background: var(--sky); color: var(--navy-deep); }
.sp-who-card h4 { font-size: 1rem; font-weight: 800; color: var(--white); }

/* ===== LEADERS ===== */
.sp-leaders-section { background: var(--white); padding: 80px 0; }
.sp-leaders-intro { max-width: 800px; margin: 0 auto 52px; text-align: center; }
.sp-leaders-intro p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 12px; }
.sp-leaders-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sp-leader-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.sp-leader-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--navy), var(--sky));
  opacity: 0;
  transition: opacity 0.3s;
}
.sp-leader-card:hover { border-color: rgba(16,1,144,0.20); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sp-leader-card:hover::before { opacity: 1; }
.sp-leader-check {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--navy);
  color: var(--sky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-top: 2px;
}
.sp-leader-card span { display: block; font-size: 0.95rem; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.sp-leader-card p { font-size: 15px; color: var(--text-mid); line-height: 1.65; margin: 0; }


/* ===== SECURITY ===== */
.sp-security-section { background: var(--white); padding: 80px 0; }
.sp-security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sp-security-left h2 { font-size: 2.3rem; font-weight: 900; color: var(--text-dark); margin-bottom: 16px; }
.sp-security-left h2 span { color: var(--navy); }
.sp-security-left p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }
.sp-security-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.sp-sec-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  transition: var(--transition);
}
.sp-sec-badge i { color: var(--sky); }
.sp-sec-badge:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-2px); }
.sp-sec-badge:hover i { color: var(--sky); }
.sp-security-right {
  background: var(--navy-deep);
  border: 1px solid rgba(111,205,246,0.15);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.sp-security-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--sky));
}
.sp-security-items { display: flex; flex-direction: column; gap: 16px; }
.sp-sec-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sp-sec-item:last-child { border-bottom: none; }
.sp-sec-item-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(111,205,246,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  font-size: 1.05rem;
}
.sp-sec-item-text strong { display: block; font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.sp-sec-item-text p { font-size: 14px; color: rgba(255,255,255,0.52); line-height: 1.55; margin: 0; }


/*----------payroll page content section and common in other service page----------*/
/* ============================================================
   SP CONTENT SECTIONS — paste into style.css once, reuse on all service pages
   Uses existing :root variables only. Prefix: sp- (no existing styles broken)
   ============================================================ */

/* ── 1. Plain prose / "What is X" white section ─────────── */
.sp-prose-section {
  padding: 80px 0;
  background: var(--white);
}
.sp-prose-section.sp-prose-alt {
  background: var(--off-white);
}
.sp-prose-inner {
  max-width: 900px;
  margin: 0 auto;
}
.sp-prose-section h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: center;
}
.sp-prose-section h2 span {
  color: var(--navy);
}
.sp-prose-section h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 28px 0 10px;
}
.sp-prose-section p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}
.sp-prose-quote {
  border-left: 4px solid var(--navy);
  background: var(--off-white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 22px;
  margin: 240px 0;
  font-style: italic;
  color: var(--navy-dark);
  font-size: 0.97rem;
  line-height: 1.75;
}

/* ── 2. Styled list group ────────────────────────────────── */
.sp-list-group {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.sp-list-group li {
  padding: 13px 18px;
  font-size: 0.95rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.65;
}
.sp-list-group li:last-child {
  border-bottom: none;
}
.sp-list-group li::before {
  content: "\2714";
  color: var(--navy);
  font-size: 0.82rem;
  flex-shrink: 0;
  margin-top: 3px;
  font-weight: 700;
}

/* ── 3. Read-more toggle (pure CSS checkbox trick) ───────── */
.sp-readmore-toggle {
  display: none;
}
.sp-readmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-bottom: 20px;
  transition: background var(--transition), color var(--transition);
  user-select: none;
}
.sp-readmore-btn:hover {
  background: var(--navy);
  color: var(--white);
}
.sp-readmore-content {
  display: none;
}
.sp-readmore-toggle:checked ~ .sp-readmore-content {
  display: block;
}
.sp-readmore-toggle:checked + .sp-readmore-btn .sp-rm-open  { display: none; }
.sp-readmore-toggle:checked + .sp-readmore-btn .sp-rm-close { display: inline; }
.sp-rm-close { display: none; }
.sp-rm-open  { display: inline; }

