/* =========================================================
   VERTEX MANPOWER CONSULTING — FACILITY MANAGEMENT SERVICE STYLES
   1-1 Layout with Vertex Color Theme & Aesthetics
   ========================================================= */

:root {
  --fm-teal: #1597A5;
  --fm-teal-light: #36BFC5;
  --fm-teal-dark: #0E7581;
  --fm-teal-glow: rgba(21, 151, 165, 0.22);
  --fm-accent: #E07A5F;
  --fm-accent-light: #E07A5F;
  --fm-navy-deep: #062A43;
  --fm-navy: #0B3553;
  --fm-ink: #0B2436;
  --fm-ink-mute: #4C6478;
  --fm-bg-soft: #F4F8FA;
  --fm-border: rgba(6, 42, 67, 0.08);
  --fm-border-strong: rgba(6, 42, 67, 0.14);
}

/* Color Highlight utilities */
.c-g {
  color: var(--fm-teal);
}
.c-o {
  color: var(--fm-accent);
}

/* Common Section Intro */
.section-intro {
  margin-bottom: 48px;
}
.section-eyebrow,
.s-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fm-teal-dark);
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
}
.eb-dot {
  width: 8px;
  height: 8px;
  background: var(--fm-teal);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(21, 151, 165, 0.25);
  animation: fmPulse 2s infinite;
}
@keyframes fmPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(21, 151, 165, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(21, 151, 165, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(21, 151, 165, 0); }
}
.section-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fm-navy-deep);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--fm-ink-mute);
  max-width: 680px;
  font-size: clamp(15.5px, 1.2vw, 17.5px);
  line-height: 1.65;
  margin: 0;
}

/* =========================================================
   1. HERO SECTION (.s-hero)
   ========================================================= */
.s-hero {
  background: radial-gradient(ellipse 60% 50% at 18% 30%, rgba(21, 151, 165, 0.13), transparent 65%),
              radial-gradient(ellipse 50% 45% at 85% 85%, rgba(224, 122, 95, 0.10), transparent 65%),
              var(--fm-bg-soft);
  padding: 64px 0 54px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--fm-border);
}
.s-hero::before {
  content: "";
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(21, 151, 165, 0.35) 1.4px, transparent 1.5px);
  background-size: 14px 14px;
  width: 380px;
  height: 340px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask-image: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 35%, transparent 75%);
  mask-image: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 35%, transparent 75%);
}

.s-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.s-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--fm-ink-mute);
  margin-bottom: 24px;
}
.s-breadcrumb a {
  color: var(--fm-ink-mute);
  text-decoration: none;
  transition: color 0.2s ease;
}
.s-breadcrumb a:hover {
  color: var(--fm-teal-dark);
}
.s-breadcrumb i {
  font-size: 11px;
  color: #9ab0c2;
}
.s-breadcrumb span {
  color: var(--fm-navy-deep);
  font-weight: 600;
}

.s-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--fm-navy-deep);
  margin-bottom: 22px;
}

.s-lede {
  font-size: clamp(16.5px, 1.25vw, 18.5px);
  line-height: 1.65;
  color: var(--fm-ink-mute);
  margin-bottom: 34px;
  max-width: 580px;
}

.s-hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.s-cta-primary {
  background: linear-gradient(135deg, var(--fm-teal) 0%, var(--fm-teal-light) 100%);
  color: #fff;
  padding: 15px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 10px 24px var(--fm-teal-glow);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.s-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(21, 151, 165, 0.35);
  color: #fff;
}
.s-cta-secondary {
  background: #fff;
  border: 1.5px solid var(--fm-border-strong);
  color: var(--fm-navy-deep);
  padding: 15px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.s-cta-secondary:hover {
  background: #f8fafc;
  border-color: var(--fm-teal);
  color: var(--fm-teal-dark);
}
.s-cta-secondary i {
  color: var(--fm-teal);
  font-size: 18px;
}

.s-hero-iso {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 99px;
  background: rgba(21, 151, 165, 0.08);
  border: 1px solid rgba(21, 151, 165, 0.22);
  color: var(--fm-navy-deep);
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 34px;
  transition: all 0.2s ease;
}
.s-hero-iso:hover {
  background: rgba(21, 151, 165, 0.14);
  border-color: var(--fm-teal);
}
.s-hero-iso i {
  color: var(--fm-teal);
  font-size: 18px;
}
.s-hero-iso-arrow {
  color: var(--fm-teal-dark);
  font-size: 13px;
  transition: transform 0.2s ease;
}
.s-hero-iso:hover .s-hero-iso-arrow {
  transform: translate(2px, -2px);
}

.s-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--fm-border);
}
.s-hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
}
.s-hero-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--fm-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fm-teal);
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(6, 42, 67, 0.04);
}
.s-hero-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--fm-navy-deep);
  line-height: 1;
  display: block;
}
.s-hero-stat-lbl {
  font-size: 12.5px;
  color: var(--fm-ink-mute);
  margin-top: 4px;
  display: block;
  font-weight: 500;
}

