/* SCS BPM — Static Website Styles */

:root {
  --sapphire: #0c2340;
  --sapphire-light: #1a3a5c;
  --sapphire-dark: #071529;
  --gold: #c9a84c;
  --gold-light: #dfc477;
  --gold-dark: #a88a2e;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --gradient-gold: linear-gradient(135deg, #dfc477 0%, #c9a84c 50%, #a88a2e 100%);
  --gradient-sapphire: linear-gradient(135deg, #0c2340 0%, #1a3a5c 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1f2937;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color 0.2s; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: all 0.3s;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 0.5rem 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.navbar-logo { height: 60px; transition: filter 0.3s; }
.navbar.scrolled .navbar-logo { /* dark logo for light bg */ }
.navbar-logo img { height: 100%; width: auto; }
.navbar-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}
.navbar-links a {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
}
.navbar.scrolled .navbar-links a { color: var(--gray-600); }
.navbar-links a:hover,
.navbar-links a.active {
  color: var(--gold);
}
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.btn {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.btn-gold {
  background: var(--gradient-gold);
  color: var(--sapphire-dark);
}
.btn-gold:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover { background: rgba(201,168,76,0.1); }
.btn-large { padding: 1rem 2.5rem; font-size: 0.875rem; }

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}
.navbar.scrolled .mobile-menu-toggle span { background: var(--sapphire); }

@media (max-width: 1024px) {
  .navbar-links { display: none; }
  .navbar-cta .btn { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7,21,41,0.97);
  z-index: 60;
  padding: 5rem 1.5rem 2rem;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--gold); }
.mobile-menu .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #0c2340 0%, #0a1a2e 30%, #0e2a4a 55%, #0c2340 75%, #1a3a5c 100%);
  color: #fff;
  padding: 6rem 1.5rem 8rem;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero::before {
  top: -10%; right: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.hero::after {
  bottom: -15%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,58,92,0.3) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; max-width: 1000px; }
.hero-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(1.75rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero h1 .gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.sub {
  color: rgba(255,255,255,0.6);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 1rem;
}
.hero p.desc {
  color: rgba(255,255,255,0.5);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 640px) {
  .hero-cta { flex-direction: row; justify-content: center; }
}
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  z-index: 3;
}
.hero-stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.hero-stat-value {
  font-size: clamp(1.25rem, 3vw, 2.5rem);
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ===== Sections ===== */
section { padding: 4rem 0; }
@media (min-width: 1024px) { section { padding: 7rem 0; } }

.section-light { background: #fff; }
.section-gray { background: var(--gray-50); }
.section-sapphire { background: var(--gradient-sapphire); color: #fff; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-label {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--sapphire);
  margin: 0.75rem 0 1rem;
}
.section-sapphire .section-title { color: #fff; }
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  margin: 0 auto;
  border-radius: 9999px;
}

/* ===== Cards Grid ===== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .cards-grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px) { .cards-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) { .cards-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 640px) { .cards-grid-6 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid-6 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .cards-grid-6 { grid-template-columns: repeat(6, 1fr); } }

.card {
  background: #fff;
  border: 1px solid rgba(12,35,64,0.08);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.3);
}
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-sapphire);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
}
.card h3 {
  color: var(--sapphire);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.card p {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===== Two Column Layout ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.two-col h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--sapphire);
  margin: 0.5rem 0 1.5rem;
  line-height: 1.2;
}
.two-col p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ===== Page Hero (non-home pages) ===== */
.page-hero {
  background: var(--gradient-sapphire);
  color: #fff;
  padding: 8rem 0 4rem;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Stats Bar ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) { .stats-bar { grid-template-columns: repeat(4, 1fr); } }
.stat-item .value {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-item .label {
  color: var(--gray-600);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ===== Milestones / Timeline ===== */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--sapphire));
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.6rem;
  top: 0.5rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--sapphire);
  margin: 0.25rem 0 0.5rem;
}
.timeline-desc {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== Contact Form ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}
.contact-info-card {
  background: var(--gradient-sapphire);
  color: #fff;
  padding: 2.5rem;
  border-radius: 0.75rem;
}
.contact-info-card h3 { font-size: 1.25rem; margin-bottom: 1.5rem; color: var(--gold); }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.contact-info-item .icon { color: var(--gold); flex-shrink: 0; margin-top: 0.25rem; }
.contact-info-item .text { color: rgba(255,255,255,0.8); font-size: 0.9375rem; line-height: 1.6; }
.contact-info-item .text a { color: rgba(255,255,255,0.8); }
.contact-info-item .text a:hover { color: var(--gold-light); }

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sapphire);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-success, .form-error {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.form-success { background: #d1fae5; color: #065f46; border: 1px solid #10b981; }
.form-error { background: #fee2e2; color: #991b1b; border: 1px solid #ef4444; }

/* ===== Footer ===== */
.footer { background: var(--gradient-sapphire); color: #fff; }
.footer-top {
  border-top: 4px solid;
  border-image: var(--gradient-gold) 1;
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-main { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 1rem 0;
}
.footer-social {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
}
.footer-social a:hover { background: rgba(201,168,76,0.3); }
.footer h4 {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-links li { display: flex; align-items: center; gap: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-links .dot { color: rgba(255,255,255,0.3); }
@media (min-width: 1024px) {
  .footer-links { flex-direction: column; gap: 0.625rem; }
  .footer-links .dot { display: none; }
}
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.5;
}
.footer-contact-list .icon { color: var(--gold); flex-shrink: 0; margin-top: 0.125rem; }
.footer-contact-list a { color: rgba(255,255,255,0.7); }
.footer-contact-list a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.5rem;
  text-align: center;
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}
@media (min-width: 640px) {
  .footer-bottom-inner { flex-direction: row; text-align: left; }
}
.footer-bottom-links { display: flex; gap: 1rem; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  color: var(--sapphire-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }

/* ===== Content page (privacy/terms) ===== */
.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.content-page h1 {
  color: var(--sapphire);
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}
.content-page h2 {
  color: var(--sapphire);
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}
.content-page p {
  color: var(--gray-700);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.content-page ul {
  margin: 1rem 0 1rem 1.5rem;
  color: var(--gray-700);
}
.content-page li { margin-bottom: 0.5rem; line-height: 1.7; }

/* ===== Certifications ===== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .cert-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cert-grid { grid-template-columns: repeat(6, 1fr); } }
.cert-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 1.25rem 0.5rem;
  text-align: center;
}
.cert-name {
  color: var(--sapphire);
  font-weight: 700;
  font-size: 0.9375rem;
}
.cert-desc {
  color: var(--gray-600);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* ===== Team ===== */
.team-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--sapphire-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.team-name { color: var(--sapphire); font-size: 1.125rem; font-weight: 600; }
.team-title { color: var(--gold-dark); font-size: 0.875rem; margin: 0.25rem 0 0.75rem; }
.team-desc { color: var(--gray-600); font-size: 0.875rem; line-height: 1.6; }

/* ===== Services / Industries Detailed ===== */
.service-block {
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid var(--gray-200);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.service-block:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.service-block-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.service-block-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-sapphire);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.service-block h3 {
  color: var(--sapphire);
  font-size: 1.25rem;
  font-weight: 600;
}
.service-block p {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.service-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (min-width: 640px) { .service-features { grid-template-columns: 1fr 1fr; } }
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--gray-700);
  font-size: 0.875rem;
}
.service-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== Cost Comparison ===== */
.cost-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .cost-comparison { grid-template-columns: 1fr 1fr; } }
.cost-card {
  border-radius: 0.75rem;
  padding: 2rem;
}
.cost-card-inhouse {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.cost-card-scs {
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold);
}
.cost-card h3 { color: #fff; margin-bottom: 0.5rem; }
.cost-card .subtitle { color: rgba(255,255,255,0.5); font-size: 0.8125rem; margin-bottom: 1.5rem; }
.cost-bar { margin-bottom: 1rem; }
.cost-bar-label {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.cost-bar-track {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 9999px;
  overflow: hidden;
}
.cost-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ef4444, #dc2626);
  border-radius: 9999px;
}
.cost-card-scs .cost-bar-fill {
  background: linear-gradient(90deg, #10b981, #059669);
}

/* ===== Process Steps ===== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  text-align: center;
  padding: 1.5rem;
}
.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--sapphire-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.process-step h3 { color: var(--sapphire); font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.process-step p { color: var(--gray-600); font-size: 0.875rem; line-height: 1.6; }

/* ===== CTA Section ===== */
.cta-section {
  background: var(--gradient-sapphire);
  color: #fff;
  text-align: center;
  padding: 4rem 1.5rem;
}
.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-sapphire { color: var(--sapphire); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
