/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE — assets/css/services.css
   Matches services.html class structure exactly
═══════════════════════════════════════════════════════════ */



/* ══════════════════════════════════════════════════════════
   SECTION 1 — HERO
══════════════════════════════════════════════════════════ */
.srv-hero-v2 {
  position: relative;
  min-height: 100vh;
  background: #06101E;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.srv-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.srv-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.50) saturate(.75);
  transform: scale(1.06);
  transition: transform 12s ease;
}

.srv-hero-bg img.loaded { transform: scale(1); }

.srv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    rgba(6,16,30,.80) 0%,
    rgba(6,16,30,.55) 50%,
    rgba(6,16,30,.35) 100%);
}

.srv-hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: calc(var(--nav-h) + 80px) 40px 80px;
}

/* Eyebrow */
.srv-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.srv-eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.srv-eyebrow-ref {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(200,134,10,.7);
  text-transform: uppercase;
}

/* Hero title */
.srv-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(60px, 10vw, 130px);
  line-height: .9;
  letter-spacing: -3px;
  margin-bottom: 32px;
  color: #fff;
}

.srv-ht-word {
  display: block;
}

.srv-ht-outline {
  -webkit-text-stroke: 2px rgba(200,134,10,.5);
  color: transparent;
}

.srv-hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.5);
  max-width: 520px;
  margin-bottom: 28px;
}

.srv-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
}

.srv-breadcrumb a {
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color .2s;
}

.srv-breadcrumb a:hover { color: var(--gold); }
.srv-breadcrumb i { font-size: 9px; }
.srv-breadcrumb span { color: rgba(200,134,10,.7); }

/* Service index card */
.srv-index-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(200,134,10,.12);
  backdrop-filter: blur(12px);
}

.sic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.sic-ref {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 2.5px;
  color: rgba(200,134,10,.6);
  text-transform: uppercase;
}

.sic-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255,255,255,.25);
  text-transform: uppercase;
}

.sic-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  text-decoration: none;
  transition: background .2s;
}

.sic-item:last-child { border-bottom: none; }

.sic-item:hover { background: rgba(200,134,10,.06); }

.sic-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: rgba(200,134,10,.5);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.sic-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  flex: 1;
  transition: color .2s;
}

.sic-item:hover .sic-name { color: #fff; }

.sic-item i {
  font-size: 13px;
  color: rgba(200,134,10,.4);
  transition: transform .2s, color .2s;
}

.sic-item:hover i {
  transform: translate(3px, -3px);
  color: var(--gold);
}

/* Ticker */
.srv-ticker {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.srv-ticker-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: srvTicker 30s linear infinite;
}

.srv-ticker-track span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,.2);
  text-transform: uppercase;
  flex-shrink: 0;
}

.srv-ticker-dot {
  color: rgba(200,134,10,.35) !important;
}

@keyframes srvTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ══════════════════════════════════════════════════════════
   SECTIONS 2–7 — ALTERNATING SERVICE SECTIONS
══════════════════════════════════════════════════════════ */
.srv-sec {
  position: relative;
}

.srv-sec-light {
  background: #F7F5F1;
}

.srv-sec-dark {
  background: #06101E;
}

.srv-sec-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

/* Reversed: image left, content right */
.srv-sec-inner--rev {
  direction: rtl;
}

.srv-sec-inner--rev > * {
  direction: ltr;
}

/* Content col */
.srv-sec-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.srv-sec-content--dark {
  /* inherits from .srv-sec-dark */
}

/* Mono label */
.srv-sec-mono {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.srv-sec-mono--dark {
  color: rgba(200,134,10,.7);
}

/* Heading wrap with ghost number */
.srv-heading-wrap {
  position: relative;
  margin-bottom: 24px;
}

.srv-ghost-num {
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 100px;
  line-height: 1;
  color: rgba(26,39,68,.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.srv-ghost-num--dark {
  color: rgba(255,255,255,.04);
}

.srv-sec-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  color: #06101E;
  position: relative;
  z-index: 1;
}

.srv-sec-title em {
  font-style: italic;
  color: var(--gold);
}

.srv-sec-title--dark {
  color: #fff;
}

.srv-sec-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(26,39,68,.6);
  margin-bottom: 16px;
}

.srv-sec-body--dark {
  color: rgba(255,255,255,.5);
}

/* Deliverables pill grid */
.srv-del-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.srv-del-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 6px 12px;
  border: 1px solid rgba(26,39,68,.15);
  color: rgba(26,39,68,.7);
  background: rgba(26,39,68,.04);
  text-transform: uppercase;
}

.srv-del-pill--dark {
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.04);
}

/* Tools row */
.srv-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.srv-tools-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(26,39,68,.4);
  text-transform: uppercase;
  margin-right: 4px;
}

.srv-tools--dark .srv-tools-label {
  color: rgba(255,255,255,.3);
}

.srv-tools-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  padding: 4px 10px;
  background: rgba(200,134,10,.08);
  border: 1px solid rgba(200,134,10,.2);
  color: rgba(200,134,10,.8);
  letter-spacing: .5px;
}

.srv-tools-tag--dark {
  background: rgba(200,134,10,.06);
  border-color: rgba(200,134,10,.2);
  color: rgba(200,134,10,.7);
}

/* Explore link */
.srv-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  color: #06101E;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--gold);
  transition: gap .2s, color .2s;
  width: fit-content;
}

.srv-explore-link:hover { gap: 16px; }

.srv-explore-link--dark {
  color: #fff;
  border-bottom-color: var(--gold);
}

.srv-explore-link--dark:hover { color: var(--gold); }

/* Image frame col */
.srv-img-frame {
  position: relative;
  overflow: hidden;
}

.srv-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}

.srv-img-frame:hover img { transform: scale(1.04); }

.srv-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(6,16,30,.5));
}

/* Tech badge overlay */
.srv-tech-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: rgba(6,16,30,.85);
  border: 1px solid rgba(200,134,10,.2);
  padding: 14px 18px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 130px;
}

.stb-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(200,134,10,.6);
  letter-spacing: 1px;
}

.stb-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  line-height: 1.3;
}


/* ══════════════════════════════════════════════════════════
   SECTION 8 — WHY CHOOSE FSE
══════════════════════════════════════════════════════════ */
.srv-why-v2 {
  background: #06101E;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.srv-why-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

.srv-why-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.srv-why-header {
  text-align: center;
  margin-bottom: 72px;
}

.srv-why-mono {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(200,134,10,.6);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.srv-why-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
}

.srv-why-gold { color: var(--gold); }

.srv-why-sub {
  font-size: 16px;
  color: rgba(255,255,255,.4);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Why cards grid */
.srv-why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.srv-why-card-v2 {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  padding: 36px 28px;
  transition: background .25s, border-color .25s;
}

.srv-why-card-v2:hover {
  background: rgba(200,134,10,.06);
  border-color: rgba(200,134,10,.15);
}

.swc-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
}

.swc-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 12px;
}

.swc-desc {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin: 0;
}


/* ══════════════════════════════════════════════════════════
   SECTION 9 — CTA
══════════════════════════════════════════════════════════ */
.srv-cta-sec {
  background: linear-gradient(135deg, #F7F5F1 0%, #EDE9E2 100%);
  padding: 120px 40px;
  text-align: center;
}

.srv-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.srv-cta-mono {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(200,134,10,.6);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.srv-cta-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  color: #06101E;
  line-height: 1.1;
  margin-bottom: 20px;
}

.srv-cta-gold { color: var(--gold); }

.srv-cta-sub {
  font-size: 16px;
  color: rgba(26,39,68,.55);
  line-height: 1.7;
  margin-bottom: 48px;
}

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

.srv-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #06101E;
  color: #fff;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  text-decoration: none;
  transition: background .25s, transform .2s;
}

.srv-cta-btn-primary:hover {
  background: #0d1f3c;
  transform: translateY(-2px);
  color: #fff;
}

.srv-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(26,39,68,.25);
  color: #06101E;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  text-decoration: none;
  transition: border-color .25s, transform .2s;
}

.srv-cta-btn-secondary:hover {
  border-color: #06101E;
  transform: translateY(-2px);
  color: #06101E;
}


/* ══════════════════════════════════════════════════════════
   SERVICES FOOTER (sff-* classes)
══════════════════════════════════════════════════════════ */
.srv-footer {
  background: #06101E;
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

.srv-footer-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.srv-footer-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(200,134,10,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,134,10,.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.srv-footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.srv-footer-main {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 280px;
  gap: 48px;
  padding-bottom: 64px;
}

.sff-brand-col { display: flex; flex-direction: column; gap: 20px; }

.sff-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}

.sff-logo-box {
  width: 40px; height: 40px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 14px; color: #fff;
  flex-shrink: 0;
}

.sff-logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}

.sff-logo-text span:first-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 12px; letter-spacing: 2px; color: #fff;
}

.sff-logo-text span:last-child {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 3px; color: var(--gold);
}

.sff-about {
  font-size: 13px; line-height: 1.75;
  color: rgba(255,255,255,.4);
}