/* Hero Right Column Visual */
.s-hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}
.s-hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.4;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px -15px rgba(6, 42, 67, 0.25);
  border: 4px solid #fff;
  background: var(--fm-navy-deep);
}
.s-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.s-hero-photo:hover img {
  transform: scale(1.03);
}

.s-hero-chip {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(6, 42, 67, 0.75);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 3;
}
.s-hero-chip i {
  color: var(--fm-teal-light);
  font-size: 16px;
}

.s-hero-tag {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(6, 42, 67, 0.18);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--fm-navy-deep);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 3;
}
.s-hero-tag i {
  font-size: 26px;
  color: var(--fm-teal);
}
.s-hero-tag-text {
  line-height: 1.3;
}
.s-hero-tag-text small {
  display: block;
  font-weight: 500;
  font-size: 11.5px;
  color: var(--fm-ink-mute);
  margin-top: 2px;
}

.s-hero-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 14px 40px rgba(6, 42, 67, 0.22);
  z-index: 4;
  background: #fff;
}
.s-hero-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s-hero-floater {
  position: absolute;
  top: 40px;
  right: -28px;
  background: #fff;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 12px 36px rgba(6, 42, 67, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  border: 1px solid var(--fm-border);
  animation: fmFloat 4s ease-in-out infinite;
}
@keyframes fmFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.s-hero-floater-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(224, 122, 95, 0.12);
  color: var(--fm-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.s-hero-floater-text {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--fm-navy-deep);
  line-height: 1.25;
}
.s-hero-floater-text small {
  display: block;
  font-size: 11px;
  color: var(--fm-ink-mute);
  font-weight: 500;
}

/* =========================================================
   2. THE IFM STACK SECTION (.stack-sec)
   ========================================================= */
.stack-sec {
  background: #ffffff;
  padding: 92px 0;
  border-bottom: 1px solid var(--fm-border);
}
.stack-sec-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
.stack-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 40px;
  align-items: start;
}
.stack-layers {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stack-layer {
  background: var(--fm-bg-soft);
  border: 1.5px solid var(--fm-border);
  border-radius: 20px;
  padding: 26px 32px;
  display: grid;
  grid-template-columns: 46px 1fr 36px;
  align-items: center;
  gap: 24px;
  transition: all 0.28s cubic-bezier(0.2, 0.8, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.stack-layer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--fm-teal);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.stack-layer.orange::before {
  background: var(--fm-accent);
}
.stack-layer:hover {
  transform: translateX(6px);
  background: #fff;
  border-color: rgba(21, 151, 165, 0.35);
  box-shadow: 0 12px 32px rgba(6, 42, 67, 0.08);
}
.stack-layer.orange:hover {
  border-color: rgba(224, 122, 95, 0.4);
}
.stack-layer:hover::before {
  opacity: 1;
}

.stack-layer-num {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--fm-teal);
  line-height: 1;
}
.stack-layer.orange .stack-layer-num {
  color: var(--fm-accent);
}

.stack-layer-name {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--fm-navy-deep);
  margin-bottom: 6px;
}
.stack-layer-desc {
  color: var(--fm-ink-mute);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 14px;
}
.stack-layer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.stack-layer-chip {
  background: #fff;
  border: 1px solid var(--fm-border-strong);
  color: var(--fm-navy-deep);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: 0.02em;
}
.stack-layer:hover .stack-layer-chip {
  background: rgba(21, 151, 165, 0.08);
  border-color: rgba(21, 151, 165, 0.25);
  color: var(--fm-teal-dark);
}
.stack-layer.orange:hover .stack-layer-chip {
  background: rgba(224, 122, 95, 0.1);
  border-color: rgba(224, 122, 95, 0.3);
  color: #c75a3e;
}

