/* ============================================
   Immunis Drawings — Corporate Landing Page
   ============================================ */

:root {
  --navy: #0A1F44;
  --navy-deep: #061528;
  --navy-mid: #122A52;
  --orange: #FF7A00;
  --orange-hover: #E86E00;
  --orange-soft: rgba(255, 122, 0, 0.12);
  --white: #FFFFFF;
  --off-white: #F4F6FA;
  --gray: #5A6577;
  --gray-light: #E6EAF0;
  --text: #0A1F44;
  --font: "Montserrat", system-ui, sans-serif;
  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 64px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 4px 16px rgba(10, 31, 68, 0.06);
  --shadow-md: 0 12px 40px rgba(10, 31, 68, 0.1);
  --shadow-lg: 0 24px 60px rgba(10, 31, 68, 0.14);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: clamp(1.75rem, 3.4vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-align: center;
  text-transform: none;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.18;
}

.section-title.light {
  color: var(--white);
}

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-eyebrow.left {
  text-align: left;
}

.section-eyebrow.light {
  color: rgba(255, 170, 80, 0.95);
}

.section-lead {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.75;
}

.section-lead.light {
  color: rgba(255, 255, 255, 0.68);
}

.section-lead.tight {
  margin-bottom: 24px;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

.section-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.14) 0%, transparent 70%);
  top: -160px;
  right: -120px;
  pointer-events: none;
  filter: blur(10px);
}

.section-glow.soft {
  background: radial-gradient(circle, rgba(10, 31, 68, 0.08) 0%, transparent 70%);
  left: -140px;
  right: auto;
  top: auto;
  bottom: -180px;
}

.text-orange {
  color: var(--orange);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition),
    box-shadow var(--transition);
}

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

.btn-orange {
  background: linear-gradient(135deg, #FF8A1A 0%, var(--orange) 55%, #E86E00 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(255, 122, 0, 0.28);
}

.btn-orange:hover {
  background: linear-gradient(135deg, #FF9A35 0%, var(--orange-hover) 100%);
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(245, 130, 32, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 10px 28px rgba(10, 31, 68, 0.22);
}

.btn-navy:hover {
  background: var(--navy-mid);
  box-shadow: 0 14px 34px rgba(0, 27, 61, 0.32);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.75rem;
}

/* Keep hero CTAs visually unchanged */
.hero .btn {
  border-radius: 4px;
}

.hero .btn-orange {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: none;
}

.hero .btn-orange:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  box-shadow: 0 8px 24px rgba(245, 130, 32, 0.35);
}

.hero .btn-outline {
  backdrop-filter: none;
  border-color: var(--white);
}

/* Header — light white bar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  padding: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(10, 31, 68, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: height var(--transition), padding var(--transition), background var(--transition), border-color var(--transition);
}

/* Floating pill when scrolled */
.site-header.scrolled {
  height: auto;
  padding: 12px 16px 0;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
  border-radius: 0;
  z-index: 1;
  transition:
    height var(--transition),
    gap var(--transition),
    padding var(--transition),
    width var(--transition),
    max-width var(--transition),
    border-radius var(--transition);
}

/* Glass plate for the scrolled pill — keeps blur off the layout root */
.header-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition);
}

.site-header.scrolled .header-inner {
  height: 48px;
  width: min(980px, calc(100% - 8px));
  max-width: 980px;
  gap: 18px;
  padding: 0 10px 0 14px;
  border-radius: 16px;
}

.site-header.scrolled .header-inner::after {
  opacity: 1;
  border-color: rgba(10, 31, 68, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 36px rgba(10, 31, 68, 0.1);
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  isolation: isolate;
}

/* Original logo */
.logo-img {
  position: relative;
  z-index: 1;
  height: 48px;
  width: auto;
  max-width: min(240px, 42vw);
  display: block;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
  transition: height 0.35s cubic-bezier(0.22, 1, 0.36, 1), max-width 0.35s ease;
}

.site-header.scrolled .logo-img {
  height: 34px;
  max-width: min(180px, 36vw);
}

.site-footer .logo-img,
.logo-img--footer {
  height: 60px;
  max-width: 260px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  filter: none;
}

.nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 34px;
  transition: gap var(--transition);
}

.site-header.scrolled .nav {
  gap: 22px;
}

.header-cta {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.site-header.scrolled .header-cta {
  transform: scale(0.92);
  transform-origin: right center;
}

.nav-link {
  position: relative;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color var(--transition), font-size var(--transition);
}

.site-header.scrolled .nav-link {
  font-size: 0.92rem;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}

.nav-link:hover::before,
.has-dropdown:hover>.nav-link::before {
  transform: scaleX(1);
}

.nav-link:hover,
.has-dropdown:hover>.nav-link {
  color: var(--orange);
}

.nav-item {
  position: relative;
}

.has-dropdown>.nav-link::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
  opacity: 0.7;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  padding: 12px;
  background: rgba(6, 21, 40, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1100;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-label {
  margin: 0 0 8px;
  padding: 0 8px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-download-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: auto;
  color: var(--orange);
}

.nav-dropdown-link:hover {
  background: rgba(255, 122, 0, 0.14);
  color: var(--orange);
}

.nav-dropdown-link:hover .nav-download-icon {
  color: var(--orange);
}

.nav-dropdown-link--section {
  margin-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  justify-content: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 100px;
  background: #050a14;
  overflow: visible;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 105%;
  height: 115%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
      rgba(5, 10, 20, 0.96) 0%,
      rgba(5, 10, 20, 0.88) 28%,
      rgba(5, 10, 20, 0.55) 48%,
      rgba(5, 10, 20, 0.18) 68%,
      rgba(5, 10, 20, 0.05) 100%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: min(1180px, 92%);
}

.hero-content {
  max-width: 560px;
  animation: fadeUp 0.9s ease both;
}

.hero h1 {
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-stats {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 24px;
  max-width: none;
  width: fit-content;
}

.hero-stat {
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-stat:first-child {
  padding-left: 0;
  padding-right: 14px;
}

.hero-stat:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 14px;
}

.hero-stat-num {
  display: block;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero-stat-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px;
}

.hero-samples-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  /* A shorter cycle keeps the portfolio callout noticeable without delaying the CTA. */
  --cta-cycle: 2.4s;
  --cta-delay: 0.6s;
}

.hero-arrow {
  position: absolute;
  left: calc(100% + 14px);
  bottom: -42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  pointer-events: none;
  z-index: 2;
  color: var(--orange);
  animation: arrowBob var(--cta-cycle) ease-in-out var(--cta-delay) infinite;
}

.hero-arrow-label {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
  transform: rotate(-4deg);
  margin-left: 40px;
  text-shadow:
      0 0 10px rgba(255, 122, 0, 0.85),
    0 0 22px rgba(255, 122, 0, 0.45);
  animation: arrowLabelSync var(--cta-cycle) ease-in-out var(--cta-delay) infinite;
}

.hero-arrow-svg {
  width: 100px;
  height: 72px;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 0 8px rgba(255, 122, 0, 0.5));
}

.hero-arrow-stroke,
.hero-arrow-head {
  fill: none;
  stroke-dasharray: 170;
  stroke-dashoffset: 170;
  animation: arrowDraw var(--cta-cycle) ease-out var(--cta-delay) infinite;
}

.hero-arrow-head {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation-name: arrowHeadDraw;
}

.hero .btn-quote {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.hero .btn-quote:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.hero .btn-samples {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  animation: samplesBtnGlow var(--cta-cycle, 2.8s) ease-in-out var(--cta-delay, 0.6s) infinite;
}

.hero .btn-samples:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: var(--white);
  animation: none;
  box-shadow: 0 8px 24px rgba(245, 130, 32, 0.35);
}

@keyframes arrowDraw {
  0% {
    stroke-dashoffset: 170;
    opacity: 0;
  }

  6% {
    opacity: 1;
  }

  38% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  62% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  78% {
    opacity: 0;
  }

  100% {
    stroke-dashoffset: 170;
    opacity: 0;
  }
}

@keyframes arrowHeadDraw {

  0%,
  30% {
    stroke-dashoffset: 36;
    opacity: 0;
  }

  38% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  62% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  78% {
    opacity: 0;
  }

  100% {
    stroke-dashoffset: 36;
    opacity: 0;
  }
}

@keyframes arrowLabelSync {

  0%,
  100% {
    opacity: 0.2;
    transform: rotate(-4deg) scale(0.98);
    color: var(--orange);
    text-shadow:
      0 0 4px rgba(255, 154, 53, 0.3),
      0 0 10px rgba(255, 122, 0, 0.15);
  }

  12% {
    opacity: 0.55;
    transform: rotate(-4deg) scale(1);
  }

  38%,
  62% {
    opacity: 1;
    transform: rotate(-4deg) scale(1.03);
    color: var(--orange);
    text-shadow:
      0 0 14px rgba(255, 154, 53, 1),
      0 0 28px rgba(255, 122, 0, 0.65);
  }

  78% {
    opacity: 0.2;
    transform: rotate(-4deg) scale(0.98);
    color: var(--orange);
    text-shadow:
      0 0 4px rgba(255, 154, 53, 0.3),
      0 0 10px rgba(255, 122, 0, 0.15);
  }
}

@keyframes arrowBob {

  0%,
  38% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(3px);
  }

  62%,
  100% {
    transform: translateY(0);
  }
}

@keyframes samplesBtnGlow {

  0%,
  100% {
    box-shadow:
      0 5px 18px rgba(255, 122, 0, 0.40),
      0 0 16px rgba(255, 122, 0, 0.28);
  }

  38%,
  62% {
    box-shadow:
      0 8px 30px rgba(255, 154, 53, 0.65),
      0 0 28px rgba(255, 122, 0, 0.62),
      0 0 52px rgba(255, 122, 0, 0.30);
  }

  78% {
    box-shadow:
      0 5px 18px rgba(255, 122, 0, 0.40),
      0 0 16px rgba(255, 122, 0, 0.28);
  }
}

.hero-corner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(28vw, 320px);
  height: clamp(36px, 5vw, 56px);
  color: var(--orange);
  z-index: 3;
  pointer-events: none;
  line-height: 0;
}

.hero-corner svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust Bar */
.trust-bar {
  position: relative;
  padding: 64px 0 72px;
  background: var(--white);
}

.trust-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0 52%, var(--orange) 52% 100%);
}

.trust-bar .section-eyebrow {
  margin-bottom: 12px;
}

.trust-heading {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 48px;
  line-height: 1.4;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  text-align: center;
}

.trust-item {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  transition: transform var(--transition);
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: none;
  border-color: transparent;
}

.trust-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  color: var(--orange);
  display: block;
  border-radius: 0;
  background: transparent;
  transition: transform var(--transition);
}

.trust-item:hover .trust-icon {
  transform: scale(1.06);
  background: transparent;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

.trust-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 0.8125rem;
  color: var(--navy);
  line-height: 1.45;
  opacity: 0.85;
  max-width: 180px;
  margin: 0 auto;
}

/* Why Us CTA */
.why-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* Compliance */
.compliance {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  padding: 56px 0 60px;
}

.compliance-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/jurisdictions-map-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.85;
  transform: scale(1.02);
}

.compliance-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 21, 40, 0.68) 0%, rgba(6, 21, 40, 0.35) 45%, rgba(6, 21, 40, 0.75) 100%);
  pointer-events: none;
}

.compliance .container {
  position: relative;
  z-index: 2;
}

.compliance .section-title {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
}

.compliance .section-eyebrow {
  margin-bottom: 8px;
}

.compliance .section-lead {
  margin-bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 560px;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.compliance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition), border-color var(--transition),
    background var(--transition), box-shadow var(--transition);
}

.compliance-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 0, 0.45);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.flag-circle {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(255, 122, 0, 0.35);
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  transition: border-color var(--transition), transform var(--transition),
    box-shadow var(--transition);
}

.compliance-item:hover .flag-circle {
  border-color: var(--orange);
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.22);
  animation-play-state: paused;
}

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

.flag-circle--collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  padding: 0;
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.flag-circle--collage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.compliance-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.compliance-item h4 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
}

.compliance-item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  margin: 0 0 4px;
  line-height: 1.3;
}

.compliance-check {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 5px;
  padding: 3px 8px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 190, 120, 0.95);
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.3);
  border-radius: 999px;
  white-space: nowrap;
}

.compliance-check::before {
  content: "";
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.compliance-note {
  margin-top: 18px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
}

/* Samples */
.samples {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background: var(--navy-deep);
  color: var(--white);
}

.samples-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 58% 50% at 82% 38%, rgba(255, 122, 0, 0.2), transparent 62%),
    radial-gradient(ellipse 42% 36% at 8% 22%, rgba(255, 255, 255, 0.07), transparent 55%),
    radial-gradient(ellipse 55% 40% at 50% 100%, rgba(18, 42, 82, 0.7), transparent 70%),
    linear-gradient(165deg, #040e1c 0%, #061528 36%, #0A1F44 68%, #0c2348 100%);
  pointer-events: none;
}

.samples-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 68% 68% at 72% 48%, #000 18%, transparent 78%);
}

.samples-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 440px) minmax(0, 1fr);
  gap: 44px 56px;
  align-items: center;
}

.samples-intro {
  max-width: 440px;
  width: 100%;
}

.samples .section-eyebrow.left {
  position: relative;
  display: inline-block;
  color: var(--orange);
  margin-bottom: 14px;
  padding-bottom: 10px;
  text-align: left;
  font-size: 1.5rem;
  letter-spacing: 0.16em;
}

.samples .section-eyebrow.left::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 122, 0, 0.2));
}

.samples-title {
  color: var(--white);
  text-align: left;
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 3.1vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.samples-lead {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 400px;
}

.sample-chooser {
  margin-bottom: 18px;
}

.sample-chooser-label {
  margin: 0 0 12px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.sample-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.sample-tab {
  appearance: none;
  width: 100%;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font);
  padding: 13px 14px;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-height: 0;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
    color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.sample-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 122, 0, 0.14), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  pointer-events: none;
}

.sample-tab-index {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 1;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}

.sample-tab-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.sample-tab-label {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
}

.sample-tab-hint {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.35;
}

.sample-tab:hover {
  border-color: rgba(255, 122, 0, 0.4);
  background: rgba(255, 122, 0, 0.07);
  color: var(--white);
  transform: translateY(-1px);
}

.sample-tab:hover::before {
  opacity: 1;
}

.sample-tab.is-active {
  background: rgba(255, 122, 0, 0.14);
  border-color: rgba(255, 122, 0, 0.7);
  color: var(--white);
  box-shadow:
    0 0 0 1px rgba(255, 122, 0, 0.2),
    0 12px 28px rgba(255, 122, 0, 0.12),
    inset 3px 0 0 var(--orange);
}

.sample-tab.is-active::before {
  opacity: 1;
}

.sample-tab.is-active .sample-tab-index {
  color: var(--navy);
  background: var(--orange);
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.35);
}

.sample-tab.is-active .sample-tab-hint {
  color: rgba(255, 255, 255, 0.68);
}

.sample-active-panel {
  margin-bottom: 20px;
  padding: 18px 20px 20px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.sample-active-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--orange), rgba(255, 122, 0, 0.2));
}

.sample-active-kicker {
  margin: 0 0 8px;
  padding-left: 10px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.sample-active-title {
  margin: 0 0 10px;
  padding-left: 10px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.sample-active-why {
  margin: 0 0 12px;
  padding-left: 10px;
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.sample-set-body {
  padding-left: 10px;
}

.sample-set-desc {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  line-height: 1.65;
  margin: 0 0 12px;
}

.sample-set-bullets {
  margin: 0;
  padding: 0 0 0 1.1em;
  list-style: disc;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.55;
  display: grid;
  gap: 6px;
}

.sample-set-bullets li::marker {
  color: var(--orange);
}

.sample-viewer-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.sample-pdf-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 17px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FF9A33 0%, var(--orange) 48%, #E86E00 100%);
  color: var(--white);
  text-decoration: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 12px 32px rgba(255, 122, 0, 0.32);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out),
    filter 0.3s var(--ease-out);
}

.sample-pdf-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 18px 40px rgba(255, 122, 0, 0.42);
  color: var(--white);
  filter: brightness(1.04);
}

.sample-pdf-btn:active {
  transform: translateY(0);
}

.sample-pdf-btn-text {
  display: grid;
  gap: 3px;
  text-align: left;
  min-width: 0;
}

.sample-pdf-action {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
}

#samplePdfName {
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.sample-pdf-btn-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  padding: 10px;
  box-sizing: content-box;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.14);
}

.sample-pdf-note {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.4);
}

.sample-custom-link {
  margin-top: 4px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.45;
  transition: color 0.25s var(--ease-out);
}

.sample-custom-link span {
  color: var(--orange);
  font-weight: 700;
  transition: letter-spacing 0.25s var(--ease-out);
}

.sample-custom-link:hover {
  color: rgba(255, 255, 255, 0.88);
}

.sample-custom-link:hover span {
  letter-spacing: 0.02em;
}

.sample-viewer {
  min-width: 0;
  outline: none;
}

.sample-stage-shell {
  position: relative;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(4, 14, 28, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 22px 22px 18px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 28px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sample-stage-glow {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: min(82%, 520px);
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(255, 122, 0, 0.28), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
  animation: sampleGlowPulse 5.5s ease-in-out infinite;
}

@keyframes sampleGlowPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.06);
  }
}

.sample-stage-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(62vh, 640px);
  padding: 0 56px;
  box-sizing: border-box;
  width: 100%;
}

.sample-stage {
  margin: 0;
  position: relative;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  aspect-ratio: auto;
  width: 100%;
  min-height: min(62vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.sample-stage-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #f3f5f8 100%);
  box-shadow:
    0 0 0 1px rgba(10, 31, 68, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 4px 12px rgba(0, 0, 0, 0.12);
  max-width: min(100%, 680px);
  transition: transform 0.45s var(--ease-out), opacity 0.28s var(--ease-out);
}

.sample-stage-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.sample-stage img {
  max-width: min(100%, 660px);
  max-height: min(58vh, 620px);
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #fff;
  display: block;
  margin: 0 auto;
  box-shadow: none;
  border-radius: 4px;
  transition: opacity 0.32s var(--ease-out);
}

.sample-stage.is-switching .sample-stage-frame {
  opacity: 0.35;
  transform: scale(0.985) translateY(4px);
}

.sample-stage-meta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 16px;
  padding: 8px 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  white-space: nowrap;
  width: fit-content;
  max-width: 100%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sample-stage-set {
  color: var(--orange);
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.sample-nav {
  appearance: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.97);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.sample-nav--prev {
  left: 4px;
}

.sample-nav--next {
  right: 4px;
}

.sample-nav svg {
  width: 18px;
  height: 18px;
}

.sample-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(255, 122, 0, 0.35);
  transform: translateY(-50%) scale(1.04);
}

.sample-nav:active {
  transform: translateY(-50%) scale(0.96);
}

.sample-filmstrip-bar {
  position: relative;
  z-index: 1;
  padding: 14px 12px 10px;
  width: 100%;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.sample-filmstrip-label {
  margin: 0 0 12px 4px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  text-align: left;
}

.sample-filmstrip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 122, 0, 0.55) transparent;
  justify-content: flex-start;
}

.sample-thumb {
  appearance: none;
  position: relative;
  flex: 0 0 auto;
  width: 68px;
  height: 90px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 11px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  opacity: 0.68;
  transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out),
    opacity 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.sample-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: #fff;
}

.sample-thumb-num {
  position: absolute;
  left: 5px;
  bottom: 5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 6px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--white);
  background: rgba(10, 31, 68, 0.72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.sample-thumb:hover {
  opacity: 1;
  transform: translateY(-4px);
  border-color: rgba(255, 122, 0, 0.5);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.sample-thumb.is-active {
  opacity: 1;
  border-color: var(--orange);
  box-shadow:
    0 0 0 2px rgba(255, 122, 0, 0.28),
    0 12px 24px rgba(255, 122, 0, 0.18);
  transform: translateY(-2px);
}

.sample-thumb.is-active .sample-thumb-num {
  background: var(--orange);
  color: var(--navy);
}

@media (max-width: 980px) {
  .samples-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
  }

  .samples-intro {
    max-width: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .samples .section-eyebrow.left::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .samples-title {
    text-align: center;
  }

  .samples-lead {
    max-width: 520px;
  }

  .sample-chooser,
  .sample-active-panel,
  .sample-viewer-actions {
    width: 100%;
    max-width: 480px;
  }

  .sample-chooser-label {
    text-align: center;
  }

  .sample-tabs {
    grid-template-columns: 1fr;
  }

  .sample-tab {
    flex-direction: row;
    align-items: center;
    min-height: 0;
    padding: 13px 15px;
  }

  .sample-tab.is-active {
    box-shadow:
      0 0 0 1px rgba(255, 122, 0, 0.2),
      0 10px 24px rgba(255, 122, 0, 0.1),
      inset 3px 0 0 var(--orange);
  }

  .sample-active-panel {
    text-align: left;
  }

  .sample-pdf-note,
  .sample-custom-link {
    text-align: center;
  }

  .sample-stage-shell {
    padding: 18px 16px 14px;
  }
}

@media (max-width: 768px) {
  .samples {
    padding: 68px 0 76px;
  }

  .sample-stage-wrap {
    min-height: min(52vh, 520px);
    padding: 0 44px;
  }

  .sample-stage {
    min-height: min(52vh, 520px);
  }

  .sample-stage-frame {
    padding: 7px;
    border-radius: 12px;
    max-width: min(100%, 480px);
  }

  .sample-stage img {
    max-width: min(100%, 460px);
    max-height: min(48vh, 480px);
  }

  .sample-nav {
    width: 40px;
    height: 40px;
  }

  .sample-nav--prev {
    left: 0;
  }

  .sample-nav--next {
    right: 0;
  }

  .sample-thumb {
    width: 62px;
    height: 84px;
  }

  .sample-stage-glow {
    animation: none;
    opacity: 0.85;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sample-stage-glow {
    animation: none;
  }

  .sample-tab,
  .sample-pdf-btn,
  .sample-nav,
  .sample-thumb,
  .sample-stage-frame {
    transition: none;
  }
}

/* Services */
.services {
  background:
    radial-gradient(ellipse at top right, rgba(255, 122, 0, 0.07), transparent 45%),
    var(--off-white);
  padding: 64px 0 72px;
}

.services .section-title {
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2.8vw, 1.95rem);
}

.services .section-eyebrow {
  margin-bottom: 8px;
}

.services .section-lead {
  margin-bottom: 28px;
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 560px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(10, 31, 68, 0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition),
    transform var(--transition);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 122, 0, 0.15));
  z-index: 1;
}

.service-card:hover {
  border-color: rgba(255, 122, 0, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.35;
  padding: 18px 16px 0;
  margin: 0;
}

.service-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-deep);
  margin: 12px 12px 0;
  border-radius: var(--radius-sm);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 21, 40, 0.4));
  pointer-events: none;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.service-card:hover .service-media img {
  transform: scale(1.06);
}

.service-body {
  padding: 12px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
}

.services .section-cta {
  margin-top: 28px;
}

/* Achievements */
.achievements {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
}

.achievements-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  animation: mapDrift 40s ease-in-out infinite alternate;
}

@keyframes mapDrift {
  from {
    transform: scale(1) translate(0, 0);
  }

  to {
    transform: scale(1.08) translate(-1.5%, 1%);
  }
}

.achievements .container {
  position: relative;
  z-index: 2;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  text-align: center;
}

.ach-num {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1.15;
  margin-bottom: 8px;
}

.ach-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* Industries */
.industries {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 122, 0, 0.05), transparent 40%),
    var(--off-white);
  padding: 56px 0 60px;
}

.industries .section-title {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
}

.industries .section-eyebrow {
  margin-bottom: 8px;
}

.industries .section-lead {
  margin-bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 520px;
}

.industry-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.industry-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid rgba(10, 31, 68, 0.08);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), border-color var(--transition),
    transform var(--transition), box-shadow var(--transition);
}

.industry-chip:hover {
  background: var(--white);
  border-color: rgba(255, 122, 0, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10, 31, 68, 0.08);
}

.industry-thumb {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1.5px solid var(--white);
  box-shadow: 0 3px 8px rgba(10, 31, 68, 0.12);
}

.industry-chip--mechanical .industry-thumb {
  background-image: url("../assets/images/industries/industry-mechanical-bg.png");
}

.industry-chip--electrical .industry-thumb {
  background-image: url("../assets/images/industries/industry-electrical-bg.png");
}

.industry-chip--medical .industry-thumb {
  background-image: url("../assets/images/industries/industry-medical-bg.png");
}

.industry-chip--software .industry-thumb {
  background-image: url("../assets/images/industries/industry-software-bg.png");
}

.industry-chip--automotive .industry-thumb {
  background-image: url("../assets/images/industries/industry-automotive-bg.png");
}

.industry-chip--robotics .industry-thumb {
  background-image: url("../assets/images/industries/industry-robotics-bg.png");
}

.industry-chip--biotech .industry-thumb {
  background-image: url("../assets/images/industries/industry-biotech-bg.png");
}

.industry-chip--telecom .industry-thumb {
  background-image: url("../assets/images/industries/industry-telecom-bg.png");
}

.industry-chip--energy .industry-thumb {
  background-image: url("../assets/images/industries/industry-energy-bg.png");
}

.industry-chip--industrial .industry-thumb {
  background-image: url("../assets/images/industries/industry-industrial-bg.png");
}

.industry-chip--consumer .industry-thumb {
  background-image: url("../assets/images/industries/industry-consumer-bg.png");
}

.industry-chip--pharma .industry-thumb {
  background-image: url("../assets/images/industries/industry-pharma-bg.png");
}

.industry-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.industry-chip:hover .industry-name {
  color: var(--orange);
}

.industries .section-cta {
  margin-top: 24px;
}

/* Process */
.process {
  background: var(--navy);
}

.process-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/process-blueprint-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
}

.process-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 31, 68, 0.55) 0%, rgba(10, 31, 68, 0.25) 50%, rgba(10, 31, 68, 0.6) 100%);
  pointer-events: none;
}

.process .container {
  position: relative;
  z-index: 2;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}

.process-step {
  position: relative;
  text-align: left;
  padding: 24px 20px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition), border-color var(--transition),
    background var(--transition), box-shadow var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 0, 0.45);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -14px;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(255, 122, 0, 0.75);
  border-right: 2px solid rgba(255, 122, 0, 0.75);
  transform: rotate(45deg);
  pointer-events: none;
}

.step-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.step-num {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 122, 0, 0.65);
}

.step-icon {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(245, 130, 32, 0.45);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: rgba(245, 130, 32, 0.1);
  backdrop-filter: blur(6px);
}

.step-icon svg {
  width: 26px;
  height: 26px;
}

.process-step h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.step-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.74rem;
  line-height: 1.6;
}

/* Trusted */
.trusted {
  background:
    linear-gradient(180deg, var(--off-white), #fff);
  padding: 80px 0 72px;
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 30px 28px;
  background: var(--white);
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  right: 24px;
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(255, 122, 0, 0.14);
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 122, 0, 0.3);
}

.testimonial-card--featured {
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 122, 0, 0.16), transparent 45%),
    linear-gradient(160deg, var(--navy-mid), var(--navy-deep));
  border-color: rgba(255, 255, 255, 0.08);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 22px;
}

.testimonial-card--featured blockquote {
  color: rgba(255, 255, 255, 0.78);
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(10, 31, 68, 0.08);
}

.testimonial-card--featured figcaption {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--orange-soft);
  border: 1px solid rgba(255, 122, 0, 0.3);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.testimonial-card figcaption strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-card--featured figcaption strong {
  color: var(--white);
}

.testimonial-card figcaption em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--gray);
}

.testimonial-card--featured figcaption em {
  color: rgba(255, 255, 255, 0.55);
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 20px;
  animation: marqueeScroll 60s linear infinite;
  padding: 8px 0;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.client-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 110px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition),
    box-shadow var(--transition);
}

.client-logo img {
  display: block;
  max-width: 100%;
  max-height: 78px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-logo:hover {
  border-color: rgba(255, 122, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md, 0 8px 24px rgba(10, 31, 68, 0.1));
}

/* Why Us */
.why-us {
  background-color: var(--navy-deep);
  background-image:
    linear-gradient(180deg, rgba(6, 21, 40, 0.78) 0%, rgba(6, 21, 40, 0.72) 50%, rgba(6, 21, 40, 0.82) 100%),
    url("../assets/images/why-us-blueprint.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.why-us .section-glow {
  display: none;
}

.why-us .section-title {
  color: var(--white);
}

.why-us .section-lead {
  color: rgba(255, 255, 255, 0.72);
  max-width: 760px;
}

.why-us .section-eyebrow {
  color: var(--orange);
}

.why-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.why-pillar {
  position: relative;
  padding: 28px 22px 26px;
  border: 1px solid rgba(120, 180, 255, 0.22);
  border-radius: 4px 16px 4px 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition),
    box-shadow var(--transition), background var(--transition);
}

.why-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange), transparent 85%);
  opacity: 0.9;
}

.why-pillar::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid rgba(255, 122, 0, 0.7);
  border-right: 1.5px solid rgba(255, 122, 0, 0.7);
  opacity: 0.7;
}

.why-pillar:hover {
  border-color: rgba(255, 122, 0, 0.55);
  transform: translateY(-6px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 122, 0, 0.08) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 122, 0, 0.15);
}

.why-pillar-num {
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 24px rgba(255, 122, 0, 0.35);
}

.why-pillar h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.35;
}

.why-pillar p {
  font-size: 0.8125rem;
  color: rgba(220, 230, 245, 0.78);
  line-height: 1.65;
}

.why-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
}

.why-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(120, 180, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: border-color var(--transition), background var(--transition),
    transform var(--transition);
}

.why-checks li:hover {
  border-color: rgba(255, 122, 0, 0.4);
  background: rgba(255, 122, 0, 0.08);
  transform: translateX(4px);
}

.why-checks li:last-child,
.why-checks li:nth-last-child(2):nth-child(odd) {
  border-bottom: 1px solid rgba(120, 180, 255, 0.16);
}

.why-checks .check {
  color: var(--orange);
  font-weight: 800;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* Diff / understand — dual cards (Why Immunis card language) */
.diff-section {
  background:
    radial-gradient(ellipse 60% 40% at 0% 0%, rgba(255, 122, 0, 0.05), transparent 50%),
    linear-gradient(180deg, #f3f5f8 0%, #e9eef5 100%);
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
}

.diff-block-wide {
  padding: 40px 40px 36px;
}

.diff-wide-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.diff-wide-intro {
  flex: 1;
  min-width: 0;
}

.diff-wide-lead {
  max-width: 52rem;
  margin-bottom: 0 !important;
}

.diff-capacity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.diff-capacity-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(230, 236, 248, 0.92);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(120, 180, 255, 0.12);
  transition: border-color var(--transition), background var(--transition),
    transform var(--transition);
}

.diff-capacity-tags span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 122, 0, 0.45);
}

.diff-capacity-tags span:hover {
  border-color: rgba(255, 122, 0, 0.4);
  background: rgba(255, 122, 0, 0.08);
  transform: translateY(-2px);
}

.diff-process {
  margin-top: 4px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.diff-process-label {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 170, 80, 0.95) !important;
  margin-bottom: 22px !important;
}

.diff-process-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: stretch;
  position: relative;
}

.diff-process-flow::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 122, 0, 0.5) 10%,
      rgba(255, 122, 0, 0.5) 90%,
      transparent);
  pointer-events: none;
  z-index: 0;
}

.diff-process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 0 12px 2px;
  text-align: left;
  transition: transform var(--transition);
}

.diff-process-step:hover {
  transform: translateY(-3px);
}

.diff-process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 23px;
  right: -5px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid rgba(255, 170, 80, 0.9);
  border-right: 1.5px solid rgba(255, 170, 80, 0.9);
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 2;
}

.diff-process-node {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.diff-process-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 150, 40, 0.28), transparent 55%),
    linear-gradient(165deg, #1c406e 0%, #0a182c 100%);
  border: 1px solid rgba(255, 122, 0, 0.55);
  box-shadow:
    0 0 0 6px rgba(6, 21, 40, 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: border-color var(--transition), box-shadow var(--transition),
    transform var(--transition), color var(--transition);
}

.diff-process-icon svg {
  width: 24px;
  height: 24px;
}

.diff-process-step:hover .diff-process-icon {
  color: #ffb45c;
  border-color: rgba(255, 170, 80, 0.95);
  box-shadow:
    0 0 0 6px rgba(6, 21, 40, 0.95),
    0 10px 22px rgba(255, 122, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: scale(1.05);
}

.diff-process-num {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255, 170, 80, 0.9);
  margin-bottom: 6px;
}

.diff-process-step h4 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  min-height: 2.4em;
}

.diff-process-step p {
  color: rgba(220, 228, 242, 0.72) !important;
  font-size: 0.78rem !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
  max-width: 15.5rem;
}

.diff-process-step:hover h4 {
  color: #fff;
}

.diff-process-step:hover p {
  color: rgba(235, 240, 250, 0.88) !important;
}

.diff-block {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: 4px 20px 4px 20px;
  padding: 42px 36px 40px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    var(--shadow-md);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.diff-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange), transparent 85%);
  opacity: 0.95;
  z-index: 1;
}

.diff-corner {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid rgba(255, 122, 0, 0.65);
  border-right: 1.5px solid rgba(255, 122, 0, 0.65);
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}

.diff-block:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 0, 0.35);
  box-shadow: var(--shadow-lg);
}

.diff-block.accent {
  background:
    radial-gradient(circle at top right, rgba(255, 122, 0, 0.32), transparent 42%),
    linear-gradient(160deg, #163056 0%, var(--navy-deep) 55%, #040c18 100%);
  border: 1px solid rgba(120, 180, 255, 0.18);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 48px rgba(0, 0, 0, 0.28);
}

.diff-block.accent:hover {
  border-color: rgba(255, 122, 0, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 22px 56px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 122, 0, 0.12);
}

.diff-eyebrow {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.diff-eyebrow.light {
  color: rgba(255, 170, 80, 0.95);
}

.diff-block h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.diff-block.accent h2 {
  color: var(--white);
}

.diff-lead {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  line-height: 1.55 !important;
  margin-bottom: 14px !important;
}

.diff-subhead {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy) !important;
  margin: 22px 0 12px !important;
  opacity: 0.75;
}

.diff-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.diff-review-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(10, 31, 68, 0.03);
  border: 1px solid rgba(10, 31, 68, 0.07);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  transition: border-color var(--transition), background var(--transition),
    transform var(--transition);
}

.diff-review-item:hover {
  border-color: rgba(255, 122, 0, 0.4);
  background: rgba(255, 122, 0, 0.06);
  transform: translateY(-2px);
}

.diff-review-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--orange);
  background: rgba(255, 122, 0, 0.12);
}

.diff-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.diff-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(10, 31, 68, 0.1);
  box-shadow: 0 2px 8px rgba(10, 31, 68, 0.04);
  transition: border-color var(--transition), color var(--transition),
    background var(--transition);
}

.diff-tags span:hover {
  border-color: rgba(255, 122, 0, 0.45);
  color: var(--orange);
  background: rgba(255, 122, 0, 0.05);
}

.diff-closing {
  margin-bottom: 0 !important;
  font-size: 0.875rem !important;
  color: var(--gray) !important;
  padding-top: 4px;
  border-top: 1px solid rgba(10, 31, 68, 0.08);
  margin-top: 4px !important;
  padding-top: 14px;
}

.diff-block p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 12px;
}

.diff-block.accent p,
.diff-block.accent li {
  color: rgba(230, 236, 248, 0.86);
}

.diff-block ul {
  margin: 10px 0 18px;
  display: grid;
  gap: 8px;
}

.diff-block li {
  position: relative;
  padding: 10px 12px 10px 28px;
  margin-bottom: 0;
  font-size: 0.9rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(120, 180, 255, 0.12);
  transition: border-color var(--transition), background var(--transition),
    transform var(--transition);
}

.diff-block.accent li:hover {
  border-color: rgba(255, 122, 0, 0.4);
  background: rgba(255, 122, 0, 0.08);
  transform: translateX(3px);
}

.diff-block li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 122, 0, 0.45);
}

.diff-note {
  margin-bottom: 24px !important;
}

.diff-cta {
  margin-top: 4px;
  box-shadow: 0 10px 28px rgba(255, 122, 0, 0.35);
}

/* IP Support */
.ip-support {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(10, 31, 68, 0.08);
}

.ip-support .section-eyebrow {
  margin-bottom: 8px;
}

.ip-support-title {
  text-align: center;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  text-transform: none;
  margin-bottom: 8px;
}

.ip-support .section-lead {
  margin-bottom: 24px;
  font-size: 0.88rem;
}

.ip-support-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 4px;
}

.ip-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(10, 31, 68, 0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition),
    transform var(--transition);
}

.ip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 122, 0, 0.15));
  z-index: 1;
}

.ip-card:hover {
  border-color: rgba(255, 122, 0, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.ip-card>h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: -0.015em;
  padding: 16px 14px 0;
  margin: 0;
  min-height: 2.7em;
}

.ip-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-deep);
  margin: 10px 10px 0;
  border-radius: var(--radius-sm);
}

.ip-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 21, 40, 0.45));
  pointer-events: none;
}

.ip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.ip-card:hover .ip-media img {
  transform: scale(1.06);
}

.ip-body {
  padding: 10px 14px 14px;
}

.ip-body p {
  font-size: 0.72rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* Contact */
.contact-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 122, 0, 0.08), transparent 40%),
    var(--off-white);
}

.contact-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 960px;
  margin-inline: auto;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  width: 100%;
  padding: 14px 18px;
  background: linear-gradient(165deg, var(--navy-mid), var(--navy-deep));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.contact-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.contact-strip-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.contact-ic {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 122, 0, 0.14);
  border: 1px solid rgba(255, 122, 0, 0.35);
  color: var(--orange);
}

.contact-ic svg {
  width: 17px;
  height: 17px;
}

.contact-strip-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  color: rgba(255, 170, 80, 0.95);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-strip-value {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  transition: color var(--transition);
}

.contact-strip-item:hover .contact-strip-value {
  color: var(--orange);
}

.contact-strip-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  padding: 7px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 122, 0, 0.18);
  border: 1px solid rgba(255, 122, 0, 0.35);
  border-radius: 999px;
}

.contact-strip-note svg {
  width: 13px;
  height: 13px;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-form {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.form-header {
  margin-bottom: 16px;
}

.contact-form h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.form-intro {
  font-size: 0.8125rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 14px;
}

.form-span-2 {
  grid-column: span 2;
}

.form-span-full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 10px 12px;
  border: 1px solid rgba(10, 31, 68, 0.1);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  background: #f7f9fc;
  transition: border-color var(--transition), box-shadow var(--transition),
    background var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.12);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 78px;
  text-transform: none;
}

.contact-form input[type="file"] {
  padding: 8px;
  background: var(--white);
  font-weight: 500;
  text-transform: none;
}

.form-submit {
  width: 100%;
  margin-top: 14px;
}

.form-note {
  margin-top: 10px;
  font-size: 0.8125rem;
  color: var(--navy);
  text-align: center;
}

.form-note.is-error {
  color: #b42318;
}

.form-note.is-success {
  color: #027a48;
}

/* Final CTA */
.final-cta {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding: 100px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 27, 61, 0.88) 0%,
      rgba(0, 27, 61, 0.55) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  font-size: 1.0625rem;
}

.cta-content .hero-actions {
  justify-content: center;
}

/* Footer — drafting paper grid */
.site-footer {
  position: relative;
  overflow: hidden;
  background-color: #f3f5f8;
  background-image:
    linear-gradient(rgba(90, 130, 180, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 130, 180, 0.18) 1px, transparent 1px);
  background-size: 28px 28px, 28px 28px;
  background-position: bottom right;
  color: var(--navy-mid);
  padding-top: 56px;
}

.footer-brand .logo {
  display: inline-flex;
  position: relative;
  background: transparent;
  padding: 0;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.2fr 1.1fr;
  gap: 36px;
  padding-bottom: 40px;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  max-width: 280px;
  color: var(--navy-mid);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.footer-contact a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-mid);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--orange);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4 {
  color: var(--navy);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.footer-links a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-mid);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-address p {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--navy-mid);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(10, 31, 68, 0.14);
  padding: 20px 0;
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
  color: var(--navy-mid);
}

/* Reveal animations — Magic UI–inspired blur fade */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out),
    filter 0.75s var(--ease-out);
  will-change: opacity, transform, filter;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Border beam (CSS adaptation of Magic UI border-beam) */
.has-beam {
  isolation: isolate;
}

.border-beam {
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg,
      transparent,
      transparent,
      rgba(255, 170, 64, 0.95),
      rgba(255, 122, 0, 0.85),
      transparent,
      transparent);
  background-size: 220% 100%;
  opacity: 0;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.has-beam:hover .border-beam,
.has-beam:focus-within .border-beam {
  opacity: 1;
  animation: borderBeamSweep 2.4s linear infinite;
}

@keyframes borderBeamSweep {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@keyframes shimmerLine {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes floatSoft {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.compliance-item .flag-circle {
  animation: floatSoft 5s ease-in-out infinite;
}

.compliance-item:nth-child(2) .flag-circle {
  animation-delay: 0.4s;
}

.compliance-item:nth-child(3) .flag-circle {
  animation-delay: 0.8s;
}

.compliance-item:nth-child(4) .flag-circle {
  animation-delay: 1.2s;
}

.compliance-item:nth-child(5) .flag-circle {
  animation-delay: 1.6s;
}

.compliance-item:nth-child(6) .flag-circle {
  animation-delay: 2s;
}

.process-step .step-icon {
  transition: transform var(--transition), border-color var(--transition),
    background var(--transition), box-shadow var(--transition);
}

.process-step:hover .step-icon {
  transform: translateY(-4px) scale(1.06);
  border-color: var(--orange);
  background: rgba(255, 122, 0, 0.16);
  box-shadow: 0 10px 24px rgba(255, 122, 0, 0.2);
}

.achievements .ach-num {
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 40px rgba(255, 122, 0, 0.25);
}

.process {
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 122, 0, 0.14), transparent 40%),
    var(--navy);
}

.final-cta {
  position: relative;
}

.final-cta .cta-content h2 {
  letter-spacing: -0.02em;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .trust-top-line,
  .marquee-track,
  .border-beam,
  .compliance-item .flag-circle,
  .achievements-bg,
  .hero-arrow,
  .hero-arrow-stroke,
  .hero-arrow-head,
  .hero-arrow-label,
  .hero .btn-samples {
    animation: none !important;
  }

  .hero-arrow-stroke,
  .hero-arrow-head {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  .hero-arrow-label {
    opacity: 1;
    color: var(--orange);
  }

  .hero .btn-samples {
    box-shadow: 0 4px 14px rgba(255, 122, 0, 0.18);
  }

  .has-beam:hover .border-beam {
    opacity: 0.5;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    align-items: flex-start;
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: 72px;
  }

  .hero-overlay {
    background: linear-gradient(180deg,
        rgba(5, 10, 20, 0.75) 0%,
        rgba(5, 10, 20, 0.88) 45%,
        rgba(5, 10, 20, 0.95) 100%);
  }

  .hero-content {
    max-width: 640px;
  }

  .hero-video {
    object-position: 70% center;
  }

  .hero-samples-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    padding-top: 96px;
    padding-bottom: 4px;
  }

  .hero .btn-samples {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-arrow {
    position: absolute;
    top: 0;
    left: 50%;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: max-content;
    transform: translateX(-50%);
    bottom: auto;
    animation: none;
  }

  .hero-arrow-label {
    margin-left: 0;
    transform: none;
    white-space: nowrap;
    order: -1;
    animation: arrowLabelSyncMobile var(--cta-cycle) ease-in-out var(--cta-delay) infinite;
  }

  .hero-arrow-svg {
    width: 52px;
    height: 38px;
    /* The original arrow points upper-left; rotate it so its tip leads down to View Samples. */
    transform: rotate(-115deg);
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .achievements-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ip-support-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .compliance-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .compliance,
  .services,
  .industries {
    padding: 48px 0 52px;
  }

  .industry-mosaic {
    grid-template-columns: repeat(3, 1fr);
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-span-2 {
    grid-column: span 1;
  }

  .diff-wide-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .diff-process-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 12px;
  }

  .diff-process-flow::before,
  .diff-process-step:not(:last-child)::after {
    display: none;
  }

  .diff-process-step {
    padding: 16px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .diff-process-icon {
    width: 46px;
    height: 46px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .diff-process-step:hover .diff-process-icon {
    box-shadow:
      0 8px 18px rgba(255, 122, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }

  .diff-process-node {
    margin-bottom: 12px;
  }

  .diff-process-step h4 {
    min-height: 0;
  }

  .diff-block-wide {
    padding: 32px 28px 28px;
  }

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

  .process-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .site-header.scrolled {
    padding: 10px 12px 0;
  }

  .site-header.scrolled .header-inner {
    height: 44px;
    width: calc(100% - 4px);
    max-width: none;
    padding: 0 12px 0 10px;
  }

  .site-header.scrolled .logo-img {
    height: 30px;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition), top var(--transition);
    border-bottom: 1px solid rgba(10, 31, 68, 0.08);
    box-shadow: 0 16px 40px rgba(10, 31, 68, 0.1);
  }

  .site-header.scrolled .nav {
    top: 64px;
    left: 12px;
    right: 12px;
    gap: 18px;
    border-radius: 18px;
    border: 1px solid rgba(10, 31, 68, 0.08);
    box-shadow: 0 16px 40px rgba(10, 31, 68, 0.12);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .has-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .has-dropdown>.nav-link {
    display: block;
    text-align: center;
  }

  .nav-link::before {
    display: none;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    left: auto;
    min-width: 0;
    width: 100%;
    margin-top: 4px;
    box-shadow: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown-link {
    justify-content: space-between;
  }

  .nav-dropdown-link--section {
    justify-content: center;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .trust-grid,
  .compliance-grid,
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .ip-support-grid,
  .why-pillars,
  .why-checks,
  .form-grid,
  .diff-review-grid,
  .diff-process-flow,
  .process-flow {
    grid-template-columns: 1fr;
  }

  .form-span-2,
  .form-span-full {
    grid-column: 1 / -1;
  }

  .contact-strip {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-strip-note {
    margin-left: 0;
    justify-content: center;
  }

  .contact-form {
    padding: 20px 16px;
  }

  .diff-process-step:not(:last-child)::after {
    display: none;
  }

  .diff-process-step {
    padding: 18px 16px;
  }

  .diff-process-step h4 {
    min-height: 0;
  }

  .diff-capacity-tags {
    gap: 6px;
  }

  .diff-capacity-tags span {
    font-size: 0.74rem;
    padding: 8px 12px 8px 10px;
  }

  .compliance-item {
    padding: 10px 12px;
  }

  .ip-card>h4 {
    min-height: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-corner {
    width: 42vw;
    height: 40px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 14px;
    max-width: 280px;
  }

  .hero-stat {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: 12px;
  }

  .hero-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .compliance,
  .services,
  .industries {
    padding: 40px 0 44px;
  }

  .industry-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .hero-actions .btn-quote,
  .hero-samples-cta,
  .hero .btn-samples {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-samples-cta {
    margin-top: 4px;
    padding-top: 90px;
  }

  .hero-arrow-label {
    font-size: 0.78rem;
  }

  .compliance-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes arrowLabelSyncMobile {

  0%,
  100% {
    opacity: 0.45;
    color: var(--orange);
  }

  38%,
  62% {
    opacity: 1;
    color: var(--orange);
  }
}
