@font-face { font-family:'Manrope'; src:url('/assets/fonts/manrope-300.woff2') format('woff2'); font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:'Manrope'; src:url('/assets/fonts/manrope-400.woff2') format('woff2'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Manrope'; src:url('/assets/fonts/manrope-500.woff2') format('woff2'); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Manrope'; src:url('/assets/fonts/manrope-600.woff2') format('woff2'); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:'Manrope'; src:url('/assets/fonts/manrope-700.woff2') format('woff2'); font-weight:700; font-style:normal; font-display:swap; }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #000;
  color: #18181b;
  margin: 0;
  --site-shell-max: 1600px;
  --site-shell-x: clamp(24px, 5vw, 48px);
    --text-secondary-on-dark: #c4c4ce;
  --text-caption-on-dark: #a1a1aa;
    --header-nav-muted: #c7cbd4;
    --btn-radius: 0.75rem;
    --btn-primary-solid: #1757dc;
  --btn-primary-solid-hover: #236fe8;
    --section-pad-block: clamp(11rem, 14.5vw, 13.5rem);
}

.site-shell {
  width: 100%;
  max-width: var(--site-shell-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--site-shell-x);
  padding-right: var(--site-shell-x);
  box-sizing: border-box;
}

.hero-shell {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 5.5rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 45%);
}

.hero-shell .hero-inner {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 2rem;
}

.hero-shell .hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.hero-shell .hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem clamp(1.25rem, 5vw, 2.5rem);
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.5rem;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 640px) {
  .hero-shell .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.75rem, 3vw, 2.5rem);
  }
}

@media (max-width: 639px) {
  .hero-section {
    min-height: 100vh !important;
    min-height: 100svh !important;
    align-items: center !important;
  }
  .hero-overlay {
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.65) 100%),
      rgba(0,0,0,0.45);
  }
  .hero-shell {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }
  .hero-shell .hero-inner {
    max-width: 100%;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }
  .hero-shell .display-heading.hero-title-balanced {
    font-size: clamp(1.75rem, 8.5vw, 2.875rem);
  }
  .hero-shell .hero-subtitle {
    max-width: 100%;
    font-size: clamp(0.9rem, 3.8vw, 1.1rem);
  }
  .hero-shell .hero-cta-row {
    justify-content: center;
  }
  .hero-shell .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-top: 1.25rem;
    margin-top: 0;
    gap: clamp(0.25rem, 1.5vw, 0.75rem);
    justify-items: stretch;
  }
  .hero-shell .hero-stats .stat-item {
    text-align: center;
    padding: 0;
    width: 100%;
  }
  .hero-shell .hero-stats .stat-number {
    font-size: clamp(1.125rem, 4.5vw, 1.5rem);
    letter-spacing: -0.02em;
  }
  .hero-shell .hero-stats .stat-label {
    font-size: clamp(0.525rem, 1.8vw, 0.65rem);
    line-height: 1.35;
    letter-spacing: 0.04em;
  }
  .hero-shell .hero-stats .stat-label.stat-label-split {
    align-items: center;
  }
}

@media (max-width: 380px) {
  .hero-shell .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem 1.25rem;
  }
  .hero-shell .hero-stats .stat-number {
    font-size: clamp(1.25rem, 5.5vw, 1.625rem);
  }
  .hero-shell .hero-stats .stat-label {
    font-size: clamp(0.6rem, 2.4vw, 0.7rem);
  }
}

@media (min-width: 640px) {
  .hero-shell .hero-stats .stat-item {
    text-align: left;
    min-width: 0;
  }
}

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding-top: 10px;
  padding-bottom: 10px;
  background: transparent;
  border: 0 !important;
  box-shadow: none;
  transition:
    background 0.16s ease-out,
    backdrop-filter 0.16s ease-out,
    box-shadow 0.16s ease-out,
    padding 0.22s ease-out;
}

.site-header.header-scroll-light {
  padding-top: 2px;
  padding-bottom: 2px;
}
@media (max-width: 767px) {
  .site-header.mobile-menu-open {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px) saturate(1.05);
    -webkit-backdrop-filter: blur(14px) saturate(1.05);
    border: 0 !important;
    box-shadow:
      0 1px 0 rgba(15, 23, 42, 0.08),
      0 10px 28px rgba(15, 23, 42, 0.07);
  }

  .site-header.mobile-menu-open .site-header-logo img {
    filter: none;
  }

  .site-header.mobile-menu-open #menu-btn {
    color: #475569 !important;
  }

  .site-header.mobile-menu-open #menu-btn:hover {
    color: #0f172a !important;
  }

  .site-header.mobile-menu-open .mobile-menu.open {
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: none;
  }
}

@media (min-width: 768px) {
  .site-header.mobile-menu-open {
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(14px) saturate(1.15);
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
    border: 0 !important;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.07),
      0 14px 40px rgba(0, 0, 0, 0.28);
  }
}

.site-header.header-scroll-light:not(.mobile-menu-open):not(.page-bottom) {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0 !important;
  box-shadow:
    0 1px 0 rgba(15, 23, 42, 0.07),
    0 8px 28px rgba(15, 23, 42, 0.05);
}

