    :root {
      --navy: #173356;
      --navy-deep: #102742;
      --copper: #b87333;
      --copper-soft: #c98a52;
      --slate: #66758a;
      --slate-light: #eef2f6;
      --ink: #1d2630;
      --white: #ffffff;
      --border: rgba(23, 51, 86, 0.12);
      --shadow: 0 20px 60px rgba(16, 39, 66, 0.12);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --radius-md: 14px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fa 100%);
      line-height: 1.5;
      position: relative;
      min-height: 100vh;
      overflow-x: hidden;
    }
    
    body::before,
    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      will-change: opacity, transform;
    }
    
    body::before {
      background:
        radial-gradient(circle at 15% 5%, rgba(184, 115, 51, 0.3), transparent 30%);
      animation: copperPulse 8s ease-in-out infinite;
    }
    
    body::after {
      background:
        radial-gradient(circle at 85% 5%, rgba(23, 51, 86, 0.3), transparent 28%);
      animation: navyPulse 8s ease-in-out infinite;
    }
    
    @keyframes copperPulse {
      0%, 100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
      }
      25% {
        opacity: 0.85;
        transform: translate3d(1.5%, 1%, 0) scale(1.02);
      }
      50% {
        opacity: 0.55;
        transform: translate3d(3%, 2%, 0) scale(1.04);
      }
      75% {
        opacity: 0.8;
        transform: translate3d(1.5%, 1%, 0) scale(1.02);
      }
    }
    
    @keyframes navyPulse {
      0%, 100% {
        opacity: 0.55;
        transform: translate3d(0, 0, 0) scale(1);
      }
      25% {
        opacity: 0.8;
        transform: translate3d(-1.5%, 0.5%, 0) scale(1.02);
      }
      50% {
        opacity: 1;
        transform: translate3d(-3%, 1.5%, 0) scale(1.04);
      }
      75% {
        opacity: 0.78;
        transform: translate3d(-1.5%, 0.5%, 0) scale(1.02);
      }
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      width: min(calc(100% - 32px), var(--max));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(16px);
      background: rgba(255,255,255,0.8);
      border-bottom: 1px solid rgba(23, 51, 86, 0.08);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 16px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .brand-mark {
      position: relative;
      width: 54px;
      height: 54px;
      flex: 0 0 54px;
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 1.5px solid rgba(23, 51, 86, 0.18);
    }

    .brand-mark::after {
      inset: 8px;
      border-color: rgba(184, 115, 51, 0.28);
    }

    .needle {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
    }

    .needle svg { width: 54px; height: 54px; }

    .brand-copy {
      min-width: 0;
    }

    .brand-title {
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      color: var(--navy-deep);
      white-space: nowrap;
    }

    .brand-subtitle {
      font-size: 0.72rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--slate);
      margin-top: 2px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
      justify-content: flex-end;
      font-size: 0.95rem;
      color: var(--slate);
    }

    .nav-links a:hover { color: var(--navy); }

    .nav-cta {
      padding: 12px 18px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--navy), var(--navy-deep));
      color: var(--white) !important;
      box-shadow: 0 12px 28px rgba(16, 39, 66, 0.18);
    }

    .hero {
      padding: 64px 0 44px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.12fr 0.88fr;
      gap: 32px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(184, 115, 51, 0.18);
      background: rgba(255,255,255,0.72);
      color: var(--copper);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .hero h1 {
      margin: 18px 0 16px;
      font-size: clamp(2.8rem, 6vw, 5.1rem);
      line-height: 0.96;
      letter-spacing: -0.045em;
      color: var(--navy-deep);
    }

    .hero h1 span {
      color: var(--copper);
      display: block;
    }

    .hero p {
      font-size: 1.08rem;
      color: #4f5f73;
      max-width: 640px;
      margin: 0 0 28px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 20px;
      border-radius: 999px;
      font-weight: 700;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn-primary {
      color: var(--white);
      background: linear-gradient(135deg, var(--navy), var(--navy-deep));
      box-shadow: 0 16px 34px rgba(16, 39, 66, 0.2);
    }

    .btn-secondary {
      color: var(--navy);
      background: rgba(255,255,255,0.85);
      border: 1px solid rgba(23, 51, 86, 0.14);
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 8px;
    }

    .metric {
      background: rgba(255,255,255,0.8);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 18px;
      box-shadow: var(--shadow);
    }

    .metric strong {
      display: block;
      font-size: 1.45rem;
      color: var(--navy-deep);
      letter-spacing: -0.03em;
    }

    .metric span {
      color: var(--slate);
      font-size: 0.92rem;
    }

    .hero-card {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.78));
      border: 1px solid rgba(23, 51, 86, 0.1);
      border-radius: 34px;
      box-shadow: var(--shadow);
      padding: 15px;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: auto -40px -90px auto;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(184,115,51,0.16), transparent 62%);
    }

    .compass-wrap {
      position: relative;
      height: 100%;
      display: grid;
      place-items: center;
      isolation: isolate;
    }

    .compass-ring {
      position: absolute;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      border: 2px solid rgba(23, 51, 86, 0.12);
      z-index: 0;
    }

    .compass-ring::before,
    .compass-ring::after {
      content: "";
      position: absolute;
      inset: 18px;
      border-radius: 50%;
      border: 1px solid rgba(184, 115, 51, 0.18);
    }

    .compass-svg {
      width: min(100%, 360px);
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 28px 50px rgba(16, 39, 66, 0.16));
    }

    .overlay-word {
      position: absolute;
      z-index: 2;
      display: grid;
      gap: 4px;
      text-align: center;
      padding: 16px 20px;
      background: rgba(255,255,255,0.76);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.65);
      border-radius: 18px;
      box-shadow: 0 20px 40px rgba(16, 39, 66, 0.12);
    }

    .overlay-word strong {
      font-size: clamp(2rem, 4vw, 3.4rem);
      letter-spacing: -0.05em;
      color: var(--navy-deep);
      line-height: 0.9;
    }

    .overlay-word span {
      font-size: 0.84rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--copper);
      font-weight: 700;
    }

    section {
      padding: 40px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .section-kicker {
      color: var(--copper);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.82rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    h2 {
      margin: 0;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1;
      letter-spacing: -0.04em;
      color: var(--navy-deep);
    }

    .section-copy {
      color: var(--slate);
      max-width: 670px;
      font-size: 1rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .service-card {
      position: relative;
      overflow: hidden;
      background: rgba(255,255,255,0.86);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow);
      min-height: 220px;
    }

    .service-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--copper), var(--navy));
    }

    .service-index {
      font-size: 0.8rem;
      color: var(--copper);
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .service-card h3 {
      margin: 0 0 10px;
      color: var(--navy-deep);
      font-size: 1.22rem;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    .service-card p {
      margin: 0;
      color: #55657a;
      font-size: 0.96rem;
    }

    .approach {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-top: 14px;
    }

    .approach-step {
      background: rgba(255,255,255,0.86);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 22px 18px;
      box-shadow: var(--shadow);
    }

    .approach-step strong {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(184,115,51,0.12);
      color: var(--copper);
      margin-bottom: 14px;
      font-size: 0.95rem;
    }

    .approach-step h3 {
      margin: 0 0 8px;
      font-size: 1.06rem;
      color: var(--navy-deep);
    }

    .approach-step p {
      margin: 0;
      color: var(--slate);
      font-size: 0.94rem;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 26px;
      align-items: start;
    }

    .faq-intro,
    .faq-list {
      background: rgba(255,255,255,0.84);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .faq-intro p {
      color: var(--slate);
      margin: 0 0 18px;
    }

    .faq-badge {
      display: inline-flex;
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(184,115,51,0.12);
      color: var(--copper);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .faq-item {
      border-bottom: 1px solid rgba(23, 51, 86, 0.08);
      padding: 14px 0;
    }

    .faq-item:last-child { border-bottom: 0; }

    details summary {
      list-style: none;
      cursor: pointer;
      font-weight: 700;
      color: var(--navy-deep);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    details summary::-webkit-details-marker { display: none; }

    details summary::after {
      content: "+";
      flex: 0 0 auto;
      font-size: 1.3rem;
      color: var(--copper);
      transition: transform 0.2s ease;
    }

    details[open] summary::after {
      content: "–";
    }

    details p {
      margin: 12px 0 0;
      color: var(--slate);
      font-size: 0.95rem;
    }

    .cta {
      padding: 48px 0 70px;
    }

    .cta-card {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--navy-deep), var(--navy));
      color: var(--white);
      border-radius: 32px;
      padding: 38px;
      box-shadow: 0 26px 70px rgba(16, 39, 66, 0.26);
    }

    .cta-card::before {
      content: "";
      position: absolute;
      width: 320px;
      height: 320px;
      right: -70px;
      bottom: -120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(184,115,51,0.35), transparent 62%);
    }

    .cta-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.25fr 0.75fr;
      gap: 24px;
      align-items: center;
    }

    .cta h2,
    .cta p,
    .cta a { color: var(--white); }

    .cta p {
      max-width: 640px;
      opacity: 0.88;
      margin: 14px 0 0;
    }

    .contact-panel {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 24px;
      padding: 24px;
      backdrop-filter: blur(10px);
    }

    .contact-label {
      display: block;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.72);
      margin-bottom: 8px;
      font-weight: 700;
    }

    .contact-link {
      display: block;
      font-size: 1.18rem;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .contact-note {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.76);
      margin-top: 10px;
    }

    footer {
      padding: 18px 0 36px;
      color: var(--slate);
      text-align: center;
      font-size: 0.9rem;
    }

    @media (max-width: 1080px) {
      .hero-grid,
      .faq-wrap,
      .cta-grid,
      .services-grid,
      .approach {
        grid-template-columns: 1fr;
      }

      .hero-card { min-height: 440px; }
      .hero-metrics { grid-template-columns: 1fr; }
    }

    @media (max-width: 720px) {
      .nav {
        flex-direction: column;
        align-items: stretch;
      }

      .nav-links {
        justify-content: flex-start;
        gap: 14px;
      }

      .hero {
        padding-top: 34px;
      }

      .hero-card {
        padding: 15px;
      }

      .compass-ring {
        width: 260px;
        height: 260px;
      }

      .overlay-word strong {
        font-size: 1.9rem;
      }

      .service-card,
      .faq-intro,
      .faq-list,
      .cta-card {
        padding: 22px;
      }
      .cta-card {
        padding: 20px;
        border-radius: 24px;
      }
    
      .cta-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }
    
      .contact-panel {
        padding: 18px;
      }
    
      .contact-link {
        font-size: 1rem;
      }
    }
    
    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 12px;
    }
    
    .social-links a {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.18);
      color: white;
      transition: all 0.25s ease;
    }
    
    .social-links svg {
      width: 18px;
      height: 18px;
    }
    
    .social-links a:hover {
      background: rgba(255,255,255,0.22);
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(184, 115, 51, 0.25);
    }
    
    .process-chevron-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
  align-items: stretch;
}