.sff-certs { display: flex; flex-direction: column; gap: 6px; }

.sff-certs span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 1px;
  color: rgba(255,255,255,.35);
  display: flex; align-items: center; gap: 6px;
}

.sff-certs span i { color: var(--gold); }

.sff-socials { display: flex; gap: 8px; }

.sff-social {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  text-decoration: none; font-size: 14px;
  transition: border-color .2s, color .2s;
}

.sff-social:hover { border-color: var(--gold); color: var(--gold); }

.sff-col { display: flex; flex-direction: column; }

.sff-col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: #fff;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,134,10,.15);
  position: relative;
}

.sff-col-title::before {
  content: '';
  position: absolute; bottom: -1px; left: 0;
  width: 20px; height: 1px; background: var(--gold);
}

.sff-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
}

.sff-links li a {
  font-size: 13px; color: rgba(255,255,255,.4);
  text-decoration: none; display: block;
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.03);
  transition: color .2s, padding-left .2s;
}

.sff-links li:last-child a { border-bottom: none; }
.sff-links li a:hover { color: #fff; padding-left: 12px; }

.sff-contact-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
}

.sff-contact-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.04);
}

.sff-contact-list li:last-child { border-bottom: none; }

.sff-ci-icon {
  width: 32px; height: 32px;
  background: rgba(200,134,10,.07);
  border: 1px solid rgba(200,134,10,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold); font-size: 13px;
}

.sff-ci-info { display: flex; flex-direction: column; gap: 2px; }

.sff-ci-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 2px;
  color: rgba(255,255,255,.3); text-transform: uppercase;
}

.sff-ci-val { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.5; }
.sff-ci-link { text-decoration: none; transition: color .2s; }
.sff-ci-link:hover { color: var(--gold) !important; }

.sff-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  background: var(--gold); color: #06101E;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 11px; letter-spacing: 1px;
  text-decoration: none; text-transform: uppercase;
  transition: background .25s, transform .2s;
}

.sff-cta-btn:hover { background: #a86e08; transform: translateY(-1px); color: #fff; }

.sff-divider {
  display: flex; align-items: center; gap: 20px; margin-bottom: 28px;
}

.sff-div-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,134,10,.2), transparent);
}

.sff-div-icon {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 14px; color: rgba(200,134,10,.4);
}

.sff-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0 32px; flex-wrap: wrap; gap: 12px;
}

.sff-bottom-left {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12px; color: rgba(255,255,255,.25);
  font-family: 'IBM Plex Mono', monospace;
}

.sff-reg { font-size: 10px; letter-spacing: 1px; }
.sff-reg-label { color: rgba(200,134,10,.4); }

.sff-bottom-right {
  display: flex; align-items: center; gap: 12px;
}

.sff-bottom-right a {
  font-size: 11px; color: rgba(255,255,255,.25);
  text-decoration: none; font-family: 'IBM Plex Mono', monospace;
  transition: color .2s;
}

.sff-bottom-right a:hover { color: rgba(255,255,255,.5); }
.sff-bottom-right span { color: rgba(255,255,255,.1); }

.sff-back-top {
  position: absolute;
  bottom: 36px; right: 40px;
  width: 40px; height: 40px;
  background: rgba(200,134,10,.1);
  border: 1px solid rgba(200,134,10,.3);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer;
  transition: background .25s, transform .2s;
}

.sff-back-top:hover { background: rgba(200,134,10,.2); transform: translateY(-2px); }


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .srv-hero-content {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }

  .srv-why-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .srv-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .srv-hero-content {
    grid-template-columns: 1fr;
    padding: calc(var(--nav-h) + 48px) 24px 60px;
  }

  .srv-index-card { display: none; }

  .srv-sec-inner {
    grid-template-columns: 1fr;
  }

  .srv-sec-inner--rev { direction: ltr; }

  .srv-img-frame {
    min-height: 300px;
  }

  .srv-sec-content {
    padding: 52px 24px;
  }

  .srv-why-inner { padding: 0 24px; }
  .srv-why-cards { grid-template-columns: 1fr 1fr; }

  .srv-cta-sec { padding: 80px 24px; }

  .srv-footer-inner { padding: 0 24px; }
  .srv-footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sff-back-top { right: 24px; }
}

@media (max-width: 480px) {
  .srv-why-cards { grid-template-columns: 1fr; }
  .srv-cta-actions { flex-direction: column; align-items: stretch; }
  .srv-cta-btn-primary,
  .srv-cta-btn-secondary { justify-content: center; }
  .sff-bottom { flex-direction: column; gap: 12px; }
}