.stack-layer-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--fm-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fm-ink-mute);
  font-size: 15px;
  transition: all 0.2s ease;
}
.stack-layer:hover .stack-layer-arrow {
  background: var(--fm-teal);
  border-color: var(--fm-teal);
  color: #fff;
  transform: translateX(4px);
}
.stack-layer.orange:hover .stack-layer-arrow {
  background: var(--fm-accent);
  border-color: var(--fm-accent);
  color: #fff;
}

/* Stack Summary Aside */
.stack-summary {
  background: linear-gradient(145deg, var(--fm-navy-deep) 0%, #0a3556 100%);
  border-radius: 24px;
  padding: 44px 38px;
  color: #fff;
  position: sticky;
  top: 100px;
  box-shadow: 0 20px 50px rgba(6, 42, 67, 0.22);
}
.stack-summary-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fm-teal-light);
  margin-bottom: 14px;
}
.stack-summary-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff !important;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.stack-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stack-summary-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.stack-summary-list i {
  font-size: 22px;
  color: var(--fm-teal-light);
  margin-top: 3px;
  flex-shrink: 0;
}
.stack-summary-list span {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}
.stack-summary-list small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 3px;
}

/* =========================================================
   3. SINGLE POINT OF CONTACT SECTION (.poc)
   ========================================================= */
.poc {
  background: var(--fm-bg-soft);
  padding: 96px 0;
  border-bottom: 1px solid var(--fm-border);
}
.poc-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.poc-portrait {
  position: relative;
  aspect-ratio: 4 / 4.8;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(6, 42, 67, 0.18);
  border: 4px solid #fff;
  background: var(--fm-navy-deep);
}
.poc-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.poc-portrait-card {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(6, 42, 67, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 16px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}
.poc-portrait-name {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
}
.poc-portrait-role {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fm-teal-light);
  font-weight: 700;
  margin-top: 3px;
}

.poc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fm-teal-dark);
  margin-bottom: 14px;
}
.poc-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fm-navy-deep);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.poc-quote {
  background: #fff;
  border-left: 4px solid var(--fm-accent);
  padding: 22px 26px;
  border-radius: 0 16px 16px 0;
  font-size: 16.5px;
  font-style: italic;
  line-height: 1.6;
  color: var(--fm-navy-deep);
  margin: 0 0 32px;
  box-shadow: 0 6px 22px rgba(6, 42, 67, 0.05);
}
.poc-quote-author {
  display: block;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--fm-ink-mute);
  margin-top: 10px;
}

.poc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}
.poc-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--fm-navy-deep);
}
.poc-list i {
  color: var(--fm-teal);
  font-size: 22px;
  flex-shrink: 0;
}

/* =========================================================
   4. HOW WE ONBOARD SECTION (.howit)
   ========================================================= */