.site-header.header-scroll-light:not(.mobile-menu-open):not(.page-bottom) .site-header-logo img {
  filter: none;
}

.site-header.header-scroll-light:not(.mobile-menu-open):not(.page-bottom) #menu-btn {
  color: #475569 !important;
}
.site-header.header-scroll-light:not(.mobile-menu-open):not(.page-bottom) #menu-btn:hover {
  color: #0f172a !important;
}

.site-header.header-scroll-light:not(.mobile-menu-open):not(.page-bottom) #desktop-nav .nav-link {
  color: #475569;
}
.site-header.header-scroll-light:not(.mobile-menu-open):not(.page-bottom) #desktop-nav .nav-link:hover {
  color: #0f172a;
}

.site-header.header-scroll-light:not(.mobile-menu-open):not(.page-bottom) #desktop-nav .nav-link::after {
  background: #1757dc;
}

.site-header.header-scroll-light:not(.mobile-menu-open):not(.page-bottom) #desktop-nav .nav-link.active {
  color: #0f172a !important;
}

.site-header-logo img {
  filter: brightness(0) invert(1);
  transition: filter 0.12s ease-out;
}

.site-header #menu-btn {
  color: var(--header-nav-muted) !important;
  transition: color 0.2s ease;
}
.site-header #menu-btn:hover {
  color: #f4f4f6 !important;
}

.site-header #desktop-nav .nav-link {
  color: var(--header-nav-muted);
  transition: color 0.2s ease;
}
.site-header #desktop-nav .nav-link:hover {
  color: #f4f4f6;
}

.nav-link { position: relative; padding-bottom: 2px; }
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: #fff;
  transition: width 0.22s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
#desktop-nav .nav-link.active {
  color: #ffffff !important;
}

.site-header.page-bottom:not(.mobile-menu-open) {
  background: #000000;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.site-header.page-bottom:not(.mobile-menu-open) .site-header-logo img {
  filter: brightness(0) invert(1);
}
.site-header.page-bottom:not(.mobile-menu-open) #menu-btn {
  color: var(--header-nav-muted) !important;
}
.site-header.page-bottom:not(.mobile-menu-open) #menu-btn:hover {
  color: #f4f4f6 !important;
}
.site-header.page-bottom:not(.mobile-menu-open) #desktop-nav .nav-link {
  color: var(--header-nav-muted);
}
.site-header.page-bottom:not(.mobile-menu-open) #desktop-nav .nav-link:hover {
  color: #f4f4f6;
}
.site-header.page-bottom:not(.mobile-menu-open) #desktop-nav .nav-link::after {
  background: #fff;
}
.site-header.page-bottom:not(.mobile-menu-open) #desktop-nav .nav-link.active {
  color: #ffffff !important;
}

#desktop-nav { display: none; }
@media (min-width: 768px) {
  #desktop-nav { display: flex !important; }
  #menu-btn { display: none !important; }
}

.btn-accent,
.header-quote-btn,
.mobile-quote-btn {
  background-color: var(--btn-primary-solid);
  border: none;
  transition: background-color 0.2s ease;
}
.btn-accent:hover,
.header-quote-btn:hover,
.mobile-quote-btn:hover {
  background-color: var(--btn-primary-solid-hover);
}

.header-quote-btn {
  display: inline-flex;
  align-items: center;
  margin-left: 0.75rem;
  padding: 0.5rem 1.15rem;
  border-radius: var(--btn-radius);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #fff !important;
  text-decoration: none;
}

.mobile-quote-btn {
  display: block;
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: var(--btn-radius);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

@keyframes header-quote-chevron-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.header-quote-chevron {
  display: inline-block;
  margin-left: 0.28em;
  transform-origin: center center;
}

.header-quote-btn:hover .header-quote-chevron,
.mobile-quote-btn:hover .header-quote-chevron {
  animation: header-quote-chevron-spin 0.55s ease;
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  border-top: none;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
  max-height: 340px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.mobile-menu .mobile-nav-link {
  display: block;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: #64748b;
  transition: color 0.2s ease;
}
.mobile-menu .mobile-nav-link:hover {
  color: #0f172a;
}
.mobile-menu .mobile-nav-link.active {
  color: #0f172a !important;
  font-weight: 600;
}

.mobile-menu .mobile-quote-btn {
  margin-top: 0.75rem;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
}

.hamburger-icon { display: flex; flex-direction: column; gap: 5px; width: 20px; }
.hamburger-icon span {
  display: block; height: 1.5px; background: currentColor; border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease, width 0.28s ease;
}
#menu-btn.open .hamburger-icon span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#menu-btn.open .hamburger-icon span:nth-child(2) { opacity: 0; width: 0; }
#menu-btn.open .hamburger-icon span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.72s ease, transform 0.72s ease; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

.display-heading {
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #fafafa;
}

.hero-intro {
  display: flex;
  flex-direction: column;
  gap: clamp(0.875rem, 2.3vw, 1.125rem);
}
.hero-shell .display-heading.hero-title-balanced {
  font-size: clamp(2.875rem, 1.65rem + 4.25vw, 4.875rem);
  line-height: 1.07;
}
.hero-shell .hero-title-balanced .hero-line,
.hero-shell .hero-subtitle .hero-line {
  display: block;
}
.hero-shell .hero-subtitle {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(1.05rem, 0.88rem + 0.75vw, 1.25rem);
  font-weight: 400;
  line-height: 1.68;
  color: var(--text-secondary-on-dark);
}

.section-heading {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background-color: #000000;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #000000;
  background-image: url('/assets/images/page-hero-bg.jpg');
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.74) 52%, rgba(0, 0, 0, 0.4) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.74) 0%, transparent 52%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
    --page-hero-header-safe: calc(68px + 2rem + 12px);
  box-sizing: border-box;
  min-height: clamp(360px, 46vh, 480px);
  padding-top: var(--page-hero-header-safe);
  padding-bottom: clamp(3rem, 5vw, 4.25rem);
}

.page-hero-inner h1 {
  font-size: clamp(2rem, 3.8vw, 3.6rem) !important;
  color: #fafafa !important;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.surface-dark .stat-label { color: var(--text-caption-on-dark) !important; }

.page-hero-inner > p,
.cta-section .site-shell p,
.surface-dark > .site-shell p {
  color: var(--text-secondary-on-dark) !important;
}

.page-hero-inner > p {
  font-size: 1rem;
  line-height: 1.65;
  margin: 0.85rem 0 0;
    max-width: min(72ch, 100%);
}

.page-hero-inner > a:first-of-type {
  color: var(--text-secondary-on-dark) !important;
  transition: color 0.2s ease;
}
.page-hero-inner > a:first-of-type:hover {
  color: #fafafa !important;
}

.sol-section {
  position: relative;
  padding: clamp(5.75rem, 13vw, 11rem) 0;
  background: #ffffff;
}

.svc-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5.75rem, 13vw, 11rem) 0;
  background: linear-gradient(180deg, #fafafa 0%, #f6f8fc 50%, #fafafa 100%);
}

.svc-section > .home-blob {
  z-index: 0;
  opacity: 0.12;
}

.svc-section .site-shell {
  position: relative;
  z-index: 1;
}

.svc-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.75rem, 5vw, 4rem);
}

.svc-head-text h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.svc-head-text p {
  margin: 0;
  max-width: 58ch;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #475569;
}

.svc-head-cta {
  flex-shrink: 0;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.svc-grid-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 2rem 1.75rem 1.75rem;
  background: #ffffff;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.svc-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.svc-card-icon {
  display: flex;
  align-items: center;
  color: #1757dc;
  flex-shrink: 0;
}

.svc-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.3;
}

.svc-card p {
  margin: 0;
  font-size: 0.855rem;
  line-height: 1.68;
  color: #64748b;
  flex: 1;
}

.svc-card-arrow {
  display: flex;
  align-items: center;
  color: #1757dc;
  margin-top: 0.25rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.svc-card:hover .svc-card-arrow {
  color: #1757dc;
  transform: translate(4px, -4px);
}

@media (max-width: 900px) {
  .svc-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}

.svc-tmpl-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  align-self: flex-start;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.6rem);
  margin-top: 0;
  transition: color 0.2s ease;
}

@media (max-width: 640px) {
  .svc-tmpl-breadcrumb {
    margin-bottom: 1rem;
  }
}
.svc-tmpl-breadcrumb:hover {
  color: rgba(255, 255, 255, 0.75);
}

.services-page-grid-section .svc-head-text p {
  max-width: none;
}

.approach-section--light {
  background: #ffffff !important;
}
.approach-section--light .approach-heading {
  color: #0f172a;
}
.approach-section--light .approach-sub {
  color: #475569;
}
.approach-section--light .approach-pillars {
  border-top-color: #e8edf3;
}
.approach-section--light .approach-pillar {
  border-right-color: #e8edf3;
}
.approach-section--light .approach-pillar-num {
  color: #1757dc;
}
.approach-section--light .approach-pillar-title {
  color: #0f172a;
}
.approach-section--light .approach-pillar-body {
  color: #475569;
}

.svc-tmpl-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.svc-tmpl-split-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  position: sticky;
  top: 7rem;
}

.svc-tmpl-split-left h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  font-weight: 500;
  color: #0f172a;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0;
}

.svc-tmpl-split-right p {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.82;
  color: #475569;
}

.svc-tmpl-split-right p:last-child {
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .svc-tmpl-split {
    grid-template-columns: 1fr;
  }
  .svc-tmpl-split-left {
    position: static;
  }
}

.svc-tmpl-facts-row {
  border-top: 1px solid #e0e6ef;
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
}

.svc-tmpl-facts-item {
  padding: 0;
}

.svc-tmpl-facts-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1757dc;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #1757dc;
  width: fit-content;
}

.svc-tmpl-facts-row .svc-tmpl-pillar-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 3rem;
}

@media (max-width: 640px) {
  .svc-tmpl-facts-row .svc-tmpl-pillar-list {
    grid-template-columns: 1fr;
  }
}

.svc-tmpl-pillar-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-tmpl-pillar-list li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #3f4a5a;
  padding: 0.65rem 0;
  border-bottom: 1px solid #eef1f6;
}

.svc-tmpl-pillar-list li:first-child {
  border-top: none;
}

.svc-tmpl-pillar-list li:last-child {
  border-bottom: none;
}

.svc-tmpl-pillar-list a {
  color: #3f4a5a;
  text-decoration: none;
  transition: color 0.18s ease;
}

.svc-tmpl-pillar-list a:hover {
  color: #1757dc;
}

@media (max-width: 900px) {
  .svc-tmpl-top {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .svc-tmpl-body {
    grid-template-columns: 1fr;
  }
}
.services-page-grid-section {
  background: #ffffff;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.services-process-section {
  background: #000000;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.services-process-head {
  max-width: none;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.services-process-head h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fafafa;
  line-height: 1.15;
}

.services-process-head p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.52);
}

.services-process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-process-step {
  padding: 4rem 2rem 2.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.services-process-step:last-child {
  border-right: none;
  padding-right: 0;
}

.services-process-step:first-child {
  padding-left: 0;
}

.services-process-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #1757dc;
  margin-bottom: 1.25rem;
}

.services-process-step h3 {
  margin: 0 0 0.65rem;
  font-size: 0.975rem;
  font-weight: 600;
  color: #e8e8ea;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.services-process-step p {
  margin: 0;
  font-size: 0.855rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.38);
}

@media (max-width: 1024px) {
  .services-process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .services-process-step {
    padding: 2rem 1.5rem 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .services-process-step:nth-child(3n) {
    border-right: none;
    padding-right: 0;
  }
  .services-process-step:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .services-process-steps {
    grid-template-columns: 1fr;
  }
  .services-process-step {
    padding: 1.75rem 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .services-process-step:last-child {
    border-bottom: none;
  }
}

.site-footer {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-section + #site-footer .site-footer,
.clients-section + #site-footer .site-footer {
  border-top: none;
}

.site-footer .footer-cols {
  display: grid;
  grid-template-columns: 2fr repeat(2, minmax(0, 1fr));
  gap: 2rem 3rem;
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 0;
}

.site-footer .footer-slogan-col {
  padding-right: 2rem;
}

.site-footer .footer-slogan {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
  max-width: 20ch;
}

.site-footer .footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.01em;
}

.site-footer .footer-legal {
  font-size: 0.68rem;
  margin-top: 0.25rem;
}

.site-footer .footer-bottom-link {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.01em;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.site-footer .footer-bottom-link:hover {
  color: rgba(255, 255, 255, 0.88);
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .site-footer .footer-cols {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer .footer-slogan-col {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .site-footer .footer-slogan {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .site-footer .footer-cols {
    grid-template-columns: 1fr;
  }
  .site-footer .footer-slogan-col {
    order: 3;
  }
}

.site-footer .footer-nav-group {
  margin: 0;
}

.site-footer .footer-nav-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2367cb;
  margin-bottom: 1.05rem;
}

.site-footer .footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.site-footer .footer-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.18s ease;
  padding-bottom: 2px;
}

.site-footer .footer-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.22s ease;
}

.site-footer .footer-link:hover {
  color: #ffffff;
}

.site-footer .footer-link:hover::after {
  width: 100%;
}

.clients-section {
  background: #000000;
  padding: clamp(6rem, 11vw, 10rem) 0;
}

.clients-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: center;
}

.clients-headline-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.clients-heading {
  margin: 0 0 1.75rem;
  font-size: clamp(1.9rem, 3.2vw, 3.25rem);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -0.035em;
  color: #fafafa;
}

.clients-intro {
  margin: 0 0 2.5rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.78;
  color: var(--text-secondary-on-dark);
}

.clients-image-col {
  position: relative;
}

.clients-img-frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.55);
}

.clients-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.clients-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(35, 103, 203, 0.18) 0%, transparent 55%),
    linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 50%);
}

.clients-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
}

.clients-img-badge-num {
  font-size: 1.75rem;
  font-weight: 600;
  color: #fafafa;
  letter-spacing: -0.03em;
  line-height: 1;
}

.clients-img-badge-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary-on-dark);
  line-height: 1.45;
}

.clients-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  gap: 0;
}

.clients-pillar {
  padding: 0 clamp(1.5rem, 3vw, 2.75rem) 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  margin-right: clamp(1.5rem, 3vw, 2.75rem);
}

.clients-pillar:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.clients-pillar-num {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #fafafa;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.clients-pillar-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary-on-dark);
  line-height: 1.4;
}

@media (max-width: 860px) {
  .clients-top {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .clients-image-col {
    order: -1;
  }

  .clients-img-frame {
    aspect-ratio: 16 / 9;
  }

  .clients-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 0;
  }

  .clients-pillar:nth-child(2) {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }

  .clients-pillar:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    margin-right: clamp(1.5rem, 3vw, 2.75rem);
    padding-right: clamp(1.5rem, 3vw, 2.75rem);
  }
}

.cta-section {
  background: #000000;
  padding: var(--section-pad-block) 0;
  text-align: center;
}

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

.cta-heading {
  margin: 0 0 1.25rem;
  font-size: clamp(1.9rem, 3.2vw, 3.5rem);
  font-weight: 500;
  color: #fafafa;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.cta-description {
  margin: 0 0 2.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary-on-dark);
}

.cta-section .cta-actions .btn-accent {
  font-size: 0.95rem;
  padding: 0.8rem 2rem;
}

.home-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(88px);
  mix-blend-mode: multiply;
  opacity: 0.62;
}

@media (max-width: 640px) {
  .home-blob {
    filter: blur(64px);
    opacity: 0.38;
  }
}

.home-blob--tr {
  width: min(520px, 78vw);
  height: min(520px, 78vw);
  top: -12%;
  right: -14%;
  background: radial-gradient(circle at 35% 35%, rgba(35, 103, 203, 0.55), transparent 68%);
}

.home-blob--bl {
  bottom: -6%;
  left: -14%;
}

.home-blob--indigo {
  width: min(440px, 70vw);
  height: min(440px, 70vw);
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.42), transparent 72%);
}

.approach-section {
  background: #000000;
  padding: clamp(6rem, 11vw, 10rem) 0;
  overflow: hidden;
}

.approach-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: center;
  margin-bottom: clamp(4rem, 7vw, 6rem);
}

.approach-headline-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.approach-heading {
  margin: 0 0 1.75rem;
  font-size: clamp(1.9rem, 3.2vw, 3.25rem);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -0.035em;
  color: #fafafa;
}

.approach-sub {
  margin: 0 0 2.5rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.78;
  color: var(--text-secondary-on-dark);
  max-width: 38ch;
}

.approach-cta {
  margin-top: 0;
}

.approach-image-col {
  position: relative;
}

.approach-img-frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.55);
}

.approach-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.approach-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(35, 103, 203, 0.22) 0%, transparent 55%),
    linear-gradient(to top, rgba(0, 0, 0, 0.52) 0%, transparent 50%);
}

.approach-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
}

.approach-img-badge-num {
  font-size: 1.75rem;
  font-weight: 600;
  color: #fafafa;
  letter-spacing: -0.03em;
  line-height: 1;
}

.approach-img-badge-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary-on-dark);
  line-height: 1.45;
}

.approach-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
  gap: 0;
}

.approach-pillar {
  padding: 0 clamp(1.5rem, 3vw, 2.75rem) 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  margin-right: clamp(1.5rem, 3vw, 2.75rem);
}

.approach-pillar:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.approach-pillar-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2367cb;
  margin-bottom: 1rem;
}

.approach-pillar-title {
  margin: 0 0 0.75rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fafafa;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.approach-pillar-body {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-secondary-on-dark);
}

@media (max-width: 860px) {
  .approach-top {
    grid-template-columns: 1fr;
  }

  .approach-image-col {
    order: -1;
  }

  .approach-img-frame {
    aspect-ratio: 16 / 9;
  }

  .approach-pillars {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .approach-pillar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    padding: 0 0 2rem;
    margin-right: 0;
  }

  .approach-pillar:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@keyframes btn-chevron-spin {
  from { transform: rotate(-45deg); }
  to { transform: rotate(-405deg); }
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--btn-radius);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn-accent::after {
  content: '';
  flex-shrink: 0;
  width: 0.375rem;
  height: 0.375rem;
  margin-left: 0.4rem;
  border-right: 1.65px solid currentColor;
  border-bottom: 1.65px solid currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
  box-sizing: border-box;
}
.btn-accent:hover::after {
  animation: btn-chevron-spin 0.55s ease;
}

.btn-transparent {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #d4d4d8;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--btn-radius);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.btn-transparent::after {
  content: '';
  flex-shrink: 0;
  width: 0.375rem;
  height: 0.375rem;
  margin-left: 0.4rem;
  border-right: 1.65px solid currentColor;
  border-bottom: 1.65px solid currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
  box-sizing: border-box;
}
.btn-transparent:hover::after {
  animation: btn-chevron-spin 0.55s ease;
}
.btn-transparent:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-transparent.btn-transparent--light {
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.14);
}
.btn-transparent.btn-transparent--light:hover {
  border-color: rgba(23, 87, 220, 0.38);
  color: #0f172a;
  background: rgba(23, 87, 220, 0.06);
}

@media (prefers-reduced-motion: reduce) {
  .btn-accent:hover::after,
  .btn-transparent:hover::after {
    animation: none;
  }
  .header-quote-btn:hover .header-quote-chevron,
  .mobile-quote-btn:hover .header-quote-chevron {
    animation: none;
  }
  .btn-accent:hover,
  .header-quote-btn:hover,
  .mobile-quote-btn:hover {
    filter: none;
  }
}

.stat-item { text-align: left; }
.stat-number { font-size: 2.5rem; font-weight: 300; color: #fff; letter-spacing: -0.04em; line-height: 1; }
.stat-label { font-size: 0.75rem; color: #52525b; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.3rem; font-weight: 500; }

.stat-label.stat-label-split {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2em;
  margin-top: 0.38rem;
}
.stat-label.stat-label-split .stat-label-line {
  display: block;
  line-height: 1.3;
}

:focus-visible { outline: 2px solid #2367cb; outline-offset: 3px; border-radius: 3px; }
::selection { background: rgba(35,103,203,0.15); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #000000; }
::-webkit-scrollbar-thumb { background: #2d2d35; border-radius: 6px; }

.q-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.q-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1.1rem;
}
.q-field:first-child { margin-top: 0; }
.q-row .q-field { margin-top: 0; }

.q-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #18181b;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.q-label .req { color: #dc2626; }
.q-label .opt {
  font-weight: 400;
  color: #a1a1aa;
  font-size: 0.72rem;
}

.q-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #f9f9fb;
  border: 1.5px solid #e4e4e7;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #18181b;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.q-input:focus {
  border-color: #1757dc;
  box-shadow: 0 0 0 3px rgba(23,87,220,0.11);
  background: #fff;
}
.q-input::placeholder { color: #b0b0ba; }
.q-input.error { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,0.09); }
.q-input.error:focus { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,0.12); }

textarea.q-input { resize: vertical; min-height: 110px; }

.q-char-count {
  font-size: 0.72rem;
  color: #a1a1aa;
  text-align: right;
  margin-top: -0.15rem;
}
.q-char-count.near { color: #f59e0b; }
.q-char-count.over { color: #dc2626; }

.q-field-error {
  font-size: 0.75rem;
  color: #dc2626;
  display: none;
  align-items: center;
  gap: 0.3rem;
}
.q-field-error.visible { display: flex; }

@media (max-width: 480px) {
  .q-row { grid-template-columns: 1fr; }
}

.ct-section {
  background: #ffffff;
  padding: clamp(5.75rem, 13vw, 11rem) 0;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.ct-form-col,
.ct-info-col { min-width: 0; }

.ct-form-heading {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.ct-form-sub {
  margin: 0 0 2rem;
  font-size: 0.975rem;
  line-height: 1.65;
  color: #475569;
}

#ct-success {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem;
  background: #f0f7ff;
  border: 1px solid #c7d9f9;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
#ct-success.visible { display: flex; }

.ct-success-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0edff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-success-heading {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}

.ct-success-body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #475569;
}

.ct-submit-row {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ct-privacy-note {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: #a1a1aa;
  line-height: 1.5;
}
.ct-privacy-note a { color: #1757dc; text-decoration: none; }
.ct-privacy-note a:hover { text-decoration: underline; }

.ct-captcha-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.ct-captcha-img {
  border: 1px solid #e4e4e7;
  border-radius: 6px;
  display: block;
  width: 140px;
  height: 44px;
}
.ct-captcha-refresh {
  background: none;
  border: 1px solid #e4e4e7;
  border-radius: 6px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  flex-shrink: 0;
  transition: border-color 0.15s, color 0.15s;
}
.ct-captcha-refresh:hover { border-color: #1757dc; color: #1757dc; }
.ct-captcha-input {
  flex-basis: 100%;
  min-width: 0;
  letter-spacing: normal;
  text-transform: none;
}
.ct-form-error-msg {
  margin-top: 0.75rem;
  font-size: 0.83rem;
  color: #dc2626;
  min-height: 0;
}

.ct-info-card {
  background: #f8f9fb;
  border: 1px solid #e4e4e7;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ct-info-heading {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}

.ct-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.ct-info-icon {
  flex-shrink: 0;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}

.ct-info-text { min-width: 0; }

.ct-info-label {
  margin: 0 0 0.2rem;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #71717a;
}

.ct-info-value {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #18181b;
}
.ct-info-value a { color: #18181b; text-decoration: none; }
.ct-info-value a:hover { color: #1757dc; }

.ct-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #16a34a;
  padding: 0.65rem 0.9rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
}

.ct-quote-nudge {
  padding-top: 1.25rem;
  border-top: 1px solid #e4e4e7;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ct-quote-nudge-text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #334155;
}

.ct-quote-nudge .btn-accent {
  align-self: flex-start;
}

@media (max-width: 900px) {
  .ct-grid { grid-template-columns: 1fr; }
}

.pp-section {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(5.75rem, 13vw, 11rem);
}

.pp-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: start;
}

.pp-toc {
  position: sticky;
  top: 100px;
}

.pp-toc-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a1a1aa;
  margin: 0 0 0.75rem;
}

.pp-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.pp-toc-list a {
  display: block;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #475569;
  text-decoration: none;
  padding: 0.28rem 0.6rem;
  border-left: 2px solid #e4e4e7;
  transition: color 0.15s, border-color 0.15s;
}
.pp-toc-list a:hover,
.pp-toc-list a.active {
  color: #1757dc;
  border-left-color: #1757dc;
  font-weight: 500;
}

.pp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e4e4e7;
}

.pp-meta-item {
  font-size: 0.82rem;
  color: #71717a;
}
.pp-meta-item strong { color: #18181b; }

.pp-intro {
  font-size: 0.975rem;
  line-height: 1.78;
  color: #334155;
  margin: 0 0 2.5rem;
}

.pp-section-block {
  padding-top: 2.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid #f1f1f4;
}

.pp-section-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: #a1a1aa;
  margin: 0 0 0.4rem;
}

.pp-h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.pp-h3 {
  margin: 1.75rem 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #18181b;
}

.pp-p {
  margin: 0 0 0.9rem;
  font-size: 0.925rem;
  line-height: 1.78;
  color: #475569;
}

.pp-ul {
  margin: 0 0 0.9rem;
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.pp-ul li {
  font-size: 0.925rem;
  line-height: 1.65;
  color: #475569;
}

.pp-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 0.5rem;
  border-radius: 10px;
  border: 1px solid #e4e4e7;
}

.pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.pp-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: #0f172a;
  background: #f8f9fb;
  border-bottom: 1px solid #e4e4e7;
  white-space: nowrap;
}
.pp-table td {
  padding: 0.75rem 1rem;
  color: #475569;
  border-bottom: 1px solid #f1f1f4;
  vertical-align: top;
  line-height: 1.55;
}
.pp-table tr:last-child td { border-bottom: none; }

.pp-contact-box,
.pp-authority-box {
  background: #f8f9fb;
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 0.5rem 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #334155;
}
.pp-contact-box p,
.pp-authority-box p { margin: 0 0 0.5rem; }
.pp-contact-box p:last-child,
.pp-authority-box p:last-child { margin: 0; }
.pp-contact-box a,
.pp-authority-box a { color: #1757dc; text-decoration: none; }
.pp-contact-box a:hover,
.pp-authority-box a:hover { text-decoration: underline; }

.pp-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}

.pp-right-card {
  background: #f8f9fb;
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  padding: 1.25rem;
}

.pp-right-ref {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1757dc;
  background: #eff3fd;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}

.pp-right-title {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
}

.pp-right-body {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.62;
  color: #475569;
}

@media (max-width: 900px) {
  .pp-layout { grid-template-columns: 1fr; }
  .pp-toc { position: static; display: none; }
  .pp-rights-grid { grid-template-columns: 1fr; }
}

.industry-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr 1fr;
  gap: 0.5rem 2.5rem;
  align-items: baseline;
  padding: 1.6rem 0;
  border-top: 1px solid #e4e4e7;
}

.industry-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #a1a1aa;
}

.industry-name {
  margin: 0;
  font-size: 0.975rem;
  font-weight: 600;
  color: #18181b;
}

.industry-desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #475569;
}

@media (max-width: 768px) {
  .industry-row {
    grid-template-columns: 2.5rem 1fr;
    grid-template-rows: auto auto;
  }
  .industry-desc {
    grid-column: 1 / -1;
    padding-left: 3rem;
    margin-top: -0.25rem;
  }
}

@media (max-width: 480px) {
  .industry-row { grid-template-columns: 1fr; }
  .industry-num { margin-bottom: -0.25rem; }
  .industry-desc { padding-left: 0; grid-column: auto; }
}

.clients-logo-slider { position: relative; }

.clients-slider-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.clients-slider-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #f4f4f5;
  color: #3f3f46;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.clients-slider-btn:hover {
  background: #1757dc;
  color: #fff;
  transform: scale(1.08);
}
.clients-slider-btn:disabled {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}

.clients-slider-viewport {
  flex: 1;
  overflow: hidden;
}

.clients-slider-track {
  display: flex;
  gap: 0.75rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.client-logo-cell {
  flex: 0 0 auto;   height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: transparent;
}

.client-logo-cell img {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.clients-slider-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1.75rem;
}

.clients-slider-pill {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4d4d8;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.clients-slider-pill.active {
  background: #1757dc;
  width: 18px;
  border-radius: 3px;
}

@media (max-width: 600px) {
  .client-logo-cell { height: 160px; padding: 1rem; }
  .client-logo-cell img { max-height: 140px; }
  .clients-slider-btn { width: 36px; height: 36px; }
  .clients-slider-pills { display: none; }
}

.leader-row,
.leader-row--reverse {
  }

@media (max-width: 900px) {
  .about-intro-grid {
    grid-template-columns: 1fr !important;
    gap: 3.5rem !important;
  }

  .about-philosophy-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .about-values-grid {
    grid-template-columns: 1fr !important;
    border-radius: 10px;
  }

  .about-numbers-grid {
    grid-template-columns: 1fr !important;
  }

  .about-numbers-grid > div {
    border-right: none !important;
    border-bottom: 1px solid #e4e4e7;
  }

  .about-numbers-grid > div:last-child {
    border-bottom: none !important;
  }

  .leader-row,
  .leader-row--reverse {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    justify-items: center;
  }

  .leader-row > div,
  .leader-row--reverse > div {
    text-align: center;
  }

  .leader-row .leader-photo-wrap,
  .leader-row--reverse .leader-photo-wrap {
    margin: 0 auto;
  }

  .leader-row--reverse .leader-photo-wrap {
    order: -1;
  }

  .leader-photo-wrap {
    width: 200px !important;
    height: 200px !important;
  }

  .leader-photo-wrap img {
    width: 200px !important;
    height: 200px !important;
  }
}

@media (max-width: 480px) {
  .leader-photo-wrap {
    width: 160px !important;
    height: 160px !important;
  }
  .leader-photo-wrap img {
    width: 160px !important;
    height: 160px !important;
  }
}

.clients-svc-head {  }
.clients-slider-btn-prev {  }
.clients-slider-btn-next {  }
.pp-content { min-width: 0; }

.svc-tmpl-split-cta {
  align-self: flex-start;
}

@media (max-width: 800px) {
  .svc-tmpl-split-cta {
    display: none;
  }
}

.page-hero + section,
main > .page-hero + section {
  padding-top: clamp(5rem, 8vw, 8rem);
}

/* ── Quote page ─────────────────────────────────────────────── */

body.quote-page {
  background: #f5f5f7;
}
body.quote-page .site-header,
body.quote-page .site-footer {
  display: none !important;
}

select.q-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%23a1a1aa' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.qp-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245,245,247,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 56px;
}
.qp-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.qp-logo img {
  height: 22px;
  width: auto;
}
.qp-back {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #71717a;
  text-decoration: none;
  transition: color 0.15s;
}
.qp-back:hover { color: #18181b; }

.qp-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2.5rem 1rem 4rem;
  min-height: calc(100vh - 56px);
}

.qp-card {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  width: 100%;
  max-width: 540px;
  padding: 2.5rem 2.5rem 2.25rem;
  overflow: hidden;
}

.qp-prog-track {
  height: 3px;
  background: #e4e4e7;
  border-radius: 99px;
  margin-bottom: 1.75rem;
  overflow: hidden;
}
.qp-prog-fill {
  height: 100%;
  background: #1757dc;
  border-radius: 99px;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
  width: 33.33%;
}

.qp-step-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.qp-step-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1757dc;
  background: #eff4ff;
  border-radius: 99px;
  padding: 0.3rem 0.75rem;
}
.qp-step-count {
  font-size: 0.78rem;
  font-weight: 500;
  color: #a1a1aa;
}

.qp-step-heading {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 500;
  color: #0f172a;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.45rem;
}
.qp-step-sub {
  font-size: 0.875rem;
  color: #71717a;
  line-height: 1.65;
  margin: 0 0 2rem;
}

.qp-step {
  display: none;
  flex-direction: column;
  animation: qpIn 0.22s ease both;
}
.qp-step.active { display: flex; }

@keyframes qpIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.qp-fields {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.qp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.qp-row .q-field { margin-top: 0; }

.q-budget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}
.q-budget-option { position: relative; }
.q-budget-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.q-budget-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.4rem;
  border: 1.5px solid #e4e4e7;
  border-radius: 10px;
  font-size: 0.79rem;
  font-weight: 500;
  color: #52525b;
  background: #fafafa;
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
  transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
  user-select: none;
}
.q-budget-label:hover {
  border-color: #93b4f5;
  background: #f0f5ff;
  color: #1757dc;
}
.q-budget-option input[type="radio"]:checked + .q-budget-label {
  border-color: #1757dc;
  background: #eff4ff;
  color: #1757dc;
  box-shadow: 0 0 0 3px rgba(23,87,220,0.1);
}

.qp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f1f3;
  gap: 0.75rem;
}
.qp-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: #71717a;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.55rem 0;
  font-family: inherit;
  transition: color 0.15s;
}
.qp-btn-back:hover { color: #18181b; }
.qp-btn-back:disabled { opacity: 0.3; cursor: default; }

.qp-btn-next {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #1757dc;
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
  letter-spacing: -0.01em;
  margin-left: auto;
}
.qp-btn-next:hover {
  background: #1a5fe8;
  box-shadow: 0 4px 14px rgba(23,87,220,0.28);
}
.qp-btn-next:active { transform: scale(0.97); }
.qp-btn-next:disabled { opacity: 0.55; cursor: default; transform: none; box-shadow: none; }

.qp-privacy {
  font-size: 0.71rem;
  color: #b0b0ba;
  margin: 0.85rem 0 0;
  text-align: center;
}
.qp-privacy a { color: #b0b0ba; text-decoration: underline; text-underline-offset: 2px; }
.qp-privacy a:hover { color: #71717a; }

#qp-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 0 0.5rem;
  animation: qpIn 0.3s ease both;
}
#qp-success.visible { display: flex; }

.qp-success-icon {
  width: 60px;
  height: 60px;
  background: #eff4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.qp-success-heading {
  font-size: 1.55rem;
  font-weight: 500;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin: 0 0 0.6rem;
}
.qp-success-sub {
  font-size: 0.875rem;
  color: #71717a;
  line-height: 1.7;
  max-width: 36ch;
  margin: 0 auto 2rem;
}
.qp-success-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #1757dc;
  color: #fff;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s;
}
.qp-success-btn:hover {
  background: #1a5fe8;
  box-shadow: 0 4px 14px rgba(23,87,220,0.28);
}

@media (max-width: 600px) {
  .qp-main { padding: 1.25rem 0.75rem 3rem; }
  .qp-card { padding: 1.75rem 1.25rem 1.5rem; border-radius: 1.25rem; }
  .qp-row { grid-template-columns: 1fr; gap: 1.1rem; }
  .q-budget-grid { grid-template-columns: repeat(2, 1fr); }
  .qp-btn-next { font-size: 0.85rem; padding: 0.65rem 1.25rem; }
}