.process-chevron-step {
  position: relative;
  min-height: 220px;
  color: var(--white);
  isolation: isolate;
  filter: drop-shadow(0 16px 28px rgba(16, 39, 66, 0.14));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.process-chevron-step:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 22px 36px rgba(16, 39, 66, 0.18));
}

/* Base chevron shape */
.process-chevron-step::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(
    0 0,
    82% 0,
    100% 50%,
    82% 100%,
    0 100%,
    12% 50%
  );
  z-index: -2;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 62%, #264d73 100%);
}

/* angled accent panel */
.process-chevron-step::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 30%;
  height: 100%;
  clip-path: polygon(38% 0, 100% 50%, 38% 100%, 0 100%, 62% 50%, 0 0);
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
}

.process-chevron-inner {
  height: 100%;
  padding: 28px 34px 28px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.process-chevron-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 58px;
  padding: 8px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
}

.process-chevron-step h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.2;
  color: var(--white);
}

.process-chevron-step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.86);
  max-width: 24ch;
}

/* Brand-aligned variation per step */
.process-chevron-step:nth-child(1)::before {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 72%, #254e77 100%);
}

.process-chevron-step:nth-child(2)::before {
  background: linear-gradient(135deg, #21486f 0%, var(--navy) 68%, #3a638a 100%);
}

.process-chevron-step:nth-child(3)::before {
  background: linear-gradient(135deg, #35597d 0%, #4b6e90 60%, var(--slate) 100%);
}

.process-chevron-step:nth-child(4)::before {
  background: linear-gradient(135deg, #7d5128 0%, var(--copper) 58%, var(--copper-soft) 100%);
}

.process-chevron-step:nth-child(4) p {
  color: rgba(255,255,255,0.92);
}

.process-chevron-step .process-chevron-inner::before {
  content: "";
  position: absolute;
  inset: 10px 14px 10px 14px;
  clip-path: polygon(
    0 0,
    82% 0,
    100% 50%,
    82% 100%,
    0 100%,
    12% 50%
  );
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}

/* tablet */
@media (max-width: 1100px) {
  .process-chevron-flow {
    grid-template-columns: repeat(4, minmax(260px, 1fr));
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .process-chevron-step {
    scroll-snap-align: start;
  }
}

/* mobile horizontal scroll instead of stacking */
@media (max-width: 680px) {
  .process-chevron-flow {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-template-columns: unset;
    gap: 8px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 4px 6px 10px 0;
    margin-top: 30px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .process-chevron-flow::-webkit-scrollbar {
    height: 8px;
  }

  .process-chevron-flow::-webkit-scrollbar-thumb {
    background: rgba(23, 51, 86, 0.18);
    border-radius: 999px;
  }

  .process-chevron-flow::-webkit-scrollbar-track {
    background: rgba(23, 51, 86, 0.06);
    border-radius: 999px;
  }

  .process-chevron-step {
    min-height: 190px;
    scroll-snap-align: start;
  }

  .process-chevron-inner {
    padding: 22px 24px 22px 30px;
  }

  .process-chevron-number {
    min-width: 52px;
    font-size: 0.98rem;
    margin-bottom: 14px;
  }

  .process-chevron-step h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .process-chevron-step p {
    font-size: 0.9rem;
    line-height: 1.55;
    max-width: none;
  }
}

/* very small phones */
@media (max-width: 420px) {
  .process-chevron-flow {
    grid-auto-columns: 88%;
    gap: 6px;
  }

  .process-chevron-step {
    min-height: 180px;
  }

  .process-chevron-inner {
    padding: 22px 24px 22px 51px;
  }
}

.industry-slider-wrap {
  margin-top: 42px;
  position: relative;
}

.industry-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(50% - 10px);
  gap: 20px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 6px 2px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(23, 51, 86, 0.2) transparent;
}

.industry-slider::-webkit-scrollbar {
  height: 10px;
}

.industry-slider::-webkit-scrollbar-track {
  background: rgba(23, 51, 86, 0.05);
  border-radius: 999px;
}

.industry-slider::-webkit-scrollbar-thumb {
  background: rgba(23, 51, 86, 0.18);
  border-radius: 999px;
}

.industry-slide {
  position: relative;
  min-height: 430px;
  border-radius: 28px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 24px 60px rgba(16, 39, 66, 0.14);
  isolation: isolate;
  background: var(--navy-deep);
}

.industry-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transform: scale(1.01);
  transition: transform 0.45s ease;
}

.industry-slide:hover img {
  transform: scale(1.06);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(16, 39, 66, 0.08) 0%,
      rgba(16, 39, 66, 0.22) 32%,
      rgba(16, 39, 66, 0.74) 72%,
      rgba(16, 39, 66, 0.9) 100%
    );
  z-index: 1;
}

.industry-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
}

.industry-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 56px;
  padding: 8px 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(184, 115, 51, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.industry-content h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 1.6vw, 1.8rem);
  color: var(--white);
}

.industry-content p {
  margin: 0;
  max-width: 34ch;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 980px) {
  .industry-slider {
    grid-auto-columns: 78%;
    gap: 16px;
  }

  .industry-slide {
    min-height: 390px;
  }
}

@media (max-width: 640px) {
  .industry-slider {
    grid-auto-columns: 88%;
    gap: 12px;
    padding-bottom: 12px;
  }

  .industry-slide {
    min-height: 360px;
    border-radius: 24px;
  }

  .industry-content {
    padding: 22px;
  }

  .industry-content p {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.6;
  }
}
.hero-card,
.compass-wrap {
  position: relative;
  overflow: hidden;
}

.hero-card img,
.compass-wrap img {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 640px) {
  .hero-card {
    min-height: 320px;
  }

  .compass-wrap {
    min-height: 320px;
  }
}

.industry-slider-wrap {
  margin-top: 42px;
  position: relative;
}

.industry-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(50% - 10px);
  gap: 20px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 6px 2px 14px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.industry-slider::-webkit-scrollbar {
  display: none;
}

.industry-slide {
  position: relative;
  min-height: 430px;
  border-radius: 28px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 24px 60px rgba(16, 39, 66, 0.14);
  isolation: isolate;
  background: var(--navy-deep);
}

.industry-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transform: scale(1.01);
  transition: transform 0.45s ease;
}

.industry-slide:hover img {
  transform: scale(1.06);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(16, 39, 66, 0.08) 0%,
      rgba(16, 39, 66, 0.22) 32%,
      rgba(16, 39, 66, 0.74) 72%,
      rgba(16, 39, 66, 0.9) 100%
    );
  z-index: 1;
}

.industry-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
}

.industry-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 56px;
  padding: 8px 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(184, 115, 51, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.industry-content h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 1.6vw, 1.8rem);
  color: var(--white);
}

.industry-content p {
  margin: 0;
  max-width: 34ch;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.industry-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 35px rgba(16, 39, 66, 0.18);
  cursor: pointer;
  z-index: 5;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.industry-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 22px 40px rgba(16, 39, 66, 0.22);
  background: #ffffff;
}

.industry-arrow span {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
}

.industry-arrow-left {
  left: -18px;
}

.industry-arrow-right {
  right: -18px;
}

@media (max-width: 980px) {
  .industry-slider {
    grid-auto-columns: 78%;
    gap: 16px;
  }

  .industry-slide {
    min-height: 390px;
  }

  .industry-arrow {
    width: 52px;
    height: 52px;
  }

  .industry-arrow-left {
    left: -10px;
  }

  .industry-arrow-right {
    right: -10px;
  }
}

@media (max-width: 640px) {
  .industry-slider {
    grid-auto-columns: 88%;
    gap: 12px;
    padding-bottom: 12px;
  }

  .industry-slide {
    min-height: 360px;
    border-radius: 24px;
  }

  .industry-content {
    padding: 22px;
  }

  .industry-content p {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .industry-arrow {
    width: 46px;
    height: 46px;
    top: auto;
    bottom: -6px;
    transform: none;
  }

  .industry-arrow:hover {
    transform: scale(1.05);
  }

  .industry-arrow-left {
    left: calc(50% - 56px);
  }

  .industry-arrow-right {
    right: calc(50% - 56px);
  }
}