/* =========================================================
   OptiSol â€” Building AI-Ready Enterprises
   Static stylesheet (no frameworks)
   ========================================================= */
@import url("/wp-content/themes/unicon/assests/css/footer.css");
:root {
  --primary-blue: #0C5C96;
  --primary-blue-dark: #2E5280;
  --secondary-blue: #3A7AB5;
  --off-white: #FAFAF8;
  --warm-beige: #F5F1E8;
  --warm-beige-dark: #E8E0D4;
  --charcoal: #2C2C2C;
  --gray-text: #6B7280;
  --border-gray: #D6D3D1;

  --font-heading: "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --container-max: 1200px;
  --header-height: 132px;
  --radius: 4px;
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* ---------------------------- Reset ---------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

ul{
  margin-left: 0;
  margin-right: 0;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--warm-beige);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.gform_heading{
  display: none;
}

#fulltitle{
  display: none;
}

/* Header + hero â€” one continuous surface */
.hero-viewport {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--warm-beige);
  /* padding-top: var(--header-height); */
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.text-blue {
  color: var(--primary-blue);
}

/* ---------------------------- Buttons ---------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-blue);
  color: #ffffff;
  padding: 12px 22px;
}

.btn-primary:hover {
  background: var(--primary-blue-dark);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--border-gray);
  padding: 12px 22px;
}

.btn-outline:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.btn-lg {
  padding: 16px 26px;
  font-size: 1rem;
}

/* ============================ HEADER ============================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: var(--warm-beige);
  box-shadow: 0 4px 20px rgba(12, 92, 150, 0.08);
}

.site-header.is-scrolled .header-inner {
  background: var(--warm-beige);
}

.site-header.is-scrolled .main-nav,
.site-header:has(.main-nav.is-open) .main-nav {
  background: var(--warm-beige-dark);
}

.site-header:has(.main-nav.is-open) {
  background: var(--warm-beige);
  box-shadow: 0 4px 20px rgba(12, 92, 150, 0.08);
}

.site-header:has(.main-nav.is-open) .header-inner {
  background: var(--warm-beige);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  padding-bottom: 10px;
}

.brand-logo {
  height: 50px;
  width: auto;
  display: block;
}

/* Navigation â€” full-width row below logo/actions */
.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 92, 150, 0.055);
  border-top: none;
  border-radius: 0;
  padding: 13px 24px 12px;
  margin-top: 0;
  transition: background-color 0.25s ease;
  height: 60px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 4px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary-blue);
}

.nav-link.is-active {
  color: var(--primary-blue);
  font-weight: 600;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 2px;
  background: var(--primary-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Tighter button in header â€” keeps first row compact */
.header-actions .btn {
  padding: 11px 20px;
  font-size: 0.9rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
}

.header-phone svg {
  color: var(--primary-blue);
}

.header-phone:hover {
  color: var(--primary-blue);
}

/* Mobile toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* ============================= HERO ============================= */

/* Hero fills all remaining space below the header */
.hero {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 0;
  overflow: visible;
  background: var(--warm-beige);
}

/* Full-width container; overflow:hidden clips the taller image. */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Full-width seamless hero image */
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 88% 100%;
  display: block;
}

/* Light transparent fade on the left â€” image visible, text still readable */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(245, 241, 232, 0.55) 0%,
    rgba(245, 241, 232, 0.35) 22%,
    rgba(245, 241, 232, 0.12) 40%,
    transparent 55%
  );
  pointer-events: none;
}

/* Hero overlay â€” vertically centers the card in the hero */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 80px);
}

/* Card â€” natural content height, centered in hero */
.hero-card {
  position: relative;
  background: transparent;
  width: min(780px, 54%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(36px, 5vh, 56px) clamp(28px, 3vw, 40px) clamp(28px, 4vh, 44px) clamp(36px, 3vw, 48px);
  flex-shrink: 0;
  overflow: visible;
}

.hero-accent {
  position: absolute;
  left: clamp(20px, 2.5vw, 28px);
  top: clamp(16px, 2vh, 24px);
  bottom: clamp(16px, 2vh, 24px);
  width: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
}


/* ================================================
   Hero text carousel â€” premium transitions
   ================================================ */

.hero-carousel-viewport {
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.hero-carousel-track {
  display: grid;
}

/* Slides stack in the same grid cell */
.hero-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(32px);
  filter: blur(4px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.7s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-slide.is-exiting {
  opacity: 0;
  transform: translateX(-32px);
  filter: blur(4px);
  visibility: visible;
  pointer-events: none;
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 1, 1),
    transform 0.5s cubic-bezier(0.4, 0, 1, 1),
    filter 0.5s cubic-bezier(0.4, 0, 1, 1);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  filter: blur(0);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

/* Stagger child elements on enter */
.hero-slide.is-active .hero-title    { transition-delay: 0.05s; }
.hero-slide.is-active .hero-subtitle { transition-delay: 0.13s; }
.hero-slide.is-active .hero-proofs   { transition-delay: 0.20s; }
.hero-slide.is-active .hero-markers  { transition-delay: 0.28s; }
.hero-slide.is-active .hero-actions  { transition-delay: 0.35s; }

.hero-slide .hero-title,
.hero-slide .hero-subtitle,
.hero-slide .hero-proofs,
.hero-slide .hero-markers,
.hero-slide .hero-actions {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active .hero-title,
.hero-slide.is-active .hero-subtitle,
.hero-slide.is-active .hero-proofs,
.hero-slide.is-active .hero-markers,
.hero-slide.is-active .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   Premium progress-dot indicators
   ================================================ */

.hero-carousel-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(18px, 2.5vh, 28px);
  padding-left: 2px;
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  padding-left: 0;
}

.hero-carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1.5px solid rgba(12, 92, 150, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  color: var(--primary-blue);
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-carousel-arrow:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #ffffff;
}

.hero-carousel-arrow:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 3px;
}

.hero-dot {
  position: relative;
  width: 52px;
  height: 3px;
  padding: 0;
  border: none;
  border-radius: 2px;
  background: rgba(12, 92, 150, 0.18);
  cursor: pointer;
  overflow: hidden;
}

/* Real fill span â€” controlled by JS */
.hero-dot-fill {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--primary-blue);
  border-radius: 2px;
  will-change: width;
}

.hero-dot:hover {
  background: rgba(12, 92, 150, 0.30);
}

.hero-dot:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide .hero-title,
  .hero-slide .hero-subtitle,
  .hero-slide .hero-proofs,
  .hero-slide .hero-markers,
  .hero-slide .hero-actions,
  .hero-slide .hero-stats {
    transition: none;
    transform: none;
    filter: none;
    opacity: 1;
  }
  .hero-slide { visibility: hidden; }
  .hero-slide.is-active { visibility: visible; }
  .hero-dot-fill { transition: none !important; width: 0% !important; }
}



.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.0rem, 3.4vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
  color: var(--charcoal);
  text-shadow: 0 2px 20px rgba(245, 241, 232, 0.9);
  margin-bottom: clamp(4px, 1vh, 8px);
}

.hero-title .text-blue {
  font-weight: 900;
}

.hero-subtitle {
  margin-top: clamp(14px, 2vh, 20px);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: var(--gray-text);
  max-width: 46ch;
  text-shadow: 0 1px 12px rgba(245, 241, 232, 0.9);
}

.hero-markers {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: clamp(20px, 3vh, 28px);
}

.marker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}

.marker-icon {
  color: var(--primary-blue);
  display: inline-flex;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: clamp(20px, 2.5vh, 28px);
}

.hero-actions .btn-lg {
  padding: 14px 18px;
  font-size: 0.875rem;
  white-space: nowrap;
}

/* Proof-point list below subtitle */
.hero-proofs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: clamp(14px, 2vh, 20px);
}

.hero-proof-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--charcoal);
  line-height: 1.5;
  text-shadow: 0 1px 10px rgba(245, 241, 232, 0.8);
}

.hero-proof-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #087f9b;
  background: #087f9b;
  color: #fff;
  margin-top: 1px;
}

.hero-proof-icon svg {
  display: block;
  width: 19px;
  height: 19px;
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(18px, 2.5vh, 28px);
  padding-top: clamp(16px, 2vh, 24px);
  border-top: 1px solid rgba(12, 92, 150, 0.15);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: var(--primary-blue);
  line-height: 1;
  text-shadow: 0 1px 12px rgba(245, 241, 232, 0.9);
}

.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-text);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 10px rgba(245, 241, 232, 0.8);
}

/* Stagger new elements on enter */
.hero-slide.is-active .hero-title     { transition-delay: 0.05s; }
.hero-slide.is-active .hero-subtitle  { transition-delay: 0.13s; line-height: 1.5 !important; }
.hero-slide.is-active .hero-proofs    { transition-delay: 0.20s; }
.hero-slide.is-active .hero-markers   { transition-delay: 0.28s; }
.hero-slide.is-active .hero-actions   { transition-delay: 0.35s; }

.hero-slide .hero-stats {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active .hero-stats {
  opacity: 1;
  transform: translateY(0);
}

/* =========================== OUR RECENT WORKS =========================== */
.recent-works {
  background: var(--off-white);
  padding: 52px 0 64px;
}

.recent-works-heading {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.recent-works-heading::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--primary-blue);
}

.recent-works-heading span {
  position: relative;
  background: var(--off-white);
  padding-right: 14px;
}

.recent-works-slider-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 48px;
}

.recent-works-track {
  display: flex;
  gap: 20px;
  transition: transform 0.35s ease-in-out;
  will-change: transform;
}

.case-card {
  flex-shrink: 0;
  width: 280px;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.case-categories {
  margin-bottom: 12px;
}

.case-category {
  display: inline-block;
  background: rgba(12, 92, 150, 0.1);
  color: var(--primary-blue);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.case-metric {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.2;
  margin-bottom: 6px;
}

.case-metric-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 12px;
}

.case-notes {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--gray-text);
  flex: 1;
  margin-bottom: 16px;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-top: auto;
  transition: color 0.2s ease;
}

.case-link:hover {
  color: var(--primary-blue-dark);
}

.recent-works-controls {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.recent-works-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.recent-works-arrow:hover:not(:disabled) {
  background: var(--primary-blue-dark);
}

.recent-works-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.recent-works-arrow:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 3px;
}

/* ======================= AI SOLUTIONS & SERVICES ======================= */
.ai-solutions {
  background: var(--warm-beige);
  padding: 64px 0 72px;
  scroll-margin-top: var(--header-height);
}

/* Section intro */
.ai-section-intro {
  max-width: 600px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.ai-section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.ai-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.ai-section-lede {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-text);
}

/* Two stacked groups — each group is label + cards, clearly separated */
.ai-group {
  margin-bottom: clamp(20px, 3vw, 32px);
}
.ai-group:last-child { margin-bottom: 0; }

.ai-col-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 6px 6px 0 0;
}

.ai-col-label--transform {
  background: rgba(139, 115, 85, 0.07);
  border: 1.5px solid rgba(139, 115, 85, 0.22);
  border-bottom: none;
}

.ai-col-label--ready {
  background: rgba(12, 92, 150, 0.07);
  border: 1.5px solid rgba(12, 92, 150, 0.2);
  border-bottom: none;
}

.ai-col-label-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
}

.ai-col-label-badge--ready {
  background: rgba(12, 92, 150, 0.12);
  color: var(--primary-blue);
  border: 1px solid rgba(12, 92, 150, 0.25);
}

.ai-col-label-badge--transform {
  background: rgba(139, 115, 85, 0.12);
  color: #7a6040;
  border: 1px solid rgba(139, 115, 85, 0.25);
}

/* ai-cards-grid no longer used — kept for safety */
.ai-cards-grid { display: contents; }

.ai-pathway-pair {
  background: rgba(139, 115, 85, 0.06);
  border: 1.5px solid rgba(139, 115, 85, 0.22);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: clamp(14px, 1.8vw, 18px);
}

/* Base card */
.ai-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(12, 92, 150, 0.1);
  border-radius: 8px;
  padding: 28px 28px 24px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(12, 92, 150, 0.07);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.ai-card:hover {
  box-shadow: 0 12px 40px rgba(12, 92, 150, 0.12);
  border-color: rgba(12, 92, 150, 0.25);
  transform: translateY(-2px);
}

/* Card variants — must come after .ai-card to override */
.ai-card--ready {
  border-radius: 0 0 8px 8px;
  border: 1.5px solid rgba(12, 92, 150, 0.2);
  border-top: none;
  background: rgba(12, 92, 150, 0.04);
  box-shadow: 0 4px 24px rgba(12, 92, 150, 0.07);
}

.ai-card--pathway {
  border-radius: 8px;
  border: 1.5px solid rgba(139, 115, 85, 0.18);
  background: rgba(139, 115, 85, 0.03);
}

.ai-card--pathway:hover {
  border-color: rgba(139, 115, 85, 0.32);
  box-shadow: 0 12px 40px rgba(139, 115, 85, 0.1);
}

/* Left accent bar */
.ai-card-accent {
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: var(--primary-blue);
  border-radius: 0 2px 2px 0;
}

.ai-card-accent--pathway {
  background: #8B7355;
}

/* Card number (pathway only) */
.ai-card-num {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(139, 115, 85, 0.5);
  margin-bottom: 12px;
}

/* Icon */
.ai-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(12, 92, 150, 0.08);
  color: var(--primary-blue);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.ai-card--pathway .ai-card-icon {
  background: rgba(139, 115, 85, 0.08);
  color: #8B7355;
}

/* Title */
.ai-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 12px;
}

/* Description */
.ai-card-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray-text);
  flex: 1;
  margin-bottom: 20px;
}

/* Tags */
.ai-card-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(12, 92, 150, 0.08);
}

.ai-card--pathway .ai-card-tags {
  border-top-color: rgba(139, 115, 85, 0.12);
}

.ai-card-tags li {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--warm-beige);
  border-radius: 4px;
  padding: 4px 10px;
}

/* Footer / CTA */
.ai-card-foot {
  margin-top: auto;
}

/* The two pathway cards sit inside a nested sub-grid */
.ai-pathway-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.8vw, 20px);
  align-items: stretch;
}

.ai-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
  align-items: stretch;
  margin-top: 4px;
}

.pathway-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(12, 92, 150, 0.1);
  border-radius: 6px;
  padding: clamp(28px, 3vw, 36px) clamp(24px, 2.5vw, 32px) clamp(24px, 2.5vw, 32px);
  padding-left: clamp(32px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 10px 40px rgba(12, 92, 150, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.pathway-card:hover {
  box-shadow: 0 16px 48px rgba(12, 92, 150, 0.1);
  border-color: rgba(12, 92, 150, 0.18);
  transform: translateY(-3px);
}

.pathway-card-accent {
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 3px;
  background: var(--primary-blue);
  border-radius: 0 2px 2px 0;
}

.pathway-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pathway-card-index {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(12, 92, 150, 0.45);
}

.pathway-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(12, 92, 150, 0.08);
  color: var(--primary-blue);
}

.pathway-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.pathway-card-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.pathway-proof-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  flex: 1;
}

.pathway-proof-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--charcoal);
}

.pathway-proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(12, 92, 150, 0.12);
}

.pathway-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  list-style: none;
  margin-bottom: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(12, 92, 150, 0.1);
}

.pathway-tags li {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--warm-beige);
  border-radius: 4px;
  padding: 5px 10px;
}

.pathway-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.pathway-card-actions .btn {
  font-size: 0.875rem;
  padding: 12px 18px;
}

/* ======================= SHARED LOWER SECTIONS ======================= */
.section-block {
  padding: 48px 0 56px;
  scroll-margin-top: var(--header-height);
}

.section-block-head {
  margin-bottom: 28px;
}

.section-block-head--center {
  text-align: center;
}

.section-block-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.section-block-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.section-block-lede {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-text);
  max-width: 640px;
  margin: 0;
}

.section-block-lede--center {
  margin-left: auto;
  margin-right: auto;
}

/* ======================= CAPABILITY PATHWAY ======================= */
.capability-pathway {
  background: var(--off-white);
  border-top: 1px solid rgba(12, 92, 150, 0.08);
}

.pathway-graphic {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid rgba(12, 92, 150, 0.1);
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(12, 92, 150, 0.06);
  box-sizing: border-box;
}

.pathway-graphic img {
  width: 100%;
  height: auto;
  display: block;
}

/* ======================= OUR AI MUSINGS ======================= */
.ai-musings {
  background: var(--warm-beige);
}

.musing-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.musing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  padding: 5px 14px;
  border: 1px solid rgba(12, 92, 150, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--charcoal);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #ffffff;
}

.musings-view-all {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-blue);
  white-space: nowrap;
}

.musings-view-all:hover {
  color: var(--primary-blue-dark);
}

.musings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.85fr);
  gap: 16px;
  align-items: start;
}

.musings-right-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.musing-card {
  background: #ffffff;
  border: 1px solid rgba(12, 92, 150, 0.1);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(12, 92, 150, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.musing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(12, 92, 150, 0.18);
  box-shadow: 0 16px 48px rgba(12, 92, 150, 0.08);
}

.musing-card--featured {
  grid-row: span 2;
}

.musing-card--featured .musing-image {
  height: clamp(200px, 22vw, 260px);
}

.musings-right-grid .musing-image {
  height: 130px;
}

.musing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.musing-content {
  padding: 18px 18px 20px;
}

.musing-types {
  margin-bottom: 8px;
}

.musing-type-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--primary-blue);
  background: rgba(12, 92, 150, 0.08);
  border: 1px solid rgba(12, 92, 150, 0.14);
  border-radius: 999px;
  padding: 3px 10px;
}

.musing-card--featured .musing-title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.musings-right-grid .musing-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--charcoal);
  margin-bottom: 12px;
  min-height: auto;
}

.musing-description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: 14px;
}

.musing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--gray-text);
  margin-bottom: 14px;
}

.musing-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-blue);
  transition: gap 0.2s ease, color 0.2s ease;
}

.musing-link::after {
  content: "â†’";
}

.musing-link:hover {
  color: var(--primary-blue-dark);
  gap: 10px;
}

/* ======================= LET'S TALK / CONTACT CTA ======================= */
.lp-contact {
  background: linear-gradient(135deg, #0C5C96 0%, #094e82 100%);
  border-top: none;
  position: relative;
  overflow: hidden;
}

.lp-contact .section-block-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.lp-contact .section-block-title {
  color: #ffffff;
}

.lp-contact .section-block-lede {
  color: rgba(255, 255, 255, 0.75);
}

.lp-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 20px;
  align-items: start;
}

.lp-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-contact-info-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.lp-contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
}

.lp-contact-sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
}

.lp-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.lp-contact-info li {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

.lp-contact-info li strong {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.lp-contact-info a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
}

.lp-contact-info a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.lp-contact-quick-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0;
}

.lp-contact-quick-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.lp-contact-quick-points li::before {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 960px) {
  .lp-contact-layout {
    grid-template-columns: 1fr;
  }
}

/* Reference-video banner: centered copy over a full-height video. */
.hero {
  height: calc(100svh - var(--header-height));
  min-height: 620px;
}
.hero-bg,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__video {
  display: block;
  object-fit: cover;
  object-position: center center;
}
.hero-bg::after {
  background: linear-gradient(90deg, rgba(4,18,36,.78), rgba(4,18,36,.46) 50%, rgba(4,18,36,.66)), linear-gradient(0deg, rgba(4,18,36,.48), transparent 45%);
}
.hero-overlay {
  justify-content: center;
  padding: 48px 36px;
  text-align: center;
}
.hero-card {
  width: min(1020px, 100%);
  margin: 0 auto;
}
.hero-title,
.hero-subtitle { margin-left: auto; margin-right: auto; }
.hero-title { max-width: none; }
.hero-subtitle { max-width: 60ch; }
.hero-actions { justify-content: center; }
.hero-proofs { max-width: 820px; margin-left: auto; margin-right: auto; }
.hero-proof-item { justify-content: center; text-align: left; }
.hero-proof-item:first-child { padding-left: 10px; }
.hero-proof-item:last-child { padding-right: 10px; }
.hero-visual,
.hero-3d-scene { display: none !important; }

.hero-platform-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 76px;
  border-top: 1px solid rgba(190,225,244,.3);
  background: rgba(3,20,39,.78);
  backdrop-filter: blur(10px);
}
.hero-platform-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 14px 18px;
  border-right: 1px solid rgba(190,225,244,.22);
  color: #f2f8fc;
  font-size: clamp(.78rem, 1.2vw, 1rem);
  font-weight: 600;
  transition: background-color .2s ease, color .2s ease;
}
.hero-platform-link:last-child { border-right: 0; }
.hero-platform-link:hover,
.hero-platform-link:focus-visible { background: rgba(14,132,194,.28); color: #fff; }
.hero-platform-icon { display: inline-flex; flex: 0 0 26px; color: #55c8f1; }
.hero-platform-link:nth-child(2) .hero-platform-icon { color: #78aef4; }
.hero-platform-link:nth-child(3) .hero-platform-icon { color: #ffc06e; }

@media (max-width: 760px) {
  .hero {
    height: calc(100svh - var(--header-height));
    min-height: 680px;
  }
  .hero-overlay { padding: 36px 20px 210px; }
  .hero-title { font-size: clamp(2.3rem, 11vw, 3.7rem); }
  .hero-title-line { white-space: normal; }
  .hero-proofs { grid-template-columns: 1fr; }
  .hero-proof-item,
  .hero-proof-item:first-child,
  .hero-proof-item:last-child { justify-content: center; padding: 0; }
}

/* ======================= GLOBAL PRESENCE ======================= */
.global-presence {
  background: var(--warm-beige);
  border-top: 1px solid rgba(12, 92, 150, 0.08);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.location-card {
  background: #ffffff;
  border: 1px solid rgba(12, 92, 150, 0.1);
  border-radius: 6px;
  padding: 0 0 16px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(12, 92, 150, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.location-card::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--primary-blue);
}

.location-card:hover {
  transform: translateY(-3px);
  border-color: rgba(12, 92, 150, 0.18);
  box-shadow: 0 16px 48px rgba(12, 92, 150, 0.08);
}

.loc-img {
  height: 88px;
  overflow: hidden;
}

.loc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.location-card:hover .loc-img img {
  transform: scale(1.04);
}

.loc-body {
  padding: 12px 12px 0;
}

.loc-flag {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}

.loc-country {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.loc-region {
  font-size: 0.75rem;
  color: var(--gray-text);
  font-weight: 500;
  margin-bottom: 8px;
}

.loc-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(12, 92, 150, 0.08);
  color: var(--primary-blue);
  border: 1px solid rgba(12, 92, 150, 0.14);
}

.loc-badge--delivery {
  background: rgba(58, 122, 181, 0.1);
  color: var(--secondary-blue);
  border-color: rgba(58, 122, 181, 0.2);
}

@media (max-width: 1024px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================ RESPONSIVE ============================ */

/* Tablet */
@media (max-width: 992px) {
  :root {
    --header-height: 88px;
  }

  .main-nav {
    padding-top: 8px;
  }

  .nav-list {
    gap: 18px;
  }

  .nav-link.is-active::after {
    bottom: -6px;
  }

  .case-card {
    width: 260px;
  }

  .ai-pathway-pair {
    grid-template-columns: 1fr 1fr;
    border-top: 1.5px solid rgba(139, 115, 85, 0.22);
    border-radius: 8px;
  }

  .ai-card--ready {
    border-radius: 8px;
    border-top: 1.5px solid rgba(12, 92, 150, 0.2) !important;
  }

  .musings-grid {
    grid-template-columns: 1fr;
  }

  .musing-card--featured {
    grid-row: auto;
  }

  .musings-right-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 76px;
  }

  .hero-viewport {
    min-height: auto;
  }

  .header-inner {
    flex-wrap: nowrap;
  }

  .nav-toggle {
    display: flex;
  }

  /* Collapsible mobile menu */
  .main-nav {
    display: none;
    justify-content: flex-start;
    padding-top: 0;
  }

  .main-nav.is-open {
    display: flex;
    background: rgba(12, 92, 150, 0.055);
    border-top: none;
    padding-top: 16px;
    padding-bottom: 8px;
    margin-top: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .nav-link.is-active::after {
    display: none;
  }

  .header-phone span {
    display: none;
  }

  .header-actions {
    gap: 14px;
  }

  /* Hero: stack photo on top, card below on mobile */
  .hero {
    flex: none;
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero-bg {
    position: relative;
    right: unset;
    width: 100%;
    height: min(42vh, 320px);
    flex-shrink: 0;
  }

  .hero-bg img {
    position: relative;
    inset: unset;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% center;
  }

  .hero-bg::after {
    display: none;
  }

  .hero-overlay {
    position: relative;
    inset: unset;
    display: block;
    padding: 28px 20px 36px 24px;
    background: #ffffff;
  }

  .hero-card {
    width: 100%;
    max-width: 100%;
    padding: 0 0 0 20px;
  }

  .hero-accent {
    left: 0;
    top: 0;
    bottom: 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-lg {
    width: 100%;
    text-align: center;
  }

  .recent-works {
    padding: 40px 0 52px;
  }

  .case-card {
    width: calc(100vw - 72px);
    max-width: 340px;
    min-height: 300px;
  }

  .ai-solutions {
    padding: 48px 0 56px;
  }

  .ai-pathway-pair {
    grid-template-columns: 1fr;
  }

  .ai-cols-labels {
    display: none;
  }

  .ai-solutions-grid {
    grid-template-columns: 1fr;
  }

  .pathway-card-actions {
    flex-direction: column;
  }

  .pathway-card-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .musing-filters {
    flex-direction: column;
    align-items: flex-start;
  }

  .musing-card--featured .musing-image,
  .musings-right-grid .musing-image {
    height: 200px;
  }

  .musings-right-grid .musing-title {
    min-height: auto;
  }

  .section-block {
    padding: 40px 0 48px;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .brand-logo {
    height: 44px;
  }

  .header-actions .btn-primary {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
}

/* ======================= BACK TO TOP ======================= */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(12, 92, 150, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-blue-dark);
  box-shadow: 0 6px 24px rgba(12, 92, 150, 0.45);
}

@media (max-width: 640px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* ======================= PLATFORM CARDS (3-column ecosystem grid) ======================= */
.platforms-section {
  background: var(--off-white);
  padding: 64px 0 72px;
  scroll-margin-top: var(--header-height);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .platform-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
@media (min-width: 601px) and (max-width: 900px) { .platform-grid { grid-template-columns: repeat(2, 1fr); max-width: none; } }

.platform-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1.5px solid var(--border-gray);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
}
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(12, 92, 150, 0.14);
  border-color: var(--primary-blue);
}

.platform-card-header {
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--border-gray);
  background: var(--warm-beige);
}
.platform-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.platform-icon svg { display: block; }
.platform-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-blue);
  background: rgba(12, 92, 150, 0.08);
  border: 1px solid rgba(12, 92, 150, 0.15);
  padding: 3px 9px;
  border-radius: 99px;
  margin-bottom: 0.6rem;
}
.platform-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--charcoal);
}

.platform-card-body {
  padding: 1.25rem 1.75rem;
  flex: 1;
}
.platform-desc {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.platform-capabilities {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.capability-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.45;
}
.capability-dot {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-blue);
  margin-top: 5px;
}

.platform-card-footer {
  padding: 1.1rem 1.75rem;
  border-top: 1px solid var(--border-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.platform-cta-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-blue);
}
.platform-cta-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(12, 92, 150, 0.08);
  border: 1px solid rgba(12, 92, 150, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.platform-card:hover .platform-cta-arrow {
  background: var(--primary-blue);
  transform: translateX(3px);
}
.platform-card:hover .platform-cta-arrow svg path { stroke: #fff; }

/* ======================= INSIGHTS SECTION ======================= */
.insight-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .insights-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
@media (min-width: 601px) and (max-width: 900px) { .insights-grid { grid-template-columns: repeat(2, 1fr); max-width: none; } }

.insight-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1.5px solid var(--border-gray);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
}
a.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(12, 92, 150, 0.14);
  border-color: var(--primary-blue);
}

.insight-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--warm-beige-dark);
}
.insight-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.insight-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insight-play svg {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}
.insight-play::before {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
}
.insight-play svg { position: relative; z-index: 1; }

.insight-body {
  padding: 1.1rem 1.4rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.insight-type-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-blue);
  background: rgba(12, 92, 150, 0.08);
  border: 1px solid rgba(12, 92, 150, 0.15);
  padding: 3px 9px;
  border-radius: 99px;
  margin-bottom: 0.6rem;
  width: fit-content;
}
.insight-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.insight-link {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-blue);
}
a.insight-card:hover .insight-link { color: var(--primary-blue-dark); }

.insight-card--empty {
  border-style: dashed;
  background: var(--off-white);
}
.insight-body--empty {
  justify-content: center;
  min-height: 220px;
  text-align: left;
}
.insight-empty-note {
  font-size: 0.85rem;
  color: var(--gray-text);
  line-height: 1.55;
  margin-bottom: 0.9rem;
}

/* =========================================================
   OptiSol website visual refresh
   ========================================================= */
:root {
  --primary-blue: #0761bc;
  --primary-blue-dark: #034c96;
  --secondary-blue: #17a8e3;
  --off-white: #ffffff;
  --warm-beige: #f7fbff;
  --warm-beige-dark: #eaf4fc;
  --charcoal: #12223a;
  --gray-text: #526176;
  --border-gray: #dce7f0;
  --font-heading: "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --container-max: 1280px;
  --header-height: 82px;
  --radius: 12px;
  --shadow-card: 0 14px 40px rgba(7, 97, 188, 0.09);
}

body { background: #fff; }
.container { padding: 0 32px; }
.hero-viewport { min-height: 760px; 
  /* padding-top: var(--header-height);  */
  background: #f6fbff; }

/* Header */
.site-header, .site-header.is-scrolled { background: rgba(255,255,255,.96); box-shadow: 0 1px 0 rgba(13, 81, 148, .12); }
.site-header .header-inner, .site-header.is-scrolled .header-inner { min-height: 60px; padding-top: 0; padding-bottom: 0; background: transparent; }
.brand-logo { height: 42px; }
.main-nav, .site-header.is-scrolled .main-nav { position: absolute; inset: 0 250px 0 auto; width: auto; background: transparent; padding: 0; margin: 0; }
.nav-list { height: 100%; gap: 28px; }
.nav-link { font-size: .91rem; font-weight: 600; color: #26364d; padding: 30px 0; }
.nav-link.is-active, .nav-link:hover { color: var(--primary-blue); }
.nav-link.is-active::after { bottom: 21px; height: 2px; }
.header-actions { gap: 16px; }
.header-phone { font-size: .8rem; color: #506078; }
.header-actions .btn { border-radius: 6px; padding: 12px 17px; font-size: .78rem; }

/* Hero */
.hero { background: #f6fbff; min-height: 678px; }
.hero-bg::after { background: linear-gradient(90deg, #f6fbff 0%, rgba(246,251,255,.95) 27%, rgba(246,251,255,.52) 49%, rgba(246,251,255,.04) 68%); }
.hero-bg img { object-position: 83% center; }
.hero-overlay { padding: 40px clamp(32px, 8vw, 150px); }
.hero-card { width: min(660px, 54%); padding: 24px 0 24px 28px; }
.hero-accent { left: 0; top: 20px; bottom: 20px; width: 4px; background: linear-gradient(#16a9e3, var(--primary-blue)); }
.hero-title { font-size: clamp(2.4rem, 4vw, 4.35rem); line-height: 1.2; letter-spacing: -.052em; text-shadow: none; }
.hero-subtitle { max-width: 51ch; color: #526176; font-size: 1rem; text-shadow: none; }
.hero-proof-item { color: #26364d; font-size: .91rem; text-shadow: none; }
.hero-markers { gap: 10px 18px; }
.marker { font-size: .73rem; color: #3f5069; }
.hero-actions .btn-lg { border-radius: 6px; padding: 15px 19px; }
.btn-primary { background: var(--primary-blue); border-radius: 6px; box-shadow: 0 7px 16px rgba(7,97,188,.18); }
.btn-primary:hover { background: var(--primary-blue-dark); transform: translateY(-1px); }
.btn-outline { border-radius: 6px; color: var(--primary-blue); border-color: #aacbe7; background: #fff; }

/* Reusable surface & sections */
.recent-works, .platforms-section, .section-block { padding: 96px 0; }
.recent-works { background: #fff; }
.recent-works-heading { font-size: .72rem; color: var(--primary-blue); letter-spacing: .16em; margin-bottom: 34px; }
.recent-works-heading::before { background: #c8deef; }
.recent-works-heading span { background: #fff; }
.case-card, .platform-card, .insight-card, .location-card { border-color: var(--border-gray); box-shadow: none; border-radius: 10px; }
.case-card { width: 300px; min-height: 330px; padding: 24px; }
.case-card:hover, .platform-card:hover, a.insight-card:hover { border-color: #8cbde3; box-shadow: var(--shadow-card); }
.case-category, .platform-tag, .insight-type-label { background: #edf7ff; color: var(--primary-blue); border-color: #d3eafa; }
.case-metric { color: #063d7a; }
.recent-works-arrow { background: #eaf4fc; color: var(--primary-blue); }
.recent-works-arrow:hover:not(:disabled) { background: var(--primary-blue); }
.platforms-section { background: #f7fbff; }
.ai-section-title, .section-block-title { font-weight: 700; letter-spacing: -.035em; }
.platform-card-header { background: #fff; padding: 30px 30px 22px; }
.platform-icon { border-radius: 10px; background: linear-gradient(135deg, #0872cf, #044c97); }
.platform-card-body, .platform-card-footer { padding-left: 30px; padding-right: 30px; }
.platform-card-footer { background: #fff; }
.section-block { background: #fff; }
#why-one-partner { background: linear-gradient(135deg, #f4f9fd, #eef7ff); }
.location-card { background: #fff; }
.filter-btn { border-radius: 999px; }
.filter-btn.is-active { background: var(--primary-blue); }
.lp-contact { background: linear-gradient(125deg, #063a72, #0761bc); color: #fff; }
.lp-contact .section-block-eyebrow { color: #80d5ff; }
.lp-contact .section-block-title, .lp-contact .section-block-lede { color: #fff; }
.lp-contact-info-card { border-radius: 12px; }
.global-presence { background: #f8fbfe; }

@media (max-width: 1050px) {
  .main-nav { inset: 0 208px 0 auto; }
  .nav-list { gap: 16px; }
  .nav-link { font-size: .81rem; }
  .header-phone { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  :root { --header-height: 70px; }
  .container { padding: 0 20px; }
  .site-header .header-inner { min-height: 60px; }
  .brand-logo { height: 36px; }
  .main-nav { position: absolute; inset: 70px 0 auto; width: 100%; padding: 20px; background: #fff !important; display: none; }
  .main-nav.is-open { display: block; }
  .nav-list { height: auto; flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav-link { padding: 10px 0; }
  .nav-link.is-active::after { bottom: 6px; }
  .nav-toggle { display: flex; }
  .header-actions .btn { padding: 10px 12px; font-size: .72rem; }
  .hero-viewport { min-height: auto; }
  .hero { min-height: 700px; }
  .hero-bg img { object-position: 68% center; opacity: .35; }
  .hero-bg::after { background: rgba(246,251,255,.84); }
  .hero-overlay { padding: 42px 26px; align-items: flex-start; }
  .hero-card { width: 100%; padding-left: 22px; }
  .hero-title { font-size: clamp(2.4rem, 12vw, 3.45rem); }
  .hero-markers { display: none; }
  .recent-works, .platforms-section, .section-block { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; padding-top: 52px; padding-bottom: 46px; }
  .footer-bottom-inner { align-items: flex-start; flex-direction: column; justify-content: center; padding-top: 20px; padding-bottom: 20px; }
}

/* =========================================================
   2026 UI refresh — reference-inspired enterprise direction
   ========================================================= */
:root {
  --ink: #07182f;
  --ink-soft: #122943;
  --brand: #0761bc;
  --brand-bright: #12a8e7;
  --surface: #ffffff;
  --surface-soft: #f3f8fc;
  --line: #d9e5ef;
  --header-height: 88px;
  --container-max: 1320px;
}

.container { max-width: var(--container-max); padding-left: 36px; padding-right: 36px; }

/* Wordmark remains visible even when project image assets are unavailable. */
.brand-wordmark,
.footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-symbol {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border: 2px solid var(--brand);
  border-top-color: transparent;
  border-radius: 50% 50% 45% 55%;
  transform: rotate(-18deg);
}

.brand-symbol::before,
.brand-symbol::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f58220;
}

.brand-symbol::before { left: -4px; top: 4px; }
.brand-symbol::after { right: -2px; top: -1px; }

.brand-name {
  display: flex;
  flex-direction: column;
  color: var(--brand);
  font-size: 1.38rem;
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.04em;
}

.brand-name small {
  margin-top: 6px;
  color: #59697a;
  font-size: .48rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Minimal floating navigation */
.site-header,
.site-header.is-scrolled {
  height: 60px;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(7,97,188,.10);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.site-header .header-inner,
.site-header.is-scrolled .header-inner {
  position: relative;
  z-index: 2;
  min-height: 60px;
  padding-top: 0;
  padding-bottom: 0;
}

.main-nav,
.site-header.is-scrolled .main-nav {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  padding: 0;
  background: transparent;
  pointer-events: none;
}

.nav-list {
  height: 100%;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 38px);
  pointer-events: auto;
}

.nav-link {
  padding: 34px 0 31px;
  color: #25374b;
  font-size: .84rem;
  font-weight: 600;
}

.nav-link.is-active::after {
  bottom: 23px;
  height: 2px;
  border-radius: 2px;
}

.header-actions { position: relative; z-index: 3; gap: 14px; }
.header-phone { font-size: .76rem; color: #506275; }
.header-actions .btn {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: .76rem;
  box-shadow: none;
}

/* Cinematic enterprise hero with a fully CSS-based fallback visual. */
.hero-viewport {
  min-height: auto;
  /* padding-top: var(--header-height); */
  background: var(--ink);
}

.hero {
  min-height: 710px;
  background:
    radial-gradient(circle at 74% 42%, rgba(18,168,231,.22), transparent 27%),
    radial-gradient(circle at 92% 10%, rgba(77,98,255,.20), transparent 26%),
    linear-gradient(118deg, #041224 0%, #072343 54%, #062a4b 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent 4%, #000 56%, #000 100%);
  pointer-events: none;
}

.hero-bg img {
  opacity: .12;
  mix-blend-mode: luminosity;
  object-position: 86% center;
}

.hero-bg::after {
  background: linear-gradient(90deg, rgba(4,18,36,.99) 0%, rgba(4,18,36,.95) 40%, rgba(4,18,36,.52) 66%, rgba(4,18,36,.15) 100%);
}

.hero-3d-scene {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: max(18px, calc((100vw - 1320px) / 2));
  width: min(54vw, 720px);
  height: min(54vw, 720px);
  perspective: 900px;
  transform: translateY(-50%) rotateX(12deg) rotateY(-18deg);
  transform-style: preserve-3d;
  pointer-events: none;
}

.hero-3d-scene::before,
.hero-3d-scene::after {
  content: "";
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,193,247,.18), transparent 64%);
  filter: blur(18px);
  animation: hero-pulse 5s ease-in-out infinite;
}

.hero-3d-scene::after {
  inset: 5% 28% 35% 8%;
  background: radial-gradient(circle, rgba(255,172,67,.16), transparent 68%);
  animation-delay: -2.2s;
}

.hero-3d-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(79,205,248,.55);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(39,183,244,.18), inset 0 0 20px rgba(39,183,244,.08);
  transform: translate(-50%,-50%) rotateX(68deg) rotateZ(0deg);
  transform-style: preserve-3d;
  animation: hero-orbit-spin 15s linear infinite;
}

.hero-3d-ring--outer { width: 92%; height: 42%; border-color: rgba(79,205,248,.34); animation-duration: 22s; }
.hero-3d-ring--middle { width: 70%; height: 32%; transform: translate(-50%,-50%) rotateX(68deg) rotateZ(56deg); animation-duration: 16s; animation-direction: reverse; }
.hero-3d-ring--inner { width: 48%; height: 22%; border-style: dashed; transform: translate(-50%,-50%) rotateX(68deg) rotateZ(-35deg); animation-duration: 11s; }

.hero-3d-node { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: #72ddff; box-shadow: 0 0 18px 5px rgba(82,210,255,.7); animation: hero-node-drift 6s ease-in-out infinite; }
.hero-3d-node--one { left: 16%; top: 25%; }
.hero-3d-node--two { right: 13%; top: 30%; animation-delay: -2s; background: #ffb34e; box-shadow: 0 0 18px 5px rgba(255,179,78,.62); }
.hero-3d-node--three { right: 25%; bottom: 18%; animation-delay: -4s; }
.hero-3d-node--four { left: 25%; bottom: 15%; animation-delay: -1s; background: #ffb34e; box-shadow: 0 0 18px 5px rgba(255,179,78,.62); }

@keyframes hero-orbit-spin { from { transform: translate(-50%,-50%) rotateX(68deg) rotateZ(0deg); } to { transform: translate(-50%,-50%) rotateX(68deg) rotateZ(360deg); } }
@keyframes hero-node-drift { 0%,100% { transform: translate3d(0,0,28px); } 50% { transform: translate3d(12px,-18px,70px); } }
@keyframes hero-pulse { 0%,100% { opacity: .5; transform: scale(.92); } 50% { opacity: 1; transform: scale(1.08); } }

.hero-overlay {
  align-items: center;
  padding: 70px max(36px, calc((100vw - 1248px) / 2));
}

.hero-card {
  z-index: 3;
  width: min(750px, 57%);
  padding: 0;
}

.hero-accent { display: none; }

.hero-slide,
.hero-slide.is-active {
  min-height: 0;
  opacity: 1;
  visibility: visible;
  transform: none;
  filter: none;
}

.hero-slide.is-active .hero-title,
.hero-slide.is-active .hero-subtitle,
.hero-slide.is-active .hero-proofs,
.hero-slide.is-active .hero-markers,
.hero-slide.is-active .hero-actions {
  opacity: 1;
  transform: none;
  line-height: 1.2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #86dcff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: #32bfff;
}

.hero-title {
  max-width: 11ch;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(3.35rem, 5.45vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -.061em;
  text-shadow: none;
}

.hero-title .text-blue {
  color: #5dc9f6;
  font-weight: 600;
}

.hero-subtitle {
  max-width: 60ch;
  margin-top: 0;
  color: rgba(231,242,252,.76);
  font-size: 1.02rem;
  line-height: 1.72;
  text-shadow: none;
}

.hero-proofs {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 25px;
}

.hero-proof-item {
  width: calc(50% - 12px);
  color: rgba(240,248,255,.85);
  font-size: .8rem;
  line-height: 1.5;
  text-shadow: none;
}

.hero-proof-item:last-child { width: 100%; }
.hero-markers { display: none; }
.hero-actions { margin-top: 32px; gap: 14px; }
.hero-actions .btn-lg { min-height: 50px; padding: 0 22px; border-radius: 999px; font-size: .82rem; }
.hero-actions .btn-primary { background: #0761bc; box-shadow: 0 14px 30px rgba(6,118,202,.28); }
.hero-actions .btn-outline { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.34); color: #fff; }
.hero-actions .btn-outline:hover { background: #fff; border-color: #fff; color: var(--ink); }

.hero-visual {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: max(38px, calc((100vw - 1320px) / 2));
  width: 500px;
  height: 500px;
  transform: translateY(-50%);
}

.hero-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(89,202,247,.24);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

.hero-orbit--outer { width: 440px; height: 440px; }
.hero-orbit--inner { width: 260px; height: 260px; border-style: dashed; }
.hero-orbit--outer::before,
.hero-orbit--inner::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #65d0fa;
  box-shadow: 0 0 22px #65d0fa;
}
.hero-orbit--outer::before { top: 65px; right: 62px; }
.hero-orbit--inner::after { bottom: 24px; left: 34px; }

.hero-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 13px;
  width: 172px;
  height: 172px;
  padding: 30px;
  border: 1px solid rgba(116,214,252,.45);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(33,165,225,.40), rgba(5,38,70,.82));
  box-shadow: 0 0 70px rgba(18,168,231,.18), inset 0 0 34px rgba(97,207,249,.14);
  transform: translate(-50%,-50%);
}

.hero-core span { color: #fff; font-size: 3rem; font-weight: 600; letter-spacing: -.07em; }
.hero-core small { color: #a8ddf3; font-size: .67rem; font-weight: 600; line-height: 1.35; text-transform: uppercase; letter-spacing: .08em; }

.hero-tech-card {
  position: absolute;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 1px 12px;
  width: 220px;
  padding: 17px 18px;
  border: 1px solid rgba(143,221,250,.24);
  border-radius: 12px;
  background: rgba(7,35,64,.76);
  box-shadow: 0 22px 55px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
}

.hero-tech-card > span { grid-row: 1 / 3; color: #59c9f7; font-size: .66rem; font-weight: 700; letter-spacing: .1em; }
.hero-tech-card strong { color: #fff; font-size: .96rem; font-weight: 600; }
.hero-tech-card small { color: #8eafc9; font-size: .62rem; letter-spacing: .02em; }
.hero-tech-card--pb { left: 10px; top: 42px; }
.hero-tech-card--sybase { right: -4px; top: 205px; }
.hero-tech-card--oracle { left: 24px; bottom: 34px; }

/* Proof strip */
.proof-strip { position: relative; z-index: 5; background: #fff; border-bottom: 1px solid var(--line); }
.proof-strip-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.proof-strip-grid > div { display: flex; align-items: center; gap: 14px; min-height: 112px; padding: 0 34px; border-right: 1px solid var(--line); }
.proof-strip-grid > div:first-child { padding-left: 0; }
.proof-strip-grid > div:last-child { border-right: 0; }
.proof-strip-grid strong { color: var(--brand); font-size: 2rem; font-weight: 600; letter-spacing: -.05em; }
.proof-strip-grid span { max-width: 12ch; color: #54677b; font-size: .76rem; line-height: 1.35; text-transform: uppercase; letter-spacing: .08em; }

/* Editorial section headings */
.recent-works,
.platforms-section,
.section-block { padding-top: 30px; padding-bottom: 30px; }

.section-editorial-head {
  display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(280px,.65fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 10px;
}

.section-kicker,
.ai-section-eyebrow,
.section-block-eyebrow {
  margin-bottom: 14px;
  color: var(--brand);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.section-editorial-head h2,
.ai-section-title,
.section-block-title {
  color: var(--ink);
  font-size: clamp(2.25rem, 3vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: initial;
}

.section-editorial-head > p,
.ai-section-lede,
.section-block-lede { color: #607286; font-size: .98rem; line-height: 1.75; }
.ai-section-intro { max-width: 800px !important; margin-bottom: 52px; }

/* Case studies: visible responsive grid, no JS dependency. */
.recent-works { background: #f7fafc; }
.recent-works-slider-wrap { overflow: visible; padding-bottom: 0; }
.recent-works-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
  transform: none !important;
}
.case-card {
  position: relative;
  width: auto;
  min-height: 350px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: none;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.case-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(#19b3ee, #0761bc);
  opacity: 0;
  transition: opacity .25s ease;
}
.case-card:hover { transform: translateY(-6px); border-color: #bad8ec; box-shadow: 0 24px 55px rgba(24,74,115,.10); }
.case-card:hover::before { opacity: 1; }
.case-category { padding: 6px 10px; border-radius: 999px; font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; }
.case-metric { margin-top: 10px; margin-bottom: 10px; color: var(--brand); font-size: 1.3rem; font-weight: 700; }
.case-metric-title { font-size: 1rem; line-height: 1.4; }
/* .case-notes { color: #65778a; font-size: .82rem; line-height: 1.65; } */
.case-link { font-size: .78rem; }
.recent-works-controls { display: none; }

/* Practice cards */
.platforms-section { background: #fff; }
.platform-grid { gap: 22px; }
.platform-card { border: 1px solid var(--line); border-radius: 18px; }
.platform-card:hover { transform: translateY(-8px); border-color: #add3eb; box-shadow: 0 28px 65px rgba(17,68,110,.12); }
.platform-card-header { min-height: 220px; padding: 34px 34px 26px; background: linear-gradient(145deg,#f8fbfe,#eef6fb); }
.platform-icon { width: 54px; height: 54px; border-radius: 14px; box-shadow: 0 12px 22px rgba(7,97,188,.20); }
.platform-card-title { font-size: 1.38rem; font-weight: 600; }
.platform-card-body { padding: 26px 34px; }
.platform-card-footer { padding: 20px 34px; }

/* Structured editorial comparison block */
#why-one-partner { background: #eef6fc; }
#why-one-partner .section-block-head { margin-bottom: 52px; }
#why-one-partner .section-block-title { max-width: 15ch; margin-left: auto; margin-right: auto; }
#why-one-partner .locations-grid { gap: 14px; }
#why-one-partner .location-card {
  padding: 30px 24px !important;
  border: 0;
  border-top: 3px solid var(--brand);
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 15px 35px rgba(25,72,110,.07);
}
#why-one-partner .location-card::before { display: none; }
#why-one-partner .loc-country { margin-bottom: 11px; font-size: .95rem; }
#why-one-partner .loc-region { font-size: .76rem; line-height: 1.65; }

/* Insights */
#insights .section-block-head { max-width: 760px; margin-bottom: 32px; }
.insights-grid { gap: 22px; }
.insight-card { min-height: 410px; border-radius: 16px; }
.insight-card--empty { background: linear-gradient(145deg,#fbfdff,#f4f8fb); border-style: solid; }
.insight-body { padding: 24px 26px 28px; }
.insight-title { font-size: 1.16rem; font-weight: 600; }

/* Contact: larger type and bright form surface. */
.lp-contact { background: linear-gradient(124deg,#04172d 0%,#073d73 58%,#0761bc 100%); }
.lp-contact::before { content: ""; position: absolute; width: 520px; height: 520px; right: -160px; top: -200px; border: 1px solid rgba(91,202,247,.18); border-radius: 50%; box-shadow: 0 0 0 90px rgba(91,202,247,.035), 0 0 0 180px rgba(91,202,247,.025); }
.lp-contact .section-block-head { margin-bottom: 44px; }
.lp-contact .section-block-title { color: #fff; max-width: 25ch; }
.lp-contact .section-block-lede { color: #b3c9dc; }
.lp-contact-layout { grid-template-columns: minmax(0,1fr) 320px; gap: 24px; }
.lp-contact-info-card,
.lp-contact-quick-points { padding: 24px; border-radius: 14px; background: rgba(255,255,255,.08); }

/* Presence cards do not depend on missing local city images. */
.global-presence { background: #f7fafc; }
.global-presence .section-block-head { margin-bottom: 50px; }
.locations-grid { gap: 14px; }
.global-presence .location-card { min-height: 178px; padding: 28px 18px; display: flex; align-items: center; justify-content: center; border-radius: 14px; }
.global-presence .location-card::before { position: absolute; inset: 0 auto 0 0; width: 3px; height: auto; }
.global-presence .loc-img { display: none; }
.global-presence .loc-flag { display: block; margin-bottom: 14px; font-size: 1.7rem; }



@media (max-width: 1160px) {
  .nav-list { gap: 16px; }
  .nav-link { font-size: .76rem; }
  .header-phone { display: none; }
  .hero-card { width: 58%; }
  .hero-visual { right: -70px; transform: translateY(-50%) scale(.82); }
}

@media (max-width: 900px) {
  .site-header,
  .site-header.is-scrolled { height: 76px; }
  :root { --header-height: 76px; }
  .site-header .header-inner,
  .site-header.is-scrolled .header-inner { min-height: 60px; }
  .main-nav { position: absolute; inset: 76px 0 auto; display: none; height: auto; padding: 22px 30px; background: #fff !important; box-shadow: 0 18px 35px rgba(13,38,61,.12); pointer-events: auto; }
  .main-nav.is-open { display: block; }
  .nav-list { align-items: flex-start; flex-direction: column; gap: 2px; }
  .nav-link { display: block; padding: 11px 0; font-size: .88rem; }
  .nav-link.is-active::after { bottom: 6px; }
  .nav-toggle { display: flex; }
  .hero { min-height: 730px; }
  .hero-card { width: 72%; }
  .hero-visual { right: -210px; opacity: .48; }
  .recent-works-track { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .proof-strip-grid { grid-template-columns: repeat(2,1fr); }
  .proof-strip-grid > div { border-bottom: 1px solid var(--line); }
  .proof-strip-grid > div:nth-child(2) { border-right: 0; }
  .proof-strip-grid > div:nth-child(3),
  .proof-strip-grid > div:nth-child(4) { border-bottom: 0; }
  .locations-grid { grid-template-columns: repeat(2,1fr); }
  .lp-contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .brand-name { font-size: 1.16rem; }
  .brand-symbol { width: 25px; height: 25px; }
  .header-actions .btn { display: none; }
  .hero { min-height: 720px; }
  .hero::before { background-size: 52px 52px; }
  .hero-bg img { display: none; }
  .hero-bg::after { background: linear-gradient(145deg,rgba(4,18,36,.97),rgba(6,42,75,.92)); }
  .hero-overlay { padding: 64px 20px 54px; align-items: flex-start; }
  .hero-card { width: 100%; }
  .hero-visual { display: none; }
  .hero-eyebrow { max-width: 32ch; font-size: .61rem; line-height: 1.6; }
  .hero-title { max-width: 10ch; font-size: clamp(3rem,15vw,4.2rem); }
  .hero-subtitle { font-size: .91rem; }
  .hero-proofs { flex-direction: column; }
  .hero-proof-item,
  .hero-proof-item:last-child { width: 100%; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn-lg { width: 100%; }
  .proof-strip-grid { grid-template-columns: 1fr 1fr; }
  .proof-strip-grid > div { min-height: 96px; padding: 0 14px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 2px; }
  .proof-strip-grid > div:first-child { padding-left: 14px; }
  .proof-strip-grid strong { font-size: 1.55rem; }
  .proof-strip-grid span { font-size: .62rem; }
  .recent-works,
  .platforms-section,
  .section-block { padding-top: 76px; padding-bottom: 76px; }
  .section-editorial-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 34px; }
  .section-editorial-head h2,
  .ai-section-title,
  .section-block-title { font-size: clamp(2.15rem,11vw,3rem); }
  .recent-works-track,
  .platform-grid,
  .insights-grid,
  .locations-grid { grid-template-columns: 1fr; }
  .case-card { min-height: 330px; }
  .platform-card-header { min-height: auto; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Reference-directed refinements
   Banner · outcomes · sticky practices · combined contact
   ========================================================= */

/* 1. Clean, light two-column banner */
.hero-viewport { background: #fff; }
.hero {
  min-height: 520px;
  background:
    radial-gradient(circle at 87% 18%, rgba(18,168,231,.12), transparent 23%),
    linear-gradient(90deg, #fff 0%, #fff 52%, #f3f9fc 100%);
}

.hero::before {
  opacity: .48;
  background-image:
    linear-gradient(rgba(7,97,188,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,97,188,.035) 1px, transparent 1px);
  mask-image: linear-gradient(to right, #000, transparent 55%);
}

.hero-bg {
  left: 0;
  width: 100%;
  background: linear-gradient(145deg,#eaf5fa,#f8fcfe);
}

.hero-bg img {
  display: block;
  opacity: 1;
  mix-blend-mode: normal;
  object-position: center center;
}

.hero-bg::after {
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.78) 32%, rgba(218,245,250,.42) 52%, rgba(7,97,188,.16) 78%, rgba(7,97,188,.28) 100%),
    linear-gradient(0deg, rgba(255,255,255,.72) 0%, transparent 25%);
}

.hero-overlay {
  z-index: 4;
  align-items: center;
  padding-top: 62px;
  padding-bottom: 62px;
}

.hero-card { width: min(760px, 52%); }
.hero-eyebrow { color: #047c90; }
.hero-eyebrow::before { background: #10aabe; }
.hero-title {
  max-width: none;
  color: #111d2c;
  font-size: clamp(3.1rem,3.75vw,4rem);
  font-weight: 600;
  line-height: initial;
}
.hero-title-line { display: block; white-space: nowrap; letter-spacing: normal;
    font-weight: 700;}
.hero-title .text-blue { color: var(--brand);     letter-spacing: normal;
    font-weight: 700;}
.hero-subtitle { color: #4c5d70; }
.hero-actions { margin-top: 26px; }
.hero-proofs {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 10px;
  width: 100%;
  margin: 26px 0 0;
  padding: 23px 0 0;
  border-top: 1px solid #565b60;
}
.hero-proof-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 0 10px;
  border-right: 1px solid #667b8a;
  color: #2e4052;
  font-size: .74rem;
  line-height: 1.45;
}
.hero-proof-item:first-child { padding-left: 0; }
.hero-proof-item:last-child { width: auto; padding-right: 0; border-right: 0; }
.hero-proof-icon path { stroke: currentColor; }
.hero-actions .btn-primary { background: #0761bc; box-shadow: none; }
.hero-actions .btn-primary:hover { background: var(--brand); }
.hero-actions .btn-outline { background: #fff; color: #12243a; border-color: #aebdca; }
.hero-actions .btn-outline:hover { background: #eef7fc; color: var(--brand); border-color: var(--brand); }

.hero-visual {
  z-index: 3;
  top: 0;
  right: max(18px, calc((100vw - 1440px) / 2));
  width: 49%;
  height: 100%;
  transform: none;
  pointer-events: none;
}

.hero-orbit,
.hero-core,
.hero-tech-card { display: none; }

.hero-ui-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 248px;
  padding: 18px 20px;
  border: 1px solid rgba(27,114,153,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 70px rgba(24,64,88,.16);
  backdrop-filter: blur(14px);
}

.hero-ui-icon {
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  height: 52px;
  border-radius: 14px;
  background: #dcedff;
  color: #0761bc;
  font-size: .78rem;
  font-weight: 800;
}

.hero-ui-card div { display: flex; flex-direction: column; gap: 5px; }
.hero-ui-card strong { color: #14243a; font-size: .88rem; }
.hero-ui-card small { color: #738496; font-size: .67rem; }
.hero-ui-card--pb { left: 4%; top: 4%; }
.hero-ui-card--sybase { right: 0; top: 4%; }
.hero-ui-card--oracle { right: 1%; bottom: 7%; min-width: 310px; }
.hero-ui-score { margin-left: auto; color: #087d93; font-size: 1.05rem; font-weight: 800; }

.proof-strip { border-top: 1px solid #e4edf3; }

/* 2. Outcomes: white editorial grid inspired by the reference slider. */
.recent-works { background: #fff; }
.recent-works .section-editorial-head { padding-bottom: 30px; border-bottom: 1px solid #b8d9ee; }
.recent-works-track { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 0; }
.case-card {
  min-height: 355px;
  padding: 20px 20px 30px;
  border: 0;
  border-right: 1px solid #dce7ef;
  border-radius: 0;
  background: #fff;
}
.case-card:nth-child(4n) { border-right: 0; }
.case-card:nth-child(n+5) { border-top: 1px solid #dce7ef; }
.case-card::before { display: none; }
.case-card:hover { transform: none; border-color: #dce7ef; background: #f8fbfd; box-shadow: none; }
.case-category { background: #eaf3fb; color: #185b8f; }
.case-link { color: #078ee1; font-size: .84rem; }

/* 3. Sticky-scrolling platform expertise panels. */
.platforms-section { padding-bottom: 72px; background: #fff; border-top: 1px solid #e1e1e1; }
.platforms-section .ai-section-intro {
  max-width: 960px !important;
  margin: 0 auto 30px;
  text-align: center;
}
.platforms-section .ai-section-title {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}
.platforms-section .ai-section-lede { max-width: 76ch; margin-left: auto; margin-right: auto; }
.platform-grid { display: block; max-width: none; margin: 0; }
.platform-card {
  position: sticky;
  display: grid;
  grid-template-columns: 44% 56%;
  grid-template-rows: 1fr auto;
  min-height: 500px;
  margin-bottom: 11vh;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 25px 65px rgba(20,47,70,.10);
  transform: none !important;
}
.platform-card:nth-child(1) { top: calc(var(--header-height) + 18px); z-index: 1; background: #eef1f3; }
.platform-card:nth-child(2) { top: calc(var(--header-height) + 34px); z-index: 2; background: #fff; }
.platform-card:nth-child(3) { top: calc(var(--header-height) + 50px); z-index: 3; margin-bottom: 0; background: #eaf5fb; }
.platform-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  opacity: .16;
  pointer-events: none;
}
.platform-card:nth-child(1)::after {
  background-image: linear-gradient(90deg, rgba(226,241,247,.96), rgba(226,241,247,.62)), url("../images/banner.png");
  background-position: 68% center;
}
.platform-card:nth-child(2)::after {
  background-image: linear-gradient(90deg, rgba(241,247,252,.96), rgba(241,247,252,.62)), url("../images/banner.png");
  background-position: 82% center;
}
.platform-card:nth-child(3)::after {
  background-image: linear-gradient(90deg, rgba(220,245,250,.96), rgba(220,245,250,.58)), url("../images/banner.png");
  background-position: 94% center;
}
.platform-card > * { position: relative; z-index: 2; }
.platform-card::before {
  position: absolute;
  left: 48px;
  top: 50%;
  color: transparent;
  font-size: clamp(7rem,11vw,11rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.08em;
  -webkit-text-stroke: 1px #9aa9b5;
  transform: translateY(-54%);
}

/* Final card layout override: regular three-column cards, no sticky scrolling. */
.platform-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.platform-card,
.platform-card:nth-child(1),
.platform-card:nth-child(2),
.platform-card:nth-child(3) {
  position: relative;
  top: auto;
  z-index: auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin-bottom: 0;
}
.platform-card-header,
.platform-card-body,
.platform-card-footer {
  display: block;
  width: 100%;
  grid-column: auto;
  grid-row: auto;
}
.platform-card-header { min-height: 200px; height: auto; padding: 30px 32px 5px 30px; }
.platform-card-body { flex: 1; padding: 15px 32px 18px; }
.platform-card-footer { padding: 18px 32px 28px; }

@media (max-width: 900px) {
  .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .platform-grid { grid-template-columns: 1fr; }
  .platform-card,
  .platform-card:nth-child(1),
  .platform-card:nth-child(2),
  .platform-card:nth-child(3) { margin-bottom: 22px; }
}

/* Compact footer: brand, social links, and essential navigation only. */

.footer-compact {
  display: grid;
  grid-template-columns: 1.2fr auto 1.2fr;
  align-items: center;
    gap: 0px;
    min-height: 70px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.footer-compact-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-compact .footer-brand { width: fit-content; }
.footer-compact .brand-name { color: #fff; }
.footer-compact .brand-name small { color: #8291a0; }
.footer-compact-copy { color: #6f7d8a; font-size: .72rem; }
.footer-socials { display: flex; align-items: center; gap: 12px; }
.footer-socials a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: #7f8d99;
  font-size: .82rem;
  font-weight: 700;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}
.footer-socials a:hover,
.footer-socials a:focus-visible { border-color: var(--brand-bright); background: rgba(18,168,231,.12); color: #fff; }
.footer-compact-links { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 10px 24px; }
.footer-compact-links a { color: #8794a0; font-size: .78rem; }
.footer-compact-links a:hover,
.footer-compact-links a:focus-visible { color: #fff; }

@media (max-width: 760px) {
  .footer-compact { grid-template-columns: 1fr; gap: 22px; min-height: 0; text-align: center; }
  .footer-compact-brand { align-items: center; }
  .footer-socials { justify-content: center; }
  .footer-compact-links { justify-content: center; }
}

/* Keep It Running cards: normal three-column layout without sticky scrolling. */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.platform-card,
.platform-card:nth-child(1),
.platform-card:nth-child(2),
.platform-card:nth-child(3) {
  position: relative;
  top: auto;
  z-index: auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin-bottom: 0;
}
.platform-card-header,
.platform-card-body,
.platform-card-footer {
  display: block;
  width: 100%;
  grid-column: auto;
  grid-row: auto;
}
.platform-card-header {
  min-height: 260px;
  height: auto;
  padding: 132px 32px 28px;
}
.platform-card-body {
  flex: 1;
  padding: 26px 32px 18px;
}
.platform-card-footer { padding: 18px 32px 28px; }

@media (max-width: 900px) {
  .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .platform-grid { grid-template-columns: 1fr; }
  .platform-card,
  .platform-card:nth-child(1),
  .platform-card:nth-child(2),
  .platform-card:nth-child(3) { margin-bottom: 22px; }
}

/* Keep It Running cards use a normal vertical three-column layout. */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.platform-card,
.platform-card:nth-child(1),
.platform-card:nth-child(2),
.platform-card:nth-child(3) {
  position: relative;
  top: auto;
  z-index: auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin-bottom: 0;
}
.platform-card-header,
.platform-card-body,
.platform-card-footer {
  display: block;
  width: 100%;
  grid-column: auto;
  grid-row: auto;
}
.platform-card-header {
  min-height: 260px;
  height: auto;
  padding: 132px 32px 28px;
}
.platform-card-body {
  flex: 1;
  padding: 26px 32px 18px;
}
.platform-card-footer { padding: 18px 32px 28px; }

@media (max-width: 900px) {
  .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .platform-grid { grid-template-columns: 1fr; }
  .platform-card,
  .platform-card:nth-child(1),
  .platform-card:nth-child(2),
  .platform-card:nth-child(3) { margin-bottom: 22px; }
}

/* Keep It Running: regular three-column practice cards, no sticky scrolling. */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.platform-card,
.platform-card:nth-child(1),
.platform-card:nth-child(2),
.platform-card:nth-child(3) {
  position: relative;
  top: auto;
  z-index: auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin-bottom: 0;
  border-radius: 0;
}
.platform-card-header,
.platform-card-body,
.platform-card-footer {
  display: block;
  width: 100%;
}
.platform-card-header {
  min-height: 260px;
  padding: 132px 32px 28px;
}
.platform-card-body {
  flex: 1;
  padding: 26px 32px 18px;
}
.platform-card-footer {
  padding: 18px 32px 28px;
}

@media (max-width: 900px) {
  .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .platform-grid { grid-template-columns: 1fr; }
  .platform-card,
  .platform-card:nth-child(1),
  .platform-card:nth-child(2),
  .platform-card:nth-child(3) { min-height: 0; margin-bottom: 22px; }
}
.platform-card-header {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 72px 54px 72px clamp(190px,15vw,245px);
  border: 0;
  background: transparent;
}
.platform-card .platform-icon { width: 46px; height: 46px; margin-bottom: 22px; border-radius: 11px; }
.platform-card .platform-tag { margin-bottom: 14px; background: rgba(7,97,188,.08); }
.platform-card-title { max-width: 25ch; font-size: clamp(1.5rem,2vw,3rem); line-height: 1.05; }
.platform-card-body {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 80px 10px 0px;
}
.platform-desc { max-width: 54ch; margin-bottom: 20px; color: #24364a; font-size: .9rem; line-height: 1.5; }
.platform-capabilities { display: grid; 
  /* grid-template-columns: repeat(2,minmax(0,1fr));  */
  gap: 5px 28px; }
.capability-item { color: #172a3d; font-size: 1rem; font-weight: 600; }
.platform-card-footer {
  grid-column: 2;
  grid-row: 2;
  padding: 0px 72px 54px 0px;
  border: 0;
  background: transparent;
}
.platform-cta-label { font-size: .9rem; }

/* 4. Three Practices: dark horizontal editorial section. */
#why-one-partner { padding-top: 72px; padding-bottom: 40px; background: #0b172d; color: #fff; }
#why-one-partner .section-block-head {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: end;
  gap: 54px;
  margin-bottom: 25px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(42,173,236,.55);
  text-align: left;
}
#why-one-partner .section-block-eyebrow { grid-column: 1 / -1; margin-bottom: -20px; color: #52c5f6; }
#why-one-partner .section-block-title { max-width: 50ch; margin: 0; color: #fff; font-size: clamp(2.3rem,3vw,3.8rem); }
#why-one-partner .section-block-title .text-blue { color: #35bdf7; }
#why-one-partner .section-block-lede { margin: 0; max-width: 60ch; color: #aebad0; }
#why-one-partner .locations-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 0; counter-reset: practice-point; }
#why-one-partner .location-card {
  counter-increment: practice-point;
  min-height: 245px;
  padding: 32px 28px !important;
  border: 0;
  border-right: 1px solid rgba(180,206,230,.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
}
#why-one-partner .location-card:last-child { border-right: 0; }
#why-one-partner .location-card::before {
  content: "0" counter(practice-point);
  display: block;
  width: auto;
  height: 2px;
  margin-bottom: 38px;
  background: transparent;
  color: #31b8f2;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .15em;
  width: fit-content;
  background: #31b8f2;
}
#why-one-partner .loc-body { padding: 0; }
#why-one-partner .loc-country { margin-bottom: 14px; color: #fff; font-size: 1rem; font-weight: 700;}
#why-one-partner .loc-region { color: #aebad0; font-size: .83rem; line-height: 1.7; }


@media (max-width: 1100px) {
  .hero-card { width: 56%; }
  .hero-bg { left: 0; width: 100%; opacity: .82; }
  .hero-visual { right: -20px; width: 54%; opacity: .9; transform: none; }
  .hero-title { font-size: clamp(2.85rem,4.4vw,3.4rem); }
  .hero-proof-item { padding: 0 12px; font-size: .68rem; }
  .recent-works-track { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .case-card:nth-child(4n) { border-right: 1px solid #dce7ef; }
  .case-card:nth-child(2n) { border-right: 0; }
  .case-card:nth-child(n+3) { border-top: 1px solid #dce7ef; }
  .platform-card-header { padding-left: 180px; }
  #why-one-partner .locations-grid { grid-template-columns: repeat(2,1fr); }
  #why-one-partner .location-card:nth-child(2) { border-right: 0; }
  #why-one-partner .location-card:nth-child(-n+2) { border-bottom: 1px solid rgba(180,206,230,.16); }
  .contact-offices-layout { grid-template-columns: 1fr; }
  .office-cards-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 760px) {
  .hero { min-height: 760px; }
  .hero-bg { left: 0; width: 100%; opacity: .20; }
  .hero-bg::after { background: linear-gradient(90deg,#fff 0%,rgba(255,255,255,.88) 54%,rgba(255,255,255,.5)); }
  .hero-overlay { padding-top: 54px; padding-bottom: 54px; }
  .hero-card { width: 100%; }
  .hero-visual { display: none; }
  .hero-title { max-width: none; font-size: clamp(1.75rem,7.5vw,3rem); }
  .hero-title-line { white-space: nowrap; }
  .hero-proofs { grid-template-columns: 1fr; gap: 14px; padding-top: 20px; }
  .hero-proof-item,
  .hero-proof-item:first-child,
  .hero-proof-item:last-child {
    width: 100%;
    padding: 0;
    border-right: 0;
  }
  .recent-works-track { grid-template-columns: 1fr; }
  .case-card,
  .case-card:nth-child(2n),
  .case-card:nth-child(4n) { border-right: 0; border-top: 0; }
  .case-card:first-child { border-top: 0; }
  .platforms-section { padding-bottom: 76px; }
  .platform-card,
  .platform-card:nth-child(1),
  .platform-card:nth-child(2),
  .platform-card:nth-child(3) {
    position: relative;
    top: auto;
    display: block;
    min-height: 0;
    margin: 0 0 22px;
    border-radius: 14px;
  }
  .platform-card::before { left: 24px; top: 42px; font-size: 5.2rem; transform: none; }
  .platform-card-header { min-height: 250px; padding: 118px 24px 30px; }
  .platform-card-body { padding: 30px 24px; }
  .platform-capabilities { grid-template-columns: 1fr; }
  .platform-card-footer { padding: 20px 24px 28px; }
  #why-one-partner .section-block-head { grid-template-columns: 1fr; gap: 20px; }
  #why-one-partner .section-block-eyebrow { grid-column: auto; margin-bottom: 0; }
  #why-one-partner .locations-grid { grid-template-columns: 1fr; }
  #why-one-partner .location-card { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(180,206,230,.16) !important; }
  #why-one-partner .location-card:last-child { border-bottom: 0 !important; }
  .contact-offices-layout { display: block; }
  .contact-form-panel { padding: 28px 20px; border-radius: 18px; }
  .offices-panel { margin-top: 66px; }
  .office-cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .office-cards-grid { grid-template-columns: 1fr; }
  .office-card { min-height: 210px; }
}

/* =========================================================
   Final requested refinements
   500px banner · work carousel · editorial insights
   ========================================================= */

/* Theme-positive actions */
.btn-primary,
.hero-actions .btn-primary,
.footer-cta {
  background: var(--brand, #0761bc);
  border-color: var(--brand, #0761bc);
  color: #fff;
  box-shadow: 0 10px 24px rgba(7,97,188,.20);
}
.btn-primary:hover,
.hero-actions .btn-primary:hover,
.footer-cta:hover {
  background: #034e99;
  border-color: #034e99;
}

/* Compact reference-matched hero */
.hero-viewport {
  min-height: 0;
}
.hero {
  flex: none;
  height: 500px;
  min-height: 500px;
}
.hero-overlay {
  padding-top: 60px;
  padding-bottom: 10px;
}
.hero-card {
  width: min(820px,57%);
}
.hero-eyebrow {
  display: none;
}
.hero-title {
  margin-bottom: 20px;
  font-size: clamp(2.8rem,4vw,3.55rem);
}
.hero-subtitle {
  max-width: 75ch;
  font-size: .94rem;
  line-height: 1.58;
  padding-right: 20ch;
}
.hero-actions {
  margin-top: 19px;
}
.hero-actions .btn-lg {
  min-height: 46px;
  padding: 0 22px;
}
.hero-proofs {
  margin-top: 20px;
  padding-top: 20px;
}
.hero-proof-item {
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  line-height: 1.42;
}
.hero-ui-card {
  width: 150px;
  min-width: 150px;
  min-height: 132px;
  align-items: flex-start;
  flex-direction: column;
  gap: 13px;
  padding: 18px 20px;
  border-radius: 20px;
}
.hero-ui-icon {
  flex-basis: 32px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
}
.hero-ui-card div {
  gap: 5px;
}
.hero-ui-card strong {
  font-size: .94rem;
}
.hero-ui-card small {
  max-width: 18ch;
  font-size: .7rem;
  line-height: 1.45;
}
.hero-ui-card--sybase div,
.hero-ui-card--oracle div {
  max-width: 12ch;
}
.hero-ui-card--pb {
  left: 4%;
  top: 5%;
}
.hero-ui-card--sybase {
  right: 0;
  top: 5%;
}
.hero-ui-card--oracle {
  right: 1%;
  bottom: 6%;
  min-width: 150px;
  min-height: 170px;
}
.hero-ui-score {
  align-self: flex-end;
  margin: auto 0 0;
  font-size: 1.15rem;
}

/* Four visible cards with horizontal paging for remaining work */
.recent-works-slider-wrap {
  overflow: hidden;
  padding-bottom: 72px;
}
.recent-works-track {
  display: flex;
  grid-template-columns: none;
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  transform: none !important;
}
.recent-works-track::-webkit-scrollbar {
  display: none;
}
.recent-works-track .case-card {
  flex: 0 0 calc((100% - 54px) / 4);
  width: auto;
  min-width: 0;
  min-height: 365px;
  border: 0;
  border-right: 1px solid #dce7ef;
  border-radius: 0;
  scroll-snap-align: start;
}
.recent-works-track .case-card:hover {
  border-color: #dce7ef;
  background: #f8fbfd;
  box-shadow: 0 18px 45px rgba(16,75,120,.10);
  transform: translateY(-4px);
}
.recent-works-controls {
  bottom: 12px;
  display: flex;
  gap: 12px;
}
.recent-works-arrow {
  width: 30px;
  height: 30px;
  border: 1px solid var(--brand, #0761bc);
  background: var(--brand, #0761bc);
  color: #fff;
}
.recent-works-arrow:disabled {
  border-color: #c9d9e5;
  background: #eef4f8;
  color: #8194a5;
  opacity: 1;
}
.recent-works-pagination {
  display: flex;
  align-items: center;
  gap: 7px;
  display: none;
}
.recent-work-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c8d7e3;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.recent-work-dot.is-active {
  width: 24px;
  background: var(--brand, #0761bc);
}

/* Insights editorial layout based on reference image 3 */
#insights {
  background: #fff;
}
.insights-editorial-head {
  display: grid;
  grid-template-columns: 1.5fr .92fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 15px;
}
.insights-editorial-head .section-block-eyebrow {
  margin-bottom: 16px;
}
.insights-editorial-head .section-block-title {
  max-width: 25ch;
  font-size: clamp(2rem,2vw,4.35rem);
}
.insights-editorial-head .section-block-lede {
  max-width: 49ch;
  margin: 0 0 7px auto;
  font-size: 1.08rem;
  line-height: 1.62;
}
#insights .insights-grid {
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 30px;
  max-width: none;
}
.insight-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dce7ef;
}
.insight-tab {
  min-height: 38px;
  padding: 0 17px;
  border: 1px solid #c9d9e5;
  border-radius: 999px;
  background: #fff;
  color: #53677c;
  cursor: pointer;
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.insight-tab:hover,
.insight-tab:focus-visible { border-color: var(--brand); color: var(--brand); }
.insight-tab.is-active { border-color: var(--brand); background: var(--brand); color: #fff; }
.insight-card[hidden] { display: none; }
#insights .insight-card {
  min-height: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
#insights a.insight-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-5px);
}
#insights .insight-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
  background: #eaf4fb;
}
#insights .insight-thumb img,
#insights .insight-illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#insights .insight-type-label {
  /* position: absolute;
  z-index: 3;
  left: 20px;
  top: 20px; */
  margin: 0;
  padding: 4px 15px;
  border: 0;
  border-radius: 999px;
  background: var(--brand, #0761bc);
  color: #fff;
  font-size: .72rem;
  letter-spacing: .04em;
}
#insights .insight-body {
  padding: 22px 0 0;
}
#insights .insight-title {
    margin-bottom: 12px;
    color: #172033;
    font-size: clamp(1rem, 1vw, 1.75rem);
    font-weight: 600;
    line-height: 1.24;
    margin-top: 5px;
}
#insights .insight-summary {
  margin-bottom: 18px;
  color: #667085;
  font-size: .94rem;
  line-height: 1.62;
}
#insights .insight-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--brand, #0761bc);
  font-size: .88rem;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .hero-card {
    width: 63%;
  }
  .hero-title {
    font-size: clamp(2.65rem,4.6vw,3.2rem);
  }
  .hero-ui-card {
    transform: scale(.84);
  }
  .hero-ui-card--pb {
    left: 10%;
    transform-origin: top left;
  }
  .hero-ui-card--sybase,
  .hero-ui-card--oracle {
    right: 3%;
    transform-origin: top right;
  }
  .recent-works-track .case-card {
    flex-basis: calc((100% - 18px) / 2);
  }
  #insights .insights-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 760px) {
  .hero {
    height: auto;
    min-height: 680px;
  }
  .hero-3d-scene { display: none; }
  .hero-bg::after { background: linear-gradient(145deg, rgba(4,18,36,.94), rgba(6,42,75,.82)); }
  .hero-overlay {
    position: relative;
    min-height: 680px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .hero-card {
    width: 100%;
  }
  .hero-title {
    font-size: clamp(1.75rem,7.5vw,3rem);
  }
  .platforms-section .ai-section-title { white-space: normal; }
  .hero-proof-icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }
  .recent-works-track .case-card {
    flex-basis: 100%;
  }
  .insights-editorial-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }
  .insights-editorial-head .section-block-title {
    font-size: clamp(2.3rem,11vw,3.2rem);
  }
  .insights-editorial-head .section-block-lede {
    margin-left: 0;
    font-size: .96rem;
  }
  #insights .insights-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .insight-tabs { gap: 8px; margin-bottom: 24px; }
  .insight-tab { flex: 1 1 calc(50% - 8px); padding: 0 10px; }
}

/* Animated depth treatment for the primary banner. */
.hero {
  background:
    radial-gradient(circle at 78% 48%, rgba(18,168,231,.26), transparent 30%),
    radial-gradient(circle at 94% 12%, rgba(255,170,64,.14), transparent 22%),
    linear-gradient(118deg, #041224 0%, #072343 56%, #062a4b 100%);
}
.hero-bg img {
  opacity: .28;
  mix-blend-mode: luminosity;
  object-position: 86% center;
}
.hero-bg::after {
  background: linear-gradient(90deg, rgba(4,18,36,.97) 0%, rgba(4,18,36,.9) 40%, rgba(4,18,36,.44) 70%, rgba(4,18,36,.12) 100%);
}
.hero-3d-scene { z-index: 2; opacity: .98; }
.hero-visual {
  top: 50%;
  right: max(30px, calc((100vw - 1248px) / 2));
  width: 290px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  transform: translateY(-50%);
}
.hero-ui-card,
.hero-ui-card--pb,
.hero-ui-card--sybase,
.hero-ui-card--oracle {
  position: relative;
  inset: auto;
  width: 250px;
  min-width: 0;
  min-height: 0;
  transform: none;
}
.hero-ui-card--sybase { margin-right: 28px; }
.hero-ui-card--oracle { width: 270px; margin-right: 0; }
.hero-title { color: #fff; }
.hero-title .text-blue { color: #5dc9f6; }
.hero-subtitle { color: rgba(231,242,252,.8); }
.hero-proof-item { color: rgba(240,248,255,.88); }
.hero-proof-icon { background: rgba(39,184,244,.18); border-color: rgba(93,201,246,.5); color: #8de3ff; }
.hero-actions .btn-primary { background: #0761bc; box-shadow: 0 14px 30px rgba(6,118,202,.28); }
.hero-actions .btn-outline { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.34); color: #fff; }
.hero-actions .btn-outline:hover { background: #fff; border-color: #fff; color: var(--ink); }

@media (max-width: 760px) {
  .hero-bg img { opacity: .22; }
  .hero-visual { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-3d-scene *,
  .hero-3d-scene::before,
  .hero-3d-scene::after {
    animation: none;
  }
}

/* Final image banner sizing must follow the legacy hero overrides above. */
.hero {
  height: 560px;
  min-height: 560px;
  background: #07182f;
}
.hero-bg,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg img {
  object-fit: cover;
  object-position: 72% center;
  opacity: .76;
}
.hero-bg::after {
  background: linear-gradient(90deg, rgba(4,18,36,.96) 0%, rgba(4,18,36,.86) 38%, rgba(4,18,36,.48) 67%, rgba(4,18,36,.22) 100%), linear-gradient(0deg, rgba(4,18,36,.45), transparent 52%);
}
.hero-overlay {
  justify-content: flex-start;
  text-align: left;
  padding: 30px max(36px, calc((100vw - 1248px) / 2));
  align-items: flex-start;
}
.hero-card {
  width: min(680px, 57%);
  margin: 0;
}
.hero-actions { justify-content: flex-start; }
.hero-proofs { max-width: 820px; margin-left: 0; margin-right: 0; }
.hero-proof-item { justify-content: flex-start; text-align: left; }
.hero-visual,
.hero-3d-scene { display: none !important; }

@media (max-width: 760px) {
  .hero { height: 680px; min-height: 680px; }
  .hero-bg img { object-position: 70% center; opacity: .48; }
  .hero-overlay { padding: 36px 20px; }
  .hero-card { width: 100%; }
  .hero-title-line { white-space: normal; }
  .hero-proofs { grid-template-columns: 1fr; }
  .hero-proof-item,
  .hero-proof-item:first-child,
  .hero-proof-item:last-child { justify-content: flex-start; padding: 0; }
  .hero-platform-strip { position: absolute; grid-template-columns: 1fr; }
  .hero-platform-link { justify-content: flex-start; min-height: 58px; border-right: 0; border-bottom: 1px solid rgba(190,225,244,.22); padding-left: 24px; }
  .hero-platform-link:last-child { border-bottom: 0; }
}

/* Dark image-backed practice cards with a distinct color for each platform. */
.platform-card:nth-child(1) { background: #062b3d; }
.platform-card:nth-child(2) { background: #102746; }
.platform-card:nth-child(3) { background: #3a2423; }
.platform-card::after {
  z-index: 0;
  opacity: 1;
  background-size: cover;
  background-position: center;
}
.platform-card:nth-child(1)::after {
  background-image: linear-gradient(90deg, rgba(2,24,37,.99), rgba(3,43,60,.94) 48%, rgba(4,83,98,.78)), url("https://images.unsplash.com/photo-1517336714739-489689fd1ca8?auto=format&fit=crop&w=1400&q=80"), url("../images/banner.png");
  background-position: 70% center;
}
.platform-card:nth-child(2)::after {
  background-image: linear-gradient(90deg, rgba(7,20,43,.99), rgba(11,38,75,.94) 48%, rgba(16,70,121,.78)), url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1400&q=80"), url("../images/banner.png");
  background-position: 82% center;
}
.platform-card:nth-child(3)::after {
  background-image: linear-gradient(90deg, rgba(42, 18, 19, .99), rgba(66, 27, 25, .94) 48%, rgb(63 16 0 / 78%)), url(https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1400&q=80), url(../images/banner.png);
  background-position: 94% center;
}
.platform-card .platform-card-title,
.platform-card .platform-desc,
.platform-card .capability-item { color: #f4f8fc; }
.platform-card .platform-card-title { text-shadow: 0 2px 18px rgba(0,0,0,.25); }
.platform-card .platform-desc { color: rgba(242,248,252,.84); }
.platform-card .capability-item { color: rgba(242,248,252,.9); }
.platform-card .platform-tag { background: rgba(255,255,255,.12); color: #bdefff; width: fit-content; }
.platform-card .capability-dot { background: #62d6f5; }
.platform-card:nth-child(3) .capability-dot { background: #ffc477; }
.platform-card .platform-card-footer { color: #fff; }
.platform-card .platform-cta-label {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(132,224,249,.54);
  border-radius: 6px;
  background: #087fa8;
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
  transition: background-color .2s ease, transform .2s ease;
}
.platform-card:nth-child(2) .platform-cta-label { background: #176ac0; border-color: rgba(142,199,255,.6); }
.platform-card:nth-child(3) .platform-cta-label { background: #bc642d; border-color: rgba(255,207,137,.62); color: #fff; }
.platform-card:hover .platform-cta-label { background: #0b9cc9; transform: translateX(3px); }
.platform-card:nth-child(2):hover .platform-cta-label { background: #2584dd; }
.platform-card:nth-child(3):hover .platform-cta-label { background: #d77a37; }
.platform-card .platform-cta-arrow { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.26); }
.platform-card .platform-cta-arrow svg path { stroke: #fff; }
.platform-card::before {
  z-index: 1;
  color: transparent;
  -webkit-text-stroke-color: rgba(224,245,255,.42);
}

/* Final card layout override: regular three-column cards, no sticky scrolling. */
.platform-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.platform-card,
.platform-card:nth-child(1),
.platform-card:nth-child(2),
.platform-card:nth-child(3) {
  position: relative;
  top: auto;
  z-index: auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin-bottom: 0;
  border-radius: 20px;
}
.platform-card-header,
.platform-card-body,
.platform-card-footer {
  display: block;
  width: 100%;
  grid-column: auto;
  grid-row: auto;
}
.platform-card-header { min-height: 170px; height: auto; padding: 30px 32px 5px 32px; }
.platform-card-body { flex: 1; padding: 15px 32px 0px 32px; }
.platform-card-footer { padding: 18px 32px 28px; }

@media (max-width: 900px) {
  .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .platform-grid { grid-template-columns: 1fr; }
  .platform-card,
  .platform-card:nth-child(1),
  .platform-card:nth-child(2),
  .platform-card:nth-child(3) { margin-bottom: 22px; }
}




/* Gravity Forms: reference-matched rounded fields and submit button. */
.gform_wrapper { width: 100%; margin: 0 !important; color: #526176; font-family: var(--font-body); }
.gform_wrapper .gform_fields { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 30px; }
.gform_wrapper .gfield { min-width: 0; margin: 0 !important; padding: 0 !important; }
.gform_wrapper .gfield--width-full { grid-column: 1 / -1; }
.gform_wrapper .gfield_label { display: block; margin: 0 0 5px !important; color: #526176; font-size: .8rem !important; font-weight: 500 !important; letter-spacing: .14em; line-height: 1.2 !important; text-transform: inherit; }
.gform_wrapper .gfield_required { color: #e11d2e; }
.gform_wrapper input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.gform_wrapper select,
.gform_wrapper textarea { width: 100% !important; min-height: 40px; padding: 0 10px !important; border: 1px solid #aaaaaa !important; border-radius: 6px !important; background: #fefefe !important; color: #172033 !important; font: inherit !important; font-size: .8rem !important; outline: none; box-shadow: none !important; transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease; margin: 0; font-weight: 600 !important;}
.gform_wrapper textarea { min-height: 58px; padding-top: 18px !important; resize: vertical; height: 120px; }
.gform_wrapper select { padding-right: 44px !important; }
.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder { color: #97a2b2; opacity: 1; }
.gform_wrapper input:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus { border-color: #8dbfe0 !important; background: #fff !important; box-shadow: 0 0 0 4px rgba(7,97,188,.08) !important; }
.gform_wrapper .gform_footer { display: flex; justify-content: flex-end; margin: 28px 0 0 !important; padding: 0 !important; }
.gform_wrapper .gform_button { min-width: 228px; min-height: 52px; margin: 0 !important; padding: 0 20px !important; border: 0 !important; border-radius: 8px !important; background: var(--brand) !important; color: #fff !important; cursor: pointer; font: inherit !important; font-size: 1.05rem !important; font-weight: 700 !important; transition: background-color .2s ease, transform .2s ease; }
.gform_wrapper .gform_button:hover { background: var(--brand) !important; transform: translateY(-2px); }
.gform_wrapper .validation_message,
.gform_wrapper .gform_validation_errors { color: #c90707; }
div#field_2_3{grid-column: 1 / -1;}
@media (max-width: 640px) {
  .gform_wrapper .gform_fields { grid-template-columns: 1fr; gap: 20px !important; }
  .gform_wrapper .gfield--width-half,
  .gform_wrapper .gfield--width-full { grid-column: 1; }
  .gform_wrapper .gform_footer { justify-content: stretch; }
  .gform_wrapper .gform_button { width: 100%; }
}

.header-v1 #navigation .sub-menu{
  top: 60px !important;
}

.case-studies-empty{
  text-align: center;
}

.case-studies--service .service-case-card__visual{
      min-height: 150px !important;
}
.case-studies--service .service-case-card__body{
  padding: 20px 20px 20px !important;
}

.case-studies--service .service-case-card__service{
  width: fit-content !important;
}
.case-studies--service .service-case-card__notes{
  margin: 0px !important;
}

#field_1_23{
  display: none;
}
#field_1_3{
  grid-column: 1 / -1;
}

.gform_validation_errors{
  display: none !important;
}