.howit {
  background: #ffffff;
  padding: 92px 0;
  border-bottom: 1px solid var(--fm-border);
}
.howit-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
.howit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.howit-step {
  background: var(--fm-bg-soft);
  border: 1.5px solid var(--fm-border);
  border-radius: 22px;
  padding: 34px 28px;
  transition: all 0.28s cubic-bezier(0.2, 0.8, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.howit-step:hover {
  transform: translateY(-6px);
  background: #fff;
  border-color: rgba(21, 151, 165, 0.35);
  box-shadow: 0 18px 40px rgba(6, 42, 67, 0.1);
}
.howit-step.orange:hover {
  border-color: rgba(224, 122, 95, 0.4);
}
.howit-step-num {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--fm-teal);
  line-height: 1;
  margin-bottom: 22px;
}
.howit-step.orange .howit-step-num {
  color: var(--fm-accent);
}
.howit-step-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fm-navy-deep);
  margin-bottom: 12px;
  line-height: 1.3;
}
.howit-step-desc {
  color: var(--fm-ink-mute);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* =========================================================
   5. COMMON QUESTIONS / FAQ (.s-faq)
   ========================================================= */
.s-faq {
  background: var(--fm-bg-soft);
  padding: 92px 0 84px;
}
.s-faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--fm-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover {
  border-color: rgba(21, 151, 165, 0.25);
  box-shadow: 0 6px 20px rgba(6, 42, 67, 0.04);
}
.faq-item.active {
  border-color: var(--fm-teal);
  box-shadow: 0 8px 24px rgba(21, 151, 165, 0.1);
}
.faq-q {
  width: 100%;
  padding: 22px 26px;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--fm-navy-deep);
  cursor: pointer;
  line-height: 1.4;
  font-family: inherit;
}
.faq-q:focus-visible {
  outline: 2px solid var(--fm-teal);
  outline-offset: -2px;
}
.faq-q-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--fm-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
  color: var(--fm-teal-dark);
}
.faq-item.active .faq-q-icon {
  transform: rotate(45deg);
  background: var(--fm-teal);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.faq-a-inner {
  padding: 0 26px 24px;
  color: var(--fm-ink-mute);
  font-size: 15px;
  line-height: 1.65;
}
.faq-a-inner strong {
  color: var(--fm-navy-deep);
  font-weight: 700;
}

/* =========================================================
   6. CTA AUDIT BANNER (.s-cta)
   ========================================================= */
.s-cta {
  padding: 92px 0;
  background: #ffffff;
}
.s-cta-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

.s-cta-card {
  background: var(--fm-navy-deep);
  border-radius: 28px;
  padding: 64px 60px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 48px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px -15px rgba(6, 42, 67, 0.35);
  position: relative;
  overflow: hidden;
}

.s-cta-eb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fm-teal-light);
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 16px;
}
.s-cta-h {
  font-family: 'Fraunces', serif;
  color: #ffffff !important;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.s-cta-p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  max-width: 540px;
}
.s-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.s-cta-actions .pri {
  background: linear-gradient(135deg, var(--fm-teal) 0%, var(--fm-teal-light) 100%);
  color: #fff;
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  box-shadow: 0 10px 25px var(--fm-teal-glow);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.s-cta-actions .pri:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(21, 151, 165, 0.4);
  color: #fff;
}
.s-cta-actions .sec {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  font-size: 15.5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  transition: all 0.2s ease;
}
.s-cta-actions .sec:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}
.s-cta-actions .sec i {
  color: #25D366;
  font-size: 20px;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */
@media (max-width: 1100px) {
  .s-hero-inner,
  .poc-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .stack-grid {
    grid-template-columns: 1fr;
  }
  .stack-summary {
    position: static;
  }
  .howit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .s-cta-card {
    grid-template-columns: 1fr;
    padding: 44px 36px;
  }
}

@media (max-width: 768px) {
  .s-hero-inner,
  .stack-sec-inner,
  .poc-inner,
  .howit-inner,
  .s-cta-inner {
    padding: 0 20px;
  }
  .s-hero {
    padding: 40px 0;
  }
  .s-hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .s-hero-floater {
    display: none;
  }
  .s-hero-accent {
    width: 100px;
    height: 100px;
    bottom: -16px;
    right: -10px;
  }
  .stack-layer {
    grid-template-columns: 36px 1fr;
    gap: 14px;
    padding: 20px 18px;
  }
  .stack-layer-arrow {
    display: none;
  }
  .poc-list {
    grid-template-columns: 1fr;
  }
  .howit-grid {
    grid-template-columns: 1fr;
  }
  .s-cta-card {
    padding: 32px 24px;
    border-radius: 20px;
  }
  .s-cta-actions {
    width: 100%;
  }
  .s-cta-actions .pri,
  .s-cta-actions .sec {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   ALTERNATING SECTION THEMES (Pure White & #0D4059)
   Harmonized with index.html color system
   ========================================================= */

/* Dark Sections */
.s-hero.section-accent-dark {
  background: linear-gradient(rgba(11, 36, 54, 0.72), rgba(13, 64, 89, 0.82)),
              url('../images/facility-hero.jpg') center center / cover no-repeat !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}
.s-hero.section-accent-dark .s-h1 {
  color: #FFFFFF !important;
}
.s-hero.section-accent-dark .s-lede {
  color: rgba(255, 255, 255, 0.88) !important;
}
.s-hero.section-accent-dark .s-breadcrumb a {
  color: rgba(255, 255, 255, 0.75) !important;
}
.s-hero.section-accent-dark .s-breadcrumb a:hover {
  color: var(--fm-teal-light) !important;
}
.s-hero.section-accent-dark .s-breadcrumb span {
  color: #FFFFFF !important;
}
.s-hero.section-accent-dark .s-breadcrumb i {
  color: rgba(255, 255, 255, 0.5) !important;
}
.s-hero.section-accent-dark .s-hero-iso {
  background: rgba(255, 255, 255, 0.09) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}
.s-hero.section-accent-dark .s-hero-iso strong {
  color: #FFFFFF !important;
}
.s-hero.section-accent-dark .s-hero-iso i {
  color: var(--fm-teal-light) !important;
}
.s-hero.section-accent-dark .s-hero-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
}
.s-hero.section-accent-dark .s-hero-stat {
  border-right: 1.5px solid rgba(255, 255, 255, 0.16) !important;
}
.s-hero.section-accent-dark .s-hero-stat:last-child {
  border-right: none !important;
}
.s-hero.section-accent-dark .s-hero-stat-num {
  color: #FFFFFF !important;
}
.s-hero.section-accent-dark .s-hero-stat-lbl {
  color: rgba(255, 255, 255, 0.75) !important;
}
.s-hero.section-accent-dark .s-hero-stat-icon {
  background: rgba(54, 191, 197, 0.2) !important;
  color: var(--fm-teal-light) !important;
}
.s-hero.section-accent-dark .s-hero-chip {
  background: rgba(6, 42, 67, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: #FFFFFF !important;
}
.s-hero.section-accent-dark .s-cta-secondary {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}
.s-hero.section-accent-dark .s-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

.howit.section-accent-dark {
  background: #0D4059 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.howit.section-accent-dark .section-heading {
  color: #FFFFFF !important;
}
.howit.section-accent-dark .section-sub {
  color: rgba(255, 255, 255, 0.85) !important;
}
.howit.section-accent-dark .section-eyebrow {
  color: var(--fm-teal-light) !important;
}
.howit.section-accent-dark .eb-dot {
  background: var(--fm-teal-light) !important;
  box-shadow: 0 0 0 3px rgba(54, 191, 197, 0.3) !important;
}
.howit.section-accent-dark .howit-step {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(12px) !important;
}
.howit.section-accent-dark .howit-step:hover {
  background: rgba(255, 255, 255, 0.13) !important;
  border-color: var(--fm-teal-light) !important;
  transform: translateY(-4px) !important;
}
.howit.section-accent-dark .howit-step-num {
  color: var(--fm-teal-light) !important;
}
.howit.section-accent-dark .howit-step.orange .howit-step-num {
  color: #F4A261 !important;
}
.howit.section-accent-dark .howit-step-title {
  color: #FFFFFF !important;
}
.howit.section-accent-dark .howit-step-desc {
  color: rgba(255, 255, 255, 0.82) !important;
}

.s-cta.section-accent-dark {
  background: #0D4059 !important;
}
.s-cta.section-accent-dark .s-cta-card {
  background: linear-gradient(135deg, rgba(6, 42, 67, 0.88) 0%, rgba(13, 64, 89, 0.95) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4) !important;
}

/* Pure White Sections */
.stack-sec.section-pure-white,
.s-faq.section-pure-white {
  background-color: #FFFFFF !important;
}
.stack-sec.section-pure-white .section-heading,
.s-faq.section-pure-white .section-heading {
  color: var(--fm-navy-deep) !important;
}
.stack-sec.section-pure-white .section-sub {
  color: var(--fm-ink-mute) !important;
}
.stack-sec.section-pure-white .section-eyebrow,
.s-faq.section-pure-white .section-eyebrow {
  color: var(--fm-teal-dark) !important;
}
.stack-sec.section-pure-white .stack-layer,
.stack-sec.section-pure-white .poc-card,
.s-faq.section-pure-white .faq-item {
  background: #F8FAFC !important;
  border: 1px solid rgba(6, 42, 67, 0.08) !important;
}
.stack-sec.section-pure-white .stack-layer:hover,
.stack-sec.section-pure-white .poc-card:hover,
.s-faq.section-pure-white .faq-item:hover {
  background: #FFFFFF !important;
  border-color: var(--fm-teal) !important;
}
