:root {
  --colors-primary: #1a6fa8;
  --colors-primary-active: #155e8f;
  --colors-primary-disabled: #e2e8f0;
  --colors-accent-teal: #0d9488;
  --colors-accent-cyan: #0ea5e9;
  --colors-canvas: #f8fafc;
  --colors-surface-soft: #f1f5f9;
  --colors-surface-card: #ffffff;
  --colors-surface-cream-strong: #e2e8f0;
  --colors-surface-dark: #0f172a;
  --colors-surface-dark-elevated: #1e293b;
  --colors-surface-dark-soft: #334155;
  --colors-hairline: #e2e8f0;
  --colors-hairline-soft: #f1f5f9;
  --colors-ink: #0f172a;
  --colors-body-strong: #1e293b;
  --colors-body: #334155;
  --colors-muted: #64748b;
  --colors-muted-soft: #94a3b8;
  --colors-on-primary: #ffffff;
  --colors-on-dark: #f8fafc;
  --colors-on-dark-soft: #94a3b8;
  --font-display: 'Cormorant Garamond', 'EB Garamond', Garamond, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --spacing-xxs: 4px;
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  --spacing-section: 96px;
  --rounded-xs: 4px;
  --rounded-sm: 6px;
  --rounded-md: 8px;
  --rounded-lg: 12px;
  --rounded-xl: 16px;
  --rounded-pill: 9999px;
  --rounded-full: 50%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--colors-canvas);
  color: var(--colors-ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

/* Font Loading State - Prevents Jitter */
.fonts-loading body {
  opacity: 0;
  visibility: hidden;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

address {
  font-style: normal;
}

.display-xl {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-md {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.display-sm {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.title-lg {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
}

.title-md {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
}

.title-sm {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.body-md {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--colors-body);
}

.body-sm {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--colors-body);
}

.text-muted {
  color: var(--colors-muted);
}

.text-primary {
  color: var(--colors-primary);
}

.text-black {
  color: var(--colors-black);
}

.text-link {
  color: var(--colors-primary);
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.text-link:hover {
  color: var(--colors-primary-active);
}

.text-link .icon-inline {
  transition: transform 0.2s ease;
}

.text-link:hover .icon-inline {
  transform: translateX(3px);
}

.icon-inline {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section-padding {
  padding: var(--spacing-section) 0;
}

.hero-service-section {
  background-color: var(--colors-surface-soft);
}

.section-header {
  max-width: 640px;
  margin-bottom: var(--spacing-xxl);
}

.section-header .display-lg {
  margin-top: var(--spacing-sm);
}

.section-sub {
  font-size: 18px;
  color: var(--colors-body);
  line-height: 1.65;
  margin-top: var(--spacing-sm);
}

.badge-pill {
  display: inline-block;
  background-color: var(--colors-surface-card);
  color: var(--colors-ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--rounded-pill);
  margin-bottom: var(--spacing-md);
  position: relative;
  overflow: hidden;
}

.badge-pill.Decorative-Line {
  width: 60%;
  background-color: transparent;
}

.badge-pill.white-bg {
  background-color: var(--colors-canvas);
  border: 1px solid var(--colors-canvas);
  color: var(--colors-ink);
}

.badge-teal {
  background-color: var(--colors-accent-teal);
  color: #fff;
}

.badge-blue {
  background-color: var(--colors-primary);
  color: var(--colors-on-primary);
}

.badge-glass-gradient {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}


.badge-glass-gradient::after {
  border: 1.5px solid var(--colors-canvas) !important;
}


.badge-pill.badge-teal::after,
.badge-pill.badge-blue::after {
  /* background-color: rgba(255, 255, 255, 0.846); */
}

.badge-pill.badge-border {
  /* background-color: var(--colors-surface-dark-soft); */
  border: 1px solid var(--colors-accent-teal);
  /* color: var(--colors-on-dark-soft); */
}

.badge-dark {
  display: inline-block;
  background-color: var(--colors-surface-dark-soft);
  color: var(--colors-on-dark-soft);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--rounded-pill);
  margin-bottom: var(--spacing-md);
  position: relative;
  overflow: hidden;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: var(--colors-primary);
  color: var(--colors-on-primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 28px;
  height: 48px;
  border-radius: var(--rounded-md);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.button-primary:hover {
  background-color: var(--colors-primary-active);
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: transparent;
  color: var(--colors-surface-soft);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 28px;
  height: 48px;
  border-radius: var(--rounded-md);
  border: 1px solid var(--colors-hairline);
  transition: background-color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.button-secondary:hover {
  background-color: var(--colors-surface-card);
  color: var(--colors-ink);
  border-color: var(--colors-surface-cream-strong);
}

.button-inverted {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: var(--colors-on-dark);
  color: var(--colors-surface-dark);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 28px;
  height: 48px;
  border-radius: var(--rounded-md);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.button-inverted:hover {
  background-color: var(--colors-surface-dark-soft);
  color: var(--colors-on-dark);
}

.top-nav {
  height: 70px;
  background-color: var(--colors-canvas);
  border-bottom: 1px solid var(--colors-hairline);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s;
}

.top-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--colors-ink);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.nav-brand-dot {
  width: 8px;
  height: 8px;
  background-color: var(--colors-primary);
  border-radius: var(--rounded-full);
  display: inline-block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--colors-body-strong);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--colors-ink);
}

/* Desktop Dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--colors-body-strong);
  transition: color 0.2s;
  padding: 22px 0;
}

.nav-dropdown:hover .nav-dropdown-trigger {
  color: var(--colors-ink);
}

.dropdown-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--colors-surface-card);
  min-width: 280px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08), 0 4px 8px rgba(15, 23, 42, 0.04);
  border-radius: var(--rounded-lg);
  border: 1px solid var(--colors-hairline);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown:focus-within .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown:focus-within .dropdown-arrow {
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown-link {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--colors-body);
  border-radius: var(--rounded-md);
  transition: all 0.2s ease;
  text-align: left;
  display: flex;
  align-items: center;
}

.nav-dropdown-link:hover {
  background-color: var(--colors-surface-soft);
  color: var(--colors-primary);
  transform: translateX(2px);
}

.hero-band {
  padding: var(--spacing-section) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.hero-content .display-xl {
  color: var(--colors-ink);
}

.hero-sub {
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xs);
  flex-wrap: wrap;
}

.hero-visual-card {
  border-radius: var(--rounded-xl);
  height: 520px;
  overflow: hidden;
  position: relative;
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.55) 0%, transparent 50%);
}

.hero-floating-card {
  position: absolute;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--rounded-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.hero-floating-card--top {
  top: 20px;
}

.hero-floating-card--bottom {
  bottom: 20px;
  justify-content: center;
  gap: 24px;
}

.hero-floating-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: pulse-dot 2s infinite;
}

.hero-floating-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--colors-ink);
}

.hero-floating-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero-floating-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--colors-ink);
  line-height: 1;
}

.hero-floating-num sup {
  font-size: 13px;
}

.hero-floating-sub {
  font-size: 11px;
  color: var(--colors-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-floating-divider {
  width: 1px;
  height: 36px;
  background: var(--colors-hairline);
}

.hero-visual-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  color: var(--colors-muted);
  text-align: center;
  padding: var(--spacing-xl);
}

.hero-placeholder-icon {
  font-size: 52px;
  opacity: 0.2;
  display: block;
  margin-bottom: var(--spacing-xs);
}

.logo-strip {
  background-color: var(--colors-canvas);
  padding: var(--spacing-xxl) 0;
  border-top: 1px solid var(--colors-hairline);
  border-bottom: 1px solid var(--colors-hairline);
}

.logo-strip-label {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--colors-muted);
  margin-bottom: var(--spacing-lg);
}

.logo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
  transition: opacity 0.25s;
  flex: 1;
  min-width: 80px;
}

.logo-item:hover {
  opacity: 0.65;
}

.logo-placeholder-box {
  width: 100px;
  height: 38px;
  background-color: var(--colors-surface-cream-strong);
  border-radius: var(--rounded-sm);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.service-card {
  background-color: var(--colors-surface-card);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  border: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--colors-primary);
  box-shadow: 0 4px 20px rgba(26, 92, 74, 0.08);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--rounded-md);
  background-color: var(--colors-canvas);
  border: 1px solid var(--colors-hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.service-card h3 {
  color: var(--colors-ink);
}

.service-card>p {
  color: var(--colors-body);
  font-size: 16px;
  line-height: 1.65;
}

.about-band .service-card {
  background: var(--colors-canvas);
  border-color: var(--colors-hairline);
}

.about-band .service-card .service-icon {
  background: linear-gradient(135deg, #e8f3fb, #dbeeff);
  border-color: #c3ddf5;
}

.about-band .service-card:hover {
  border-color: var(--colors-primary);
  box-shadow: 0 6px 24px rgba(26, 111, 168, 0.1);
}

.about-band {
  background-color: var(--colors-surface-card);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.about-content .display-lg {
  margin-top: var(--spacing-sm);
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xs);
}

.about-pillar {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
}

.pillar-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--rounded-full);
  background-color: var(--colors-primary);
  flex-shrink: 0;
  margin-top: 9px;
}

.about-pillar strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: var(--colors-ink);
  margin-bottom: var(--spacing-xxs);
}

.about-pillar p {
  font-size: 15px;
  color: var(--colors-body);
  line-height: 1.65;
}

.about-cta {
  align-self: flex-start;
}

.about-visual {
  background-color: var(--colors-canvas);
  border-radius: var(--rounded-xl);
  /* height: 520px; */
  overflow: hidden;
  border: 1px solid var(--colors-hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 88px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual-frame {
  position: relative;
  border-radius: var(--rounded-xl);
  overflow: hidden;
  height: 100%;
  min-height: 420px;
}

.about-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--rounded-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d9488, #0a7a70);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-visual-badge strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--colors-ink);
  display: block;
}

.about-visual-badge span {
  font-size: 12px;
  color: var(--colors-muted);
}

.about-visual-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  color: var(--colors-muted);
  text-align: center;
  padding: var(--spacing-xl);
}

.about-placeholder-icon {
  font-size: 52px;
  opacity: 0.2;
  display: block;
  margin-bottom: var(--spacing-xs);
}

/* Sampling cards with images */
.sampling-card--img {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sampling-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.sampling-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sampling-card--img:hover .sampling-card-img img {
  transform: scale(1.04);
}

.sampling-card-num-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--colors-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--rounded-full);
}

.sampling-card-num-badge--teal {
  background: var(--colors-accent-teal);
}

.sampling-card-num-badge--dark {
  background: var(--colors-surface-dark);
}

.sampling-card-body {
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  flex: 1;
}

.sampling-card-body .title-md {
  margin: 0;
}

/* Process image band */
.process-image-band {
  position: relative;
  margin-top: var(--spacing-xxl);
  border-radius: var(--rounded-xl);
  overflow: hidden;
  height: 280px;
}

.process-image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-image-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 29, 48, 0.75) 0%, rgba(13, 29, 48, 0.3) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 var(--spacing-xxl);
}

.sampling-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.sampling-card {
  background-color: var(--colors-surface-card);
  border-radius: var(--rounded-lg);
  /* padding: var(--spacing-xl); */
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  border: 1px solid var(--colors-hairline);
  transition: box-shadow 0.2s;
}

.sampling-card:hover {
  box-shadow: 0 4px 20px rgba(26, 92, 74, 0.07);
}

.sampling-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 500;
  color: var(--colors-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.sampling-card h3 {
  color: var(--colors-ink);
}

.sampling-card p {
  color: var(--colors-body);
  font-size: 16px;
  line-height: 1.65;
}

.process-section {
  background-color: var(--colors-surface-card);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xxl);
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: var(--spacing-xl);
  background-color: var(--colors-canvas);
  border-radius: var(--rounded-lg);
  border: 1px solid var(--colors-hairline);
}

.step-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  color: var(--colors-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.process-step h3 {
  color: var(--colors-ink);
  font-size: 19px;
  font-weight: 500;
}

.process-step p {
  color: var(--colors-body);
  font-size: 15px;
  line-height: 1.65;
}

.stats-band {
  background-color: var(--colors-surface-dark);
  padding: var(--spacing-section) 0;
}

.stats-intro {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.stats-intro .display-md {
  color: var(--colors-on-dark);
}

.stats-intro p {
  color: var(--colors-on-dark-soft);
  margin-top: var(--spacing-sm);
  font-size: 17px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.stat-card {
  background-color: var(--colors-surface-dark-elevated);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-xl);
  text-align: center;
  border: 1px solid var(--colors-surface-dark-soft);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--colors-on-dark);
  display: block;
  margin-bottom: var(--spacing-xs);
}

.stat-accent {
  color: var(--colors-accent-gold);
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--colors-on-dark-soft);
}

/* ─── Hero Stats (About Page) ────────────── */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(var(--spacing-md), 4vw, var(--spacing-xxl));
  margin-top: var(--spacing-xxl);
  padding: var(--spacing-xl) var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  /* Prevents overflow in flex */
  position: relative;
}

.hero-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: calc(clamp(var(--spacing-md), 4vw, var(--spacing-xxl)) / -2);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.15);
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: clamp(9px, 1.2vw, 12px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--colors-on-dark-soft);
  text-align: center;
  opacity: 0.8;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero-stats {
    gap: var(--spacing-md);
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .hero-stat-item:not(:last-child)::after {
    right: calc(var(--spacing-md) / -2);
    height: 40px;
  }
}

@media (max-width: 590px) {
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl) 0;
    padding: var(--spacing-xl) var(--spacing-sm);
  }

  .hero-stat-item {
    border: none;
  }

  .hero-stat-item:not(:last-child)::after {
    display: none;
  }

  .hero-stat-number {
    font-size: 48px;
  }

  /* Vertical dividers for 2x2 grid */
  .hero-stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xxl);
}

.case-study-card {
  padding: 20px;
  background-color: var(--colors-surface-card);
  border-radius: var(--rounded-lg);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--colors-hairline);
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  overflow: hidden;
}

.case-study-visual {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.case-study-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.case-study-card:hover .case-study-img { transform: scale(1.03); }

.case-study-card-body {
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  flex: 1;
}

.case-study-card > .badge-pill { display: none; } /* moved inside body */

.badge-blue {
  background: rgba(26,111,168,0.1);
  color: var(--colors-primary);
  border: 1px solid rgba(26,111,168,0.2);
  width: fit-content;
}
.badge-teal {
  background: rgba(13,148,136,0.1);
  color: var(--colors-accent-teal);
  border: 1px solid rgba(13,148,136,0.2);
  width: fit-content;
}
.badge-dark-neutral {
  background: rgba(15,23,42,0.08);
  color: var(--colors-body-strong);
  border: 1px solid rgba(15,23,42,0.12);
  width: fit-content;
}

.case-study-card:hover {
  box-shadow: 0 12px 40px rgba(15,23,42,0.1);
  border-color: var(--colors-primary);
  transform: translateY(-3px);
}

.case-study-outcome {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--colors-body-strong);
  letter-spacing: -0.01em;
  line-height: 1.35;
  border-left: 3px solid var(--colors-primary);
  padding-left: var(--spacing-md);
}
.badge-teal ~ .case-study-outcome { border-left-color: var(--colors-accent-teal); }

.case-study-card-body > p {
  font-size: 15px;
  color: var(--colors-body);
  line-height: 1.7;
  flex: 1;
}

.testimonials-section {
  background-color: var(--colors-surface-soft);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xxl);
}

.testimonial-card {
  background-color: var(--colors-canvas);
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.testimonial-quote {
  font-size: 17px;
  font-style: italic;
  color: var(--colors-body-strong);
  line-height: 1.75;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--rounded-full);
  background-color: var(--colors-surface-card);
  border: 1px solid var(--colors-hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--colors-surface-cream-strong);
}

.author-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--colors-ink);
}

.author-company {
  font-size: 13px;
  color: var(--colors-muted);
  margin-top: 2px;
}

.cta-band {
  background-color: var(--colors-surface-dark);
  padding: 80px 0;
}

.cta-band-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
}

.cta-band-inner .display-md {
  color: var(--colors-on-dark);
}

.cta-band-inner>p {
  color: var(--colors-on-dark-soft);
  font-size: 17px;
  line-height: 1.7;
}

.contact-section {
  background-color: var(--colors-canvas);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  position: sticky;
  top: 88px;
}

.contact-info .display-lg {
  margin-top: var(--spacing-sm);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: var(--spacing-xl);
  background-color: var(--colors-surface-card);
  border-radius: var(--rounded-lg);
  border: 1px solid var(--colors-hairline);
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-detail-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--colors-muted);
}

.contact-detail-value {
  font-size: 16px;
  color: var(--colors-ink);
  transition: color 0.2s;
}

a.contact-detail-value:hover {
  color: var(--colors-primary);
}

.contact-form-card {
  background-color: var(--colors-canvas);
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-xl);
  padding: var(--spacing-xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--colors-ink);
  letter-spacing: 0.2px;
}

.form-input {
  background-color: var(--colors-canvas);
  color: var(--colors-ink);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 10px 14px;
  height: 48px;
  border-radius: var(--rounded-md);
  border: 1px solid var(--colors-hairline);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-input:focus {
  border-color: var(--colors-primary);
  box-shadow: 0 0 0 3px rgba(26, 92, 74, 0.1);
}

.form-input::placeholder {
  color: var(--colors-muted-soft);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236c6a64' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}

.form-textarea {
  height: auto;
  resize: vertical;
  min-height: 128px;
}

.form-submit {
  align-self: flex-start;
  min-width: 180px;
}

.form-feedback {
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.form-feedback--success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-feedback--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  margin-bottom: var(--spacing-sm);
}

/* Contact page hero */
.contact-page-hero {
  background: linear-gradient(145deg, #0d2d4a 0%, #0f172a 55%, #062e2b 100%);
  padding: var(--spacing-section) 0;
  position: relative;
  overflow: hidden;
  border-bottom: none;
}

.contact-page-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-page-hero-deco::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  top: -250px;
  right: -200px;
}

.contact-page-hero-deco::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 1px solid rgba(13, 148, 136, 0.1);
  bottom: -100px;
  left: -80px;
}

.contact-page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-page-hero-text {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-page-hero-text .display-xl {
  color: var(--colors-on-dark);
}

.contact-page-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 440px;
}

.contact-page-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-lg) var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: 4px;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}

.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-info-card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: rgba(255, 255, 255, 0.4);
}

.contact-info-card-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--colors-on-dark);
  text-decoration: none;
  transition: color 0.2s;
}

a.contact-info-card-value:hover {
  color: var(--colors-accent-teal);
}

/* Contact body & sidebar */
.contact-body {
  background-color: var(--colors-canvas);
}

.contact-body--enhanced {
  background: var(--colors-surface-soft);
}

.contact-info-dark-card {
  background: linear-gradient(145deg, #0d2d4a, #0f172a);
  border-radius: var(--rounded-xl);
  padding: var(--spacing-xl);
  color: var(--colors-on-dark);
}

.contact-info-dark-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--colors-on-dark);
  margin-bottom: var(--spacing-lg);
}

.contact-why-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-why-list li {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
}

.contact-why-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--colors-accent-teal);
  flex-shrink: 0;
  margin-top: 6px;
}

.contact-why-list strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--colors-on-dark);
  display: block;
  margin-bottom: 3px;
}

.contact-why-list p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}

.contact-sidebar-note {
  padding: var(--spacing-lg);
  background-color: var(--colors-surface-soft);
  border-radius: var(--rounded-lg);
  border: 1px solid var(--colors-hairline);
}

.contact-sidebar-note--accent {
  background: #f0f7ff;
  border-color: #c3ddf5;
}

.contact-sidebar-note p {
  font-size: 15px;
  color: var(--colors-body);
  line-height: 1.65;
}

.contact-sidebar-note strong {
  color: var(--colors-ink);
}

/* Contact form card */
.contact-form-card--elevated {
  background: var(--colors-canvas);
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-xl);
  padding: var(--spacing-xxl);
  box-shadow: 0 4px 32px rgba(15, 23, 42, 0.07);
}

.contact-form-card-header {
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--colors-hairline);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--colors-ink);
  margin-bottom: 6px;
}

.contact-form-subtitle {
  font-size: 15px;
  color: var(--colors-body);
  line-height: 1.6;
}

/* Contact hero (legacy, kept for safety) */
.contact-hero {
  padding: var(--spacing-section) 0 var(--spacing-xxl);
  background-color: var(--colors-canvas);
  border-bottom: 1px solid var(--colors-hairline);
}

.contact-hero-sub {
  max-width: 560px;
  margin-top: var(--spacing-lg);
}

@media (max-width: 1024px) {
  .contact-page-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-page-info-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-info-card {
    flex: 1 1 140px;
  }
}

@media (max-width: 768px) {
  .contact-page-info-cards {
    flex-direction: column;
  }

  .contact-info-card {
    flex: unset;
  }

  .contact-form-card--elevated {
    padding: var(--spacing-xl);
  }
}

.mobile-nav-link-active {
  color: var(--colors-primary);
}

.section-label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.section-label .badge-pill,
.section-label .badge-dark {
  margin-bottom: 0;
}

.badge-pill::after,
.badge-dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 2px;
  background-color: var(--colors-primary-active);
  border-radius: var(--rounded-pill);
  animation: pill-progress-elegant 2s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.stats-band .badge-dark::after,
.cta-band .badge-dark::after {
  background-color: var(--colors-accent-gold);
}

@keyframes pill-progress-elegant {
  0% {
    left: 0%;
    right: 100%;
  }

  35% {
    left: 50%;
    right: 35%;
  }

  65% {
    left: 35%;
    right: 50%;
  }

  100% {
    left: 100%;
    right: 0%;
  }
}

.footer {
  background-color: var(--colors-surface-dark);
  border-top: 1px solid var(--colors-surface-dark-soft);
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-xxl);
  margin-bottom: var(--spacing-xxl);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--colors-ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo {
  width: 150px;
  height: auto;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--colors-on-dark);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--spacing-md);
}

.footer-mission {
  font-size: 15px;
  color: var(--colors-on-dark-soft);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col-heading {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--colors-on-dark);
  margin-bottom: var(--spacing-md);
}

.footer-link {
  display: block;
  font-size: 15px;
  color: var(--colors-on-dark-soft);
  margin-bottom: var(--spacing-sm);
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--colors-on-dark);
}

.footer-link-mt {
  margin-top: var(--spacing-sm);
}

.footer-address {
  font-size: 15px;
  color: var(--colors-on-dark-soft);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.footer-bottom {
  border-top: 1px solid var(--colors-surface-dark-soft);
  padding-top: var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 14px;
  color: var(--colors-on-dark-soft);
}

.footer-social {
  display: flex;
  gap: var(--spacing-md);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--rounded-full);
  background-color: var(--colors-surface-dark-elevated);
  border: 1px solid var(--colors-surface-dark-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--colors-on-dark-soft);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s, border-color 0.2s;
}

.social-link:hover {
  color: var(--colors-on-dark);
  border-color: var(--colors-on-dark-soft);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 210;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--colors-ink);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}

/* Hamburger active state */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: flex;
  position: fixed;
  inset: 0;
  background-color: var(--colors-canvas);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: var(--spacing-xl);
  padding-top: 12vh; /* Reduced from 13vh to work with header */

  /* Initial hidden state (top) */
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease, visibility 0.65s;
}

.mobile-nav.open {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}

/* Fast roll-up on close */
.mobile-nav.closing {
  transition: transform 0.35s cubic-bezier(0.4, 0, 1, 1),
              opacity 0.25s ease,
              visibility 0.35s;
}

.mobile-nav.closing .mobile-nav-link,
.mobile-nav.closing .mobile-nav-dropdown,
.mobile-nav.closing .mobile-nav-cta {
  opacity: 0 !important;
  transform: translateY(-12px) !important;
  transition: opacity 0.15s ease !important;
  transform: 0.15s ease !important;
  transition-delay: 0s !important;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--colors-ink);
  letter-spacing: -0.02em;
  transition: color 0.2s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;

  /* Initial state for staggered entry */
  opacity: 0;
  transform: translateY(30px);
}

.mobile-nav.open .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-link:hover {
  color: var(--colors-primary);
}

/* Staggered entrance delays */
.mobile-nav.open .mobile-nav-link:nth-of-type(1) {
  transition-delay: 0.15s;
}

.mobile-nav.open .mobile-nav-link:nth-of-type(2) {
  transition-delay: 0.20s;
}

.mobile-nav.open .mobile-nav-link:nth-of-type(3) {
  transition-delay: 0.25s;
}

.mobile-nav.open .mobile-nav-link:nth-of-type(4) {
  transition-delay: 0.30s;
}

.mobile-nav.open .mobile-nav-link:nth-of-type(5) {
  transition-delay: 0.35s;
}

.mobile-nav.open .mobile-nav-cta {
  transition-delay: 0.40s;
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Dropdown */
.mobile-nav-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.mobile-nav-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
}

.mobile-nav-dropdown-trigger .dropdown-arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-4px) rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-dropdown-content {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
  width: 100%;
  background-color: var(--colors-surface-soft);
  padding: var(--spacing-lg) 0;
  border-radius: var(--rounded-lg);
}

.mobile-nav-dropdown-content.open {
  display: flex;
  animation: slideDownMobile 0.3s ease-out forwards;
}

@keyframes slideDownMobile {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav-sublink {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--colors-muted);
  transition: color 0.2s;
  text-align: center;
  padding: 6px 16px;
}

.mobile-nav-sublink:hover {
  color: var(--colors-ink);
}

.mobile-nav-cta {
  margin-top: var(--spacing-xs);
}

/* Mobile nav logo (top-left) */
.mobile-nav-logo-link {
  display: flex;
  align-items: center;
}

.mobile-nav-logo-img {
  width: 150px;
  height: auto;
}

.mobile-nav-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 16px 8px;
  border-bottom: 1px solid var(--colors-muted-soft);
  background-color: var(--colors-canvas);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

/* Form submit — loading state */
.form-submit--loading {
  opacity: 0.75;
  cursor: not-allowed;
  pointer-events: none;
  gap: 10px;
}

.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
  flex-shrink: 0;
  vertical-align: middle;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

.mobile-nav-close {
  color: var(--colors-muted);
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.mobile-nav-close:hover {
  opacity: 0.7;
}

@media (max-width: 1200px) {
  .about-grid {
    gap: 48px;
  }

  .contact-grid {
    gap: 48px;
  }

  .hero-grid {
    gap: 48px;
  }
}

@media (max-width: 1024px) {
  .display-xl {
    font-size: 60px;
  }

  .display-lg {
    font-size: 48px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-card {
    height: 380px;
  }

  .hero-sub {
    max-width: 100%;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sampling-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    position: static;
    height: 340px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
  }
}

@media (max-width: 920px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .display-xl {
    font-size: 44px;
  }

  .display-lg {
    font-size: 36px;
  }

  .display-md {
    font-size: 30px;
  }

  .stat-number {
    font-size: 52px;
  }

  .hero-band {
    padding: 64px 0;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-visual-card {
    height: 280px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button-primary,
  .hero-actions .button-secondary {
    justify-content: center;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .sampling-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .case-study-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-strip-inner {
    justify-content: center;
    gap: var(--spacing-md);
  }

  .logo-item {
    flex: 0 0 auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    width: 100%;
    justify-content: center;
  }

  .cta-band {
    padding: 64px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .display-xl {
    font-size: 34px;
  }

  .display-lg {
    font-size: 30px;
  }

  .display-md {
    font-size: 26px;
  }

  .display-sm {
    font-size: 22px;
  }

  .stat-number {
    font-size: 44px;
  }

  .container {
    padding: 0 var(--spacing-md);
  }

  .section-padding {
    padding: 64px 0;
  }

  .stats-band {
    padding: 64px 0;
  }

  .hero-band {
    padding: 56px 0;
  }

  .cta-band {
    padding: 56px 0;
  }

  .hero-visual-card {
    height: 220px;
  }

  .service-card,
  .sampling-card,
  .process-step,
  .case-study-card,
  .testimonial-card {
    padding: var(--spacing-lg);
  }

  .stat-card {
    padding: var(--spacing-lg);
  }

  .stats-grid {
    gap: var(--spacing-sm);
  }

  .contact-form-card {
    padding: var(--spacing-lg);
  }

  .contact-details {
    padding: var(--spacing-lg);
  }

  .about-visual {
    height: 240px;
  }

  .mobile-nav-link {
    font-size: 28px;
  }

  .section-sub {
    font-size: 16px;
  }

  .body-md {
    font-size: 16px;
  }
}

.footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: var(--spacing-sm);
}

/* Centered hero (about, methodology) */
.centered-hero {
  padding: var(--spacing-section) 0;
  text-align: center;
  background-color: var(--colors-surface-soft);
  border-bottom: 1px solid var(--colors-hairline);
  position: relative;
  overflow: hidden;
}

.centered-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.centered-hero .display-xl,
.centered-hero .display-lg {
  margin-top: var(--spacing-xs);
}

.centered-hero .body-md,
.centered-hero .body-lg {
  max-width: 600px;
}

/* Dark hero variant used on sampling, methodology, about */
.centered-hero--dark {
  background: linear-gradient(145deg, #0d2d4a 0%, #0f172a 60%, #062e2b 100%);
  border-bottom: none;
}

.centered-hero--dark::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  top: -200px;
  right: -150px;
  pointer-events: none;
}

.centered-hero--dark::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  bottom: -100px;
  left: -80px;
  pointer-events: none;
}

.centered-hero--dark .display-xl,
.centered-hero--teal .display-xl,
.centered-hero--dark .display-lg {
  color: var(--colors-on-dark);
}

.centered-hero--dark .body-md,
.centered-hero--teal .body-lg,
.centered-hero--teal .body-md,
.centered-hero--dark .body-lg {
  color: rgba(255, 255, 255, 0.7);
}

.centered-hero--teal {
  background: linear-gradient(145deg, #062e2b 0%, #0f172a 60%, #0d2d4a 100%);
}

.centered-hero--teal::before {
  border-color: rgba(13, 148, 136, 0.12);
}

.centered-hero--teal::after {
  border-color: rgba(13, 148, 136, 0.08);
}

/* Typography: body-lg */
.body-lg {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--colors-body);
}

/* Nav active state */
.nav-link-active {
  color: var(--colors-primary) !important;
}

/* Service icon SVG colour */
.service-icon svg {
  display: block;
}

@media (max-width: 768px) {
  .centered-hero {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .centered-hero {
    padding: 56px 0;
  }
}

/* Sampling types page */
.sampling-types-stack {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.sampling-type-card {
  background-color: var(--colors-surface-card);
  border-radius: var(--rounded-xl);
  border: 1px solid var(--colors-hairline);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: start;
  transition: box-shadow 0.25s, transform 0.25s;
}

.sampling-type-card:hover {
  box-shadow: 0 12px 40px rgba(26, 111, 168, 0.1);
  transform: translateY(-2px);
}

.sampling-type-main {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  padding: var(--spacing-xxl);
  position: relative;
  overflow: hidden;
}

.sampling-type-main::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  opacity: 0.06;
  top: -60px;
  right: -60px;
  pointer-events: none;
}

.sampling-type-card--blue .sampling-type-main {
  background: linear-gradient(135deg, #f0f7ff 0%, #fff 60%);
}

.sampling-type-card--blue .sampling-type-main::before {
  background: var(--colors-primary);
}

.sampling-type-card--teal .sampling-type-main {
  background: linear-gradient(135deg, #f0fdf9 0%, #fff 60%);
}

.sampling-type-card--teal .sampling-type-main::before {
  background: var(--colors-accent-teal);
}

.sampling-type-card--muted .sampling-type-main {
  background: linear-gradient(135deg, #f8f8f8 0%, #fff 60%);
}

.sampling-type-card--muted .sampling-type-main::before {
  background: #64748b;
}

.sampling-type-main .sampling-number {
  font-size: 80px;
  line-height: 1;
  font-weight: 700;
  opacity: 0.15;
  margin-bottom: -8px;
}

.sampling-type-card--blue .sampling-number {
  color: var(--colors-primary);
  opacity: 1;
}

.sampling-type-card--teal .sampling-number {
  color: var(--colors-accent-teal);
  opacity: 1;
}

.sampling-type-card--muted .sampling-number {
  color: #64748b;
  opacity: 1;
}

.sampling-type-main .display-sm {
  color: var(--colors-ink);
}

.sampling-type-main .body-md {
  color: var(--colors-body);
}

.sampling-type-meta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  padding: var(--spacing-xxl);
  border-top: 1px solid var(--colors-hairline);
}

.sampling-meta-block {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.sampling-meta-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--colors-muted);
  display: block;
  margin-bottom: var(--spacing-xs);
}

.sampling-meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sampling-meta-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--colors-body);
  line-height: 1.55;
}

.sampling-meta-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: var(--rounded-full);
  background-color: var(--colors-primary);
  flex-shrink: 0;
  margin-top: 7px;
}

.sampling-meta-highlight {
  background-color: var(--colors-surface-soft);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-lg);
  border-left: 3px solid var(--colors-primary);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.sampling-meta-highlight p {
  font-size: 15px;
  color: var(--colors-body);
  line-height: 1.65;
}

/* Color accents per method */
.sampling-type-card--blue {
  border-top: 3px solid var(--colors-primary);
}

.sampling-type-card--teal {
  border-top: 3px solid var(--colors-accent-teal);
}

.sampling-type-card--muted {
  border-top: 3px solid var(--colors-muted);
}

.sampling-type-card--blue .sampling-number {
  color: var(--colors-primary);
}

.sampling-type-card--teal .sampling-number {
  color: var(--colors-accent-teal);
}

.sampling-type-card--muted .sampling-number {
  color: var(--colors-muted);
}

.sampling-type-card--teal .sampling-meta-highlight {
  border-left-color: var(--colors-accent-teal);
}

.sampling-type-card--muted .sampling-meta-highlight {
  border-left-color: var(--colors-muted);
}

/* Sampling sticky sidebar layout */
.sampling-methods-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.sampling-methods-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.sampling-sidebar-sub {
  font-size: 22px;
  color: var(--colors-body);
  line-height: 1.7;
}

.sampling-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  border-top: 1px solid var(--colors-hairline);
  padding-top: var(--spacing-lg);
}

.sampling-sidebar-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--colors-muted);
  transition: color 0.2s;
  padding: 3px 0;
}

.sampling-sidebar-link:hover {
  color: var(--colors-ink);
}

.sampling-sidebar-link-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--rounded-full);
  background-color: currentColor;
  flex-shrink: 0;
}

/* Method comparison section */
.method-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xxl);
}

.method-comparison-card {
  background-color: var(--colors-surface-card);
  border-radius: var(--rounded-lg);
  border: 1px solid var(--colors-hairline);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.method-comparison-card:hover {
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.comparison-header {
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.comparison-header--blue {
  background-color: var(--colors-primary);
}

.comparison-header--teal {
  background-color: var(--colors-accent-teal);
}

.comparison-header--neutral {
  background-color: var(--colors-surface-dark);
}

.comparison-method-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.35);
}

.comparison-method-name {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  font-family: var(--font-display);
}

.comparison-body {
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  flex: 1;
}

.comparison-trigger {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--colors-muted);
  display: block;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  flex: 1;
}

.comparison-list li {
  font-size: 15px;
  color: var(--colors-body);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.comparison-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: var(--rounded-full);
  background-color: var(--colors-primary);
  flex-shrink: 0;
  margin-top: 7px;
}

.method-comparison-card:nth-child(2) .comparison-list li::before {
  background-color: var(--colors-accent-teal);
}

.method-comparison-card:nth-child(3) .comparison-list li::before {
  background-color: var(--colors-muted);
}

.comparison-card-cta {
  margin-top: var(--spacing-md);
}

/* Combined approach band */
.combined-band {
  background-color: var(--colors-surface-dark-elevated);
  padding: var(--spacing-section) 0;
  border-top: 1px solid var(--colors-surface-dark-soft);
}

.combined-band-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: center;
}

.combined-band-intro {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.combined-band-intro .display-md {
  color: var(--colors-on-dark);
}

.combined-band-intro>p {
  color: var(--colors-on-dark-soft);
  font-size: 17px;
  line-height: 1.7;
}

.combined-phases {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.combined-phase {
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
  padding: var(--spacing-lg) var(--spacing-xl);
  background-color: var(--colors-surface-dark);
  border-radius: var(--rounded-lg);
  border: 1px solid var(--colors-surface-dark-soft);
}

.phase-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.combined-phase:nth-child(1) .phase-num {
  color: var(--colors-primary);
}

.combined-phase:nth-child(2) .phase-num {
  color: var(--colors-accent-teal);
}

.combined-phase:nth-child(3) .phase-num {
  color: var(--colors-on-dark-soft);
}

.phase-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--colors-on-dark);
  margin-bottom: 4px;
}

.phase-desc {
  font-size: 14px;
  color: var(--colors-on-dark-soft);
  line-height: 1.6;
}

@media (max-width: 1024px) {

  .sampling-methods-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sampling-methods-sidebar {
    position: static;
  }

  .method-comparison-grid {
    grid-template-columns: 1fr;
  }

  .combined-band-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .sampling-sidebar-sub {
    font-size: 18px;
  }

  .combined-band {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {

  .sampling-type-main,
  .sampling-type-meta {
    padding: var(--spacing-xl);
  }

  .sampling-type-main .sampling-number {
    font-size: 52px;
  }
}

/* Services page */
.services-hero {
  border-bottom: 1px solid var(--colors-hairline);
}

.body-lg {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--colors-body);
}

.services-quick-nav {
  background-color: var(--colors-surface-card);
  border-bottom: 1px solid var(--colors-hairline);
  padding: 14px 0;
  position: sticky;
  top: 64px;
  z-index: 90;
}

.services-quick-nav-inner {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}

.services-quick-nav-inner::-webkit-scrollbar {
  display: none;
}

.services-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--colors-muted);
  white-space: nowrap;
  transition: color 0.2s;
}

.services-quick-link:hover {
  color: var(--colors-ink);
}

.services-quick-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--rounded-full);
  flex-shrink: 0;
}

.services-quick-dot--blue {
  background-color: var(--colors-primary);
}

.services-quick-dot--teal {
  background-color: var(--colors-accent-teal);
}

.services-quick-dot--neutral {
  background-color: var(--colors-muted);
}

.service-section {
  background-color: var(--colors-canvas);
}

.service-section--alt {
  background-color: var(--colors-surface-soft);
}

.service-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-section-grid--reverse .service-section-content {
  order: 2;
}

.service-section-grid--reverse .service-section-visual {
  order: 1;
}

.service-section-label {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.service-index {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
}

.service-index--blue {
  color: var(--colors-primary);
}

.service-index--teal {
  color: var(--colors-accent-teal);
}

.service-index--neutral {
  color: var(--colors-muted);
}

.service-index--teal-on-dark {
  color: var(--colors-accent-teal);
}

.service-section-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.service-section-content .display-lg {
  margin-top: 0;
}

.service-section-content .section-sub {
  margin-top: 0;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-xs);
}

.service-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--colors-body-strong);
  background-color: var(--colors-surface-cream-strong);
  padding: 4px 12px;
  border-radius: var(--rounded-pill);
  letter-spacing: 0.3px;
}

.service-callout {
  background-color: var(--colors-surface-card);
  border-left: 3px solid var(--colors-accent-teal);
  border-radius: 0 var(--rounded-md) var(--rounded-md) 0;
  padding: var(--spacing-md) var(--spacing-lg);
  margin: var(--spacing-xs) 0;
}

.service-callout strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--colors-ink);
  display: block;
  margin-bottom: 4px;
}

.service-callout p {
  font-size: 14px;
  color: var(--colors-body);
  line-height: 1.55;
}

.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-sm);
}

.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.service-feature-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--rounded-full);
  background-color: var(--colors-primary);
  flex-shrink: 0;
  margin-top: 7px;
}

.service-feature-list li strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--colors-ink);
  display: block;
  margin-bottom: 4px;
}

.service-feature-list li p {
  font-size: 15px;
  color: var(--colors-body);
  line-height: 1.55;
}

/* Service section CTA link */
.service-section-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 1.5rem;
  font-size: 15px;
  font-weight: 600;
  color: var(--colors-primary);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: gap 0.2s ease, opacity 0.2s ease;
}

.service-section-cta:hover {
  gap: 8px;
  opacity: 0.8;
}

.service-section-cta--dark {
  display: block;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.75);
}

.service-section-cta--dark:hover {
  color: #fff;
  opacity: 1;
}

/* Service visual panels */
.service-section-visual {
  border-radius: var(--rounded-xl);
  overflow: hidden;
  min-height: 440px;
}

.service-visual--blue {
  background: linear-gradient(135deg, var(--colors-primary) 0%, #0d5a8e 100%);
}

.service-visual--teal {
  background: linear-gradient(135deg, var(--colors-accent-teal) 0%, #0a7c72 100%);
}

.service-visual--dark {
  background: linear-gradient(135deg, var(--colors-surface-dark) 0%, var(--colors-surface-dark-elevated) 100%);
}

.service-visual-inner {
  width: 100%;
  height: 100%;
  min-height: 440px;
  padding: var(--spacing-xxl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-visual-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.deco-circle--lg {
  width: 320px;
  height: 320px;
  border-radius: var(--rounded-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: absolute;
  top: -80px;
  right: -80px;
}

.deco-circle--sm {
  width: 180px;
  height: 180px;
  border-radius: var(--rounded-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: absolute;
  bottom: 40px;
  left: -40px;
}

.deco-square--lg {
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rounded-xl);
  position: absolute;
  top: -60px;
  right: -60px;
  transform: rotate(20deg);
}

.deco-square--sm {
  width: 140px;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--rounded-lg);
  position: absolute;
  bottom: 30px;
  left: -30px;
  transform: rotate(15deg);
}

.deco-triangle {
  width: 0;
  height: 0;
  border-left: 180px solid transparent;
  border-right: 180px solid transparent;
  border-bottom: 320px solid rgba(255, 255, 255, 0.04);
  position: absolute;
  top: -40px;
  right: -60px;
}

.service-visual-icon {
  position: relative;
  z-index: 1;
}

.service-visual-stats {
  display: flex;
  gap: var(--spacing-xxl);
  position: relative;
  z-index: 1;
}

.service-visual-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-visual-stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}

.service-visual-stat-number .stat-accent {
  color: rgba(255, 255, 255, 0.55);
  font-size: 32px;
}

.service-visual-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* BTL dark band */
.service-dark-band {
  background-color: var(--colors-surface-dark);
}

.service-dark-band-header {
  max-width: 720px;
  margin-bottom: var(--spacing-xxl);
}

.service-dark-band-header .display-lg {
  color: var(--colors-on-dark);
  margin-top: var(--spacing-sm);
}

.btl-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.btl-card {
  background-color: var(--colors-surface-dark-elevated);
  border: 1px solid var(--colors-surface-dark-soft);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  transition: border-color 0.2s, transform 0.2s;
}

.btl-card:hover {
  border-color: var(--colors-accent-teal);
  transform: translateY(-3px);
}

.btl-card-icon {
  color: var(--colors-accent-teal);
  margin-bottom: var(--spacing-xs);
}

.btl-card .title-sm {
  color: var(--colors-on-dark);
}

.btl-card p {
  font-size: 14px;
  color: var(--colors-on-dark-soft);
  line-height: 1.6;
}

/* Liquidation band */
.liquidation-band {
  background-color: var(--colors-surface-soft);
}

.liquidation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.liquidation-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.liquidation-content .display-lg {
  margin-top: 0;
}

.liquidation-content .section-sub {
  margin-top: 0;
}

.liquidation-content .button-primary {
  margin-top: var(--spacing-xs);
  align-self: flex-start;
}

.liquidation-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.liquidation-visual-block {
  background-color: var(--colors-surface-card);
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  transition: box-shadow 0.2s;
}

.liquidation-visual-block:hover {
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.liquidation-visual-block strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--colors-ink);
}

.liquidation-visual-block p {
  font-size: 13px;
  color: var(--colors-muted);
  line-height: 1.5;
}

.liquidation-block--accent {
  background-color: var(--colors-primary);
  border-color: var(--colors-primary);
}

.liquidation-block--accent strong {
  color: #fff;
}

.liquidation-block--accent p {
  color: rgba(255, 255, 255, 0.75);
}

/* Services page responsive */
@media (max-width: 1024px) {
  .service-section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-section-grid--reverse .service-section-content {
    order: 1;
  }

  .service-section-grid--reverse .service-section-visual {
    order: 2;
  }

  .btl-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .liquidation-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .service-section-visual {
    min-height: 320px;
  }

  .service-visual-inner {
    min-height: 320px;
    padding: var(--spacing-xl);
  }

  .service-visual-stat-number {
    font-size: 32px;
  }

  .service-index {
    font-size: 40px;
  }

  .services-quick-nav-inner {
    gap: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .btl-cards-grid {
    grid-template-columns: 1fr;
  }

  .liquidation-visual-grid {
    grid-template-columns: 1fr;
  }

  .service-visual-stats {
    flex-direction: column;
    gap: var(--spacing-md);
  }
}

/* Service standalone pages */
.service-solo-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 580px;
  min-height: 580px;
  max-height: 580px;
  overflow: hidden;
  border-bottom: 1px solid var(--colors-hairline);
}

.service-solo-hero-left {
  padding: var(--spacing-section) var(--spacing-xxl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-lg);
  position: relative;
  overflow: hidden;
}

.service-solo-hero-left--blue {
  background: linear-gradient(145deg, #0d2d4a 0%, var(--colors-surface-dark) 70%);
}

.service-solo-hero-left--teal {
  background: linear-gradient(145deg, #062e2b 0%, var(--colors-surface-dark) 70%);
}

.service-solo-hero-left--dark {
  background: linear-gradient(145deg, #1a1a2e 0%, var(--colors-surface-dark) 70%);
}

.service-solo-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.service-solo-hero-deco::before {
  content: '';
  width: 500px;
  height: 500px;
  border-radius: var(--rounded-full);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: absolute;
  top: -150px;
  right: -200px;
}

.service-solo-hero-deco::after {
  content: '';
  width: 260px;
  height: 260px;
  border-radius: var(--rounded-full);
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: absolute;
  bottom: -60px;
  left: -60px;
}

.service-solo-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.service-solo-back {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.service-solo-back:hover {
  color: rgba(255, 255, 255, 0.8);
}

.service-solo-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
}

.service-solo-hero-left .display-xl,
.service-solo-hero-left .display-lg {
  color: var(--colors-on-dark);
  position: relative;
  z-index: 1;
}

.service-solo-hero-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--colors-on-dark-soft);
  max-width: 480px;
  position: relative;
  z-index: 1;
}

.service-solo-hero-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.service-solo-hero-right {
  position: relative;
  overflow: hidden;
}

.service-solo-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-solo-hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.45), transparent 60%);
}

.service-solo-breadcrumb {
  background-color: var(--colors-surface-card);
  border-bottom: 1px solid var(--colors-hairline);
  padding: 10px 0;
}

.service-solo-breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--colors-muted);
}

.service-solo-breadcrumb-inner a {
  color: var(--colors-muted);
  transition: color 0.2s;
}

.service-solo-breadcrumb-inner a:hover {
  color: var(--colors-primary);
}

.service-solo-breadcrumb-sep {
  font-size: 11px;
  color: var(--colors-muted-soft);
}

.service-solo-breadcrumb-current {
  color: var(--colors-ink);
  font-weight: 500;
}

.service-solo-intro {
  padding: var(--spacing-section) 0;
}

.service-solo-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}

.service-solo-intro-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.service-solo-intro-content .display-lg {
  margin-top: 0;
}

.service-solo-intro-content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--colors-body);
}

.service-solo-intro-aside {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.service-solo-aside-card {
  background-color: var(--colors-surface-card);
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-lg) var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-solo-aside-card:hover {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  border-color: var(--colors-primary);
}

.service-solo-aside-card:nth-child(2):hover {
  border-color: var(--colors-accent-teal);
}

.service-solo-aside-card-icon {
  margin-bottom: 4px;
  color: var(--colors-primary);
}

.service-solo-aside-card-icon--teal {
  color: var(--colors-accent-teal);
}

.service-solo-aside-card strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--colors-ink);
}

.service-solo-aside-card p {
  font-size: 14px;
  color: var(--colors-body);
  line-height: 1.55;
}

.service-solo-how {
  padding: var(--spacing-section) 0;
  background-color: var(--colors-surface-soft);
}

.service-solo-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xxl);
  position: relative;
}

.service-solo-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 56px;
  right: 56px;
  height: 1px;
  background: linear-gradient(to right, var(--colors-primary), var(--colors-accent-teal));
  opacity: 0.2;
  z-index: 0;
}

.service-solo-step {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.service-solo-step-num {
  width: 54px;
  height: 54px;
  border-radius: var(--rounded-full);
  background-color: var(--colors-surface-card);
  border: 2px solid var(--colors-hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--colors-primary);
  flex-shrink: 0;
  transition: border-color 0.25s, background-color 0.25s, color 0.25s;
}

.service-solo-step:hover .service-solo-step-num {
  border-color: var(--colors-primary);
  background-color: var(--colors-primary);
  color: #fff;
}

.service-solo-step h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--colors-ink);
  margin-top: var(--spacing-sm);
}

.service-solo-step p {
  font-size: 14px;
  color: var(--colors-body);
  line-height: 1.6;
}

.service-solo-image-band {
  padding: var(--spacing-section) 0;
}

.service-solo-image-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-solo-image-band-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.service-solo-image-band-content .display-lg {
  margin-top: 0;
}

.service-solo-image-band-content p {
  font-size: 17px;
  color: var(--colors-body);
  line-height: 1.7;
}

.service-solo-image-frame {
  border-radius: var(--rounded-xl);
  overflow: hidden;
  /* height: 420px; */
  position: relative;

  /* box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12); */
}

.service-solo-image-frame svg {
  width: 100%;
  height: 100%;
  border-radius: var(--rounded-xl);
  object-fit: cover;
}

.service-solo-image-frame-tag {
  position: absolute;
  bottom: var(--spacing-lg);
  left: var(--spacing-lg);
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  border-radius: var(--rounded-md);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-solo-image-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--rounded-full);
  background-color: var(--colors-accent-teal);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.65);
  }
}

.service-proof-band {
  background-color: var(--colors-surface-dark);
  padding: var(--spacing-section) 0;
}

.service-proof-band-header {
  margin-bottom: var(--spacing-xxl);
}

.service-proof-band-header .badge-pill {
  background-color: var(--colors-surface-dark-elevated);
  color: var(--colors-on-dark-soft);
}

.service-proof-band-header .display-md {
  color: var(--colors-on-dark);
  margin-top: var(--spacing-sm);
}

.service-proof-band-header p {
  color: var(--colors-on-dark-soft);
  font-size: 17px;
  line-height: 1.65;
  margin-top: var(--spacing-sm);
}

.service-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.service-proof-card {
  background-color: var(--colors-surface-dark-elevated);
  border: 1px solid var(--colors-surface-dark-soft);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  transition: border-color 0.2s;
}

.service-proof-card:hover {
  border-color: var(--colors-primary);
}

.service-proof-card:nth-child(even):hover {
  border-color: var(--colors-accent-teal);
}

.service-proof-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  color: var(--colors-on-dark);
}

.service-proof-number .accent-blue {
  color: var(--colors-primary);
}

.service-proof-number .accent-teal {
  color: var(--colors-accent-teal);
}

.service-proof-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--colors-on-dark-soft);
}

.service-proof-desc {
  font-size: 13px;
  color: rgba(148, 163, 184, 0.65);
  line-height: 1.5;
  margin-top: 4px;
}

.service-solo-related {
  padding: var(--spacing-section) 0;
  background-color: var(--colors-surface-soft);
}

.service-solo-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xxl);
}

.service-related-card {
  background-color: var(--colors-surface-card);
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  color: inherit;
}

.service-related-card:hover {
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
  border-color: var(--colors-primary);
  transform: translateY(-2px);
}

.service-related-card-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--colors-muted);
}

.service-related-card h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--colors-ink);
  font-family: var(--font-display);
}

.service-related-card p {
  font-size: 14px;
  color: var(--colors-body);
  line-height: 1.55;
  flex: 1;
}

.service-related-card-arrow {
  font-size: 16px;
  color: var(--colors-primary);
  margin-top: var(--spacing-xs);
  align-self: flex-start;
}

/* Solo responsive */
@media (max-width: 1024px) {
  .service-solo-hero {
    grid-template-columns: 1fr;
    height: auto;
    max-height: fit-content;
  }

  .service-solo-hero-right {
    height: 340px;
  }

  .service-solo-hero-right-overlay {
    background: none;
  }

  .service-solo-hero-left {
    padding: 64px var(--spacing-xl);
  }

  .service-solo-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-solo-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-solo-steps::before {
    display: none;
  }

  .service-solo-image-band-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-solo-related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .service-solo-hero-left {
    padding: var(--spacing-xxl) var(--spacing-lg);
  }

  .service-solo-steps {
    grid-template-columns: 1fr;
  }

  .service-solo-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .service-proof-grid {
    grid-template-columns: 1fr;
  }

  .service-solo-hero-right {
    /* display: none; */
    height: 260px;
  }
}

/* Sampling methods grid */
.sampling-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xxl);
}

.sampling-method-card {
  background: var(--colors-surface-card);
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.sampling-method-card:hover {
  border-color: var(--colors-primary);
  box-shadow: 0 12px 42px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

.sampling-method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--colors-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sampling-method-card:hover::before {
  transform: scaleX(1);
}

.sampling-method-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--spacing-md);
}

.sampling-method-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--colors-canvas);
  color: var(--colors-primary);
  border: 1px solid var(--colors-hairline);
  transition: all 0.3s ease;
}

.sampling-method-card:hover .sampling-method-icon {
  background-color: var(--colors-primary);
  color: #fff;
  border-color: var(--colors-primary);
}

.sampling-method-card:hover .sampling-method-icon img {
  filter: brightness(0) invert(1);
}

.sampling-method-icon img {
  transition: filter 0.3s ease;
}

.sampling-method-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.sampling-method-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--colors-hairline);
  line-height: 1;
}

.sampling-method-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--colors-ink);
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.sampling-method-desc {
  font-size: 16px;
  color: var(--colors-body);
  line-height: 1.65;
}

.sampling-method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: var(--spacing-lg);
}

.sampling-method-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--colors-muted);
  background: var(--colors-surface-soft);
  border-radius: var(--rounded-pill);
  padding: 4px 12px;
  letter-spacing: 0.2px;
  transition: all 0.2s ease;
}

.sampling-method-card:hover .sampling-method-tag {
  background: rgba(26, 111, 168, 0.06);
  color: var(--colors-primary);
}

@media (max-width: 768px) {
  .sampling-methods-grid {
    grid-template-columns: 1fr;
  }
}

/* Methodology illustration */
.methodology-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl);
  background: var(--colors-canvas);
  border-radius: var(--rounded-xl);
  border: 1px solid var(--colors-hairline);
}

/* Service hero ghost elements */
.badge-pill--ghost {
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
}

.button-secondary--ghost {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
}

/* Dark section sub text */
.section-sub--muted {
  color: var(--colors-on-dark-soft);
}

/* Services CTA group */
.service-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Sampling method icon color variants */
.sampling-method-icon--blue {
  background: #dbeeff;
  border-color: #dbeeff;
}

.sampling-method-icon--teal {
  background: #d1faf4;
  border-color: #d1faf4;
}

.sampling-method-icon--amber {
  background: #fef3c7;
  border-color: #fef3c7;
}

.sampling-method-icon--purple {
  background: #ede9fe;
  border-color: #ede9fe;
}

.sampling-method-icon--green {
  background: #d1fae5;
  border-color: #d1fae5;
}

.sampling-method-icon--pink {
  background: #fce7f3;
  border-color: #fce7f3;
}

/* Sampling method tag color variants */
.sampling-method-tag--teal {
  background: #d1faf4;
  color: #0d9488;
}

.sampling-method-tag--amber {
  background: #fef3c7;
  color: #d97706;
}

.sampling-method-tag--purple {
  background: #ede9fe;
  color: #7c3aed;
}

.sampling-method-tag--green {
  background: #d1fae5;
  color: #059669;
}

.sampling-method-tag--pink {
  background: #fce7f3;
  color: #db2777;
}

/* Hover states for colored icon variants */
.sampling-method-card:hover .sampling-method-icon--blue {
  background: #1a6fa8;
  border-color: #1a6fa8;
}

.sampling-method-card:hover .sampling-method-icon--teal {
  background: #0d9488;
  border-color: #0d9488;
}

.sampling-method-card:hover .sampling-method-icon--amber {
  background: #d97706;
  border-color: #d97706;
}

.sampling-method-card:hover .sampling-method-icon--purple {
  background: #7c3aed;
  border-color: #7c3aed;
}

.sampling-method-card:hover .sampling-method-icon--green {
  background: #059669;
  border-color: #059669;
}

.sampling-method-card:hover .sampling-method-icon--pink {
  background: #db2777;
  border-color: #db2777;
}

/* Combined band CTA alignment */
.combined-band-intro .button-inverted {
  align-self: flex-start;
}

/* Methodology illustration SVG */
.methodology-illustration-svg {
  width: 100%;
  max-width: 420px;
}

/* Blog redesign — magazine layout */
.blog-articles-section {
  padding: var(--spacing-section) 0;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: var(--spacing-xxl);
  background: var(--colors-surface-card);
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-lg);
  overflow: hidden;
  color: inherit;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.blog-featured:hover {
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
  border-color: var(--colors-primary);
  transform: translateY(-3px);
}

.blog-featured-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
}

.blog-featured-body {
  padding: var(--spacing-xxl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.blog-featured-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--colors-ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.blog-featured-excerpt {
  font-size: 16px;
  color: var(--colors-body);
  line-height: 1.7;
  flex: 1;
}

.blog-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.blog-card {
  background: var(--colors-surface-card);
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.blog-card:hover {
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
  border-color: var(--colors-primary);
  transform: translateY(-4px);
}

.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.blog-card-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--colors-primary);
  background: rgba(26, 111, 168, 0.08);
  padding: 3px 10px;
  border-radius: var(--rounded-pill);
}

.blog-card-readtime {
  font-size: 12px;
  color: var(--colors-muted);
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--colors-ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.blog-card-excerpt {
  font-size: 15px;
  color: var(--colors-body);
  line-height: 1.65;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--colors-hairline);
  margin-top: var(--spacing-sm);
}

.blog-card-date {
  font-size: 12px;
  color: var(--colors-muted);
}

.blog-card-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--colors-primary);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.blog-card:hover .blog-card-link,
.blog-featured:hover .blog-card-link {
  gap: 8px;
}

@media (max-width: 1024px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-img {
    min-height: 280px;
    height: 280px;
  }
}

@media (max-width: 640px) {
  .blog-secondary-grid {
    grid-template-columns: 1fr;
  }

  .blog-featured-title {
    font-size: 28px;
  }

  .blog-featured-body {
    padding: var(--spacing-xl);
  }

  .blog-card-img {
    height: 180px;
  }
}

/* Article page */
.article-hero {
  background: var(--colors-canvas);
  padding: 30px 0 64px;
  border-bottom: 1px solid var(--colors-hairline);
}

.article-hero-inner {
  max-width: 800px;
}

.article-hero-inner .display-xl {
  margin-top: var(--spacing-md);
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 13px;
  color: var(--colors-muted);
  margin-bottom: var(--spacing-lg);
}

.article-breadcrumb a {
  color: var(--colors-primary);
}

.article-breadcrumb-sep {
  color: var(--colors-muted-soft);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--colors-hairline);
}

.article-meta-date {
  font-size: 13px;
  color: var(--colors-muted);
}

.article-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--colors-muted-soft);
}

.article-meta-readtime {
  font-size: 13px;
  color: var(--colors-muted);
}

.article-layout {
  padding: var(--spacing-section) 0;
}

.article-layout-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--spacing-xxl);
  align-items: start;
}

.article-cover {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--rounded-lg);
  margin-bottom: var(--spacing-xxl);
  display: block;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--colors-ink);
  margin-top: var(--spacing-xxl);
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.01em;
}

.article-body p {
  font-size: 17px;
  color: var(--colors-body);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-pullquote {
  border-left: 3px solid var(--colors-primary);
  padding: var(--spacing-md) var(--spacing-xl);
  margin: var(--spacing-xxl) 0;
  background: rgba(26, 111, 168, 0.04);
  border-radius: 0 var(--rounded-md) var(--rounded-md) 0;
}

.article-pullquote p {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--colors-body-strong);
  line-height: 1.5;
  margin: 0;
}

.article-data-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  background: var(--colors-surface-soft);
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-xl);
  margin: var(--spacing-xxl) 0;
}

.article-data-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.article-data-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  color: var(--colors-primary);
}

.article-data-label {
  font-size: 13px;
  color: var(--colors-muted);
}

.article-sidebar {
  position: sticky;
  top: 100px;
}

.article-sidebar-card {
  background: var(--colors-surface-dark);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-xl);
  color: var(--colors-on-dark);
}

.article-sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: var(--spacing-md);
}

.article-sidebar-card p {
  font-size: 14px;
  color: var(--colors-on-dark-soft);
  line-height: 1.65;
  margin-bottom: var(--spacing-lg);
}

.article-related {
  background: var(--colors-surface-soft);
  padding: var(--spacing-section) 0;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xxl);
}

@media (max-width: 1024px) {
  .article-layout-inner {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    margin-top: var(--spacing-xxl);
  }

  .article-data-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .article-hero {
    padding: 30px 0 48px;
  }

  .article-cover {
    height: 240px;
  }

  .article-data-row {
    grid-template-columns: 1fr;
  }

  .article-body h2 {
    font-size: 24px;
  }

  .article-body p {
    font-size: 16px;
  }
}

/* Entering India band */
.india-band {
  background: linear-gradient(135deg, #0d2d4a 0%, #062e2b 100%);
  padding: var(--spacing-section) 0;
  position: relative;
  overflow: hidden;
}

.india-band::before {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  top: -200px;
  right: -180px;
  pointer-events: none;
}

.india-band::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.03);
  bottom: -120px;
  left: -80px;
  pointer-events: none;
}

.india-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.india-band-visual {
  border-radius: var(--rounded-lg);
  overflow: hidden;
  position: relative;
  min-height: 400px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.india-band-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}

.india-band-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(6, 46, 43, 0.4));
}

.india-band-text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.india-band-text .display-lg {
  color: var(--colors-on-dark);
}

.india-band-text p {
  color: var(--colors-on-dark-soft);
  font-size: 16px;
  line-height: 1.75;
}

.india-band-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--colors-accent-teal);
  background: rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.25);
  padding: 5px 14px;
  border-radius: var(--rounded-pill);
  width: fit-content;
}

.india-band-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  align-items: center;
  margin-top: var(--spacing-xs);
}

.india-band-secondary {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.india-band-secondary:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.india-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.india-proof-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  transition: background 0.2s, border-color 0.2s;
}

.india-proof-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(13, 148, 136, 0.4);
}

.india-proof-icon {
  margin-bottom: var(--spacing-xs);
  display: flex;
}

.india-proof-icon img {
  width: 28px;
  height: 28px;
  display: block;
}

.india-proof-card strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--colors-on-dark);
}

.india-proof-card p {
  font-size: 13px;
  color: var(--colors-on-dark-soft);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .india-band-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .india-proof-grid {
    grid-template-columns: 1fr;
  }
}

/* India entry standalone page */
.india-hero {
  background: linear-gradient(145deg, #0d2d4a 0%, #0f172a 50%, #062e2b 100%);
  padding: 120px 0 90px;
  position: relative;
  overflow: hidden;
}

.india-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  top: -200px;
  right: -160px;
  pointer-events: none;
}

.india-hero::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  bottom: -100px;
  left: -80px;
  pointer-events: none;
}

.india-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.india-hero .display-xl {
  color: var(--colors-on-dark);
  margin-top: var(--spacing-lg);
}

.india-hero .body-lg {
  color: var(--colors-on-dark-soft);
  margin-top: var(--spacing-lg);
  max-width: 620px;
}

.india-hero-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-top: var(--spacing-xxl);
}

.india-pain-section {
  padding: var(--spacing-section) 0;
}

.india-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xxl);
}

.india-pain-card {
  background: var(--colors-surface-card);
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.india-pain-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
  color: var(--colors-hairline);
}

.india-pain-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--colors-ink);
}

.india-pain-card p {
  font-size: 15px;
  color: var(--colors-body);
  line-height: 1.65;
}

.india-how-section {
  background: var(--colors-surface-dark);
  padding: var(--spacing-section) 0;
}

.india-how-section .display-lg {
  color: var(--colors-on-dark);
}

.india-how-section .section-sub {
  color: var(--colors-on-dark-soft);
}

.india-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xxl);
}

.india-step {
  background: var(--colors-surface-dark-elevated);
  border: 1px solid var(--colors-surface-dark-soft);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.india-step-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  color: var(--colors-accent-teal);
}

.india-step h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--colors-on-dark);
}

.india-step p {
  font-size: 13px;
  color: var(--colors-on-dark-soft);
  line-height: 1.6;
}

.india-deliverables-section {
  padding: var(--spacing-section) 0;
  background: var(--colors-surface-soft);
}

.india-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xxl);
}

.india-deliverable {
  background: var(--colors-surface-card);
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-xl);
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
}

.india-deliverable-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26, 111, 168, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--colors-primary);
}

.india-deliverable-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--colors-ink);
  margin-bottom: 6px;
}

.india-deliverable-text p {
  font-size: 14px;
  color: var(--colors-body);
  line-height: 1.6;
}

.india-categories-section {
  padding: var(--spacing-section) 0;
}

.india-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xxl);
}

.india-category-card {
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-lg) var(--spacing-xl);
  text-align: center;
  background: var(--colors-surface-card);
  transition: border-color 0.2s, transform 0.2s;
}

.india-category-card:hover {
  border-color: var(--colors-primary);
  transform: translateY(-2px);
}

.india-category-icon {
  font-size: 28px;
  margin-bottom: var(--spacing-sm);
}

.india-category-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--colors-ink);
}

.india-category-card p {
  font-size: 13px;
  color: var(--colors-muted);
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .india-pain-grid {
    grid-template-columns: 1fr;
  }

  .india-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .india-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .india-deliverables-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .india-steps-grid {
    grid-template-columns: 1fr;
  }

  .india-categories-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact international note */
.contact-intl-note {
  display: flex;
  gap: var(--spacing-sm);
  align-items: flex-start;
  background: rgba(26, 111, 168, 0.05);
  border: 1px solid rgba(26, 111, 168, 0.15);
  border-radius: var(--rounded-md);
  padding: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.contact-intl-flag {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-intl-note p {
  font-size: 14px;
  color: var(--colors-body);
  line-height: 1.6;
  margin: 0;
}

.contact-intl-note strong {
  color: var(--colors-primary);
}