:root {
  --color-bg: #f6f8fb;
  --color-surface: #ffffff;
  --color-deep: #0f1b2d;
  --color-muted: #5a6475;
  --color-accent: #2564fb;
  --color-accent-dark: #1848b0;
  --color-border: rgba(15, 27, 45, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 30px 60px rgba(12, 22, 44, 0.15);
  --shadow-card: 0 18px 50px rgba(12, 22, 44, 0.12);
  --gradient-hero: linear-gradient(135deg, #e8efff, #f9fbff);
  --gradient-dark: radial-gradient(circle at 20% 20%, rgba(37, 100, 251, 0.45), rgba(12, 18, 35, 0.95));
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--color-bg);
  color: var(--color-deep);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(37, 100, 251, 0.4);
  outline-offset: 2px;
}

p {
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

.section--tight {
  padding: 40px 0;
}

.section__heading {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  color: #2563eb;
  margin-bottom: 16px;
  text-align: center;
  font-weight: 700;
}

/* Center section headings only in regular sections (not in ir-stepper, strip, banner-dark, hero) */
.section > .container > .section__heading {
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 auto 32px;
  color: var(--color-deep);
  text-align: center;
  max-width: 900px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 700;
}

/* Add elegant underline only to section titles (not in strip, banner-dark, ir-stepper, or hero) */
.section > .container > .section__title::after,
.section .cards-grid ~ .section__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
  border-radius: 2px;
}

/* Add position relative and padding only where underline exists */
.section > .container > .section__title,
.section .cards-grid ~ .section__title {
  position: relative;
  padding-bottom: 24px;
}

.section__subtitle {
  max-width: 640px;
  margin-bottom: 48px;
}

.top-bar {
  background: var(--color-deep);
  color: #d9e4ff;
  font-size: 0.9rem;
  text-align: center;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
}

.top-bar a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.top-bar a:hover {
  opacity: 0.85;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: background-color, box-shadow;
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 16px rgba(15, 27, 45, 0.06), 0 0 0 1px rgba(15, 27, 45, 0.04);
  border-bottom-color: rgba(15, 27, 45, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 36px;
  min-height: 60px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__brand:hover {
  transform: translateY(-1px);
  opacity: 0.85;
}

.nav__brand img {
  height: 40px;
}

.nav__links {
  display: flex;
  gap: 2px;
  flex: 1;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  align-items: center;
}

/* Desktop-only: keep nav__links centered between logo and actions */
@media (min-width: 1441px) {
  .nav__links {
    flex: 1;
    justify-content: center;
  }
}

.nav__links a {
  color: var(--color-muted);
  padding: 9px 14px;
  position: relative;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  line-height: 1.4;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Subtle glow overlay on hover */
.nav__links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(37, 100, 251, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.nav__links a:hover {
  color: var(--color-deep);
  background: rgba(37, 100, 251, 0.04);
  transform: translateY(-1px);
}

.nav__links a:hover::before {
  opacity: 1;
}

/* Premium active state with glow */
.nav__links a.is-active {
  color: var(--color-accent);
  background: linear-gradient(135deg, rgba(37, 100, 251, 0.08) 0%, rgba(37, 100, 251, 0.04) 100%);
  font-weight: 600;
  box-shadow: 
    0 0 0 1px rgba(37, 100, 251, 0.1),
    0 2px 8px rgba(37, 100, 251, 0.08);
}

.nav__links a.is-active::before {
  opacity: 0.5;
}

/* Active hover enhancement */
.nav__links a.is-active:hover {
  background: linear-gradient(135deg, rgba(37, 100, 251, 0.12) 0%, rgba(37, 100, 251, 0.06) 100%);
  box-shadow: 
    0 0 0 1px rgba(37, 100, 251, 0.15),
    0 4px 12px rgba(37, 100, 251, 0.12);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: auto; /* Always push to right on desktop */
}

.lang-switch {
  display: inline-flex;
  gap: 2px;
  border: 1px solid rgba(15, 27, 45, 0.1);
  border-radius: 8px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 4px rgba(15, 27, 45, 0.03);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.lang-switch:hover {
  box-shadow: 0 4px 12px rgba(15, 27, 45, 0.08);
  border-color: rgba(15, 27, 45, 0.16);
}

.lang-switch button {
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--color-muted);
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-switch button:hover {
  color: var(--color-deep);
  background: rgba(37, 100, 251, 0.06);
}

.lang-switch button.is-active {
  background: linear-gradient(135deg, #3b7dff 0%, var(--color-accent) 100%);
  color: #fff;
  box-shadow: 
    0 2px 8px rgba(37, 100, 251, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, #3b7dff 0%, var(--color-accent) 100%);
  color: #fff;
  box-shadow: 
    0 4px 16px rgba(37, 100, 251, 0.24), 
    0 0 0 1px rgba(37, 100, 251, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

/* Premium shimmer effect on hover */
.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.5s ease;
}

.btn--primary:hover {
  background: linear-gradient(135deg, #4a8aff 0%, #2d6ef5 100%);
  box-shadow: 
    0 8px 24px rgba(37, 100, 251, 0.32), 
    0 0 0 1px rgba(37, 100, 251, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--secondary {
  background: rgba(37, 99, 235, 0.1) !important;
  color: #2563eb !important;
  border: 2px solid rgba(37, 99, 235, 0.25) !important;
  padding: 16px 40px !important;
  font-size: 1.0625rem !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  display: inline-block !important;
  text-decoration: none !important;
  box-shadow: 
    0 4px 16px rgba(37, 99, 235, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
  letter-spacing: 0.015em !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
}

.btn--secondary:hover {
  background: rgba(37, 99, 235, 0.18) !important;
  color: #1e40af !important;
  border-color: rgba(37, 99, 235, 0.35) !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 
    0 6px 20px rgba(37, 99, 235, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

.hero {
  padding: 140px 0 100px;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(37, 100, 251, 0.08);
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.15;
  margin: 0 0 28px;
  color: var(--color-deep);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero__text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 580px;
}

.hero__actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.orb {
  width: 100%;
  max-width: 480px;
  height: auto;
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.orb svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 40px rgba(37, 100, 251, 0.15));
  shape-rendering: crispEdges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

@keyframes shieldFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes shieldPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.orb {
  animation: shieldFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 25px 50px rgba(37, 100, 251, 0.3));
  transition: filter 0.5s ease;
}

.orb:hover {
  filter: drop-shadow(0 30px 60px rgba(37, 100, 251, 0.45));
}

/* Contact page orb - no container shadows */
.orb--contact {
  filter: none !important;
  animation: contactOrbFloat 4s ease-in-out infinite;
  background: transparent;
  box-shadow: none;
}

.orb--contact:hover {
  filter: none !important;
}

.orb--contact svg {
  filter: none;
}

/* =====================================================
   HERO SVG ORBS - Professional Rendering
   Removes container filter to prevent visible div edges
   SVG internal filters handle all shadow/glow effects
   ===================================================== */

/* Analysis/RCA page orb - Magnifying glass illustration */
.orb--analysis {
  filter: none !important;
  animation: orbFloat 4s ease-in-out infinite;
  background: transparent;
  box-shadow: none;
}

.orb--analysis:hover {
  filter: none !important;
}

.orb--analysis svg {
  filter: none;
  overflow: visible;
}

/* Training/Procedures page orb - Playbook illustration */
.orb--training {
  filter: none !important;
  animation: orbFloat 4s ease-in-out infinite;
  background: transparent;
  box-shadow: none;
}

.orb--training:hover {
  filter: none !important;
}

.orb--training svg {
  filter: none;
  overflow: visible;
}

/* Retainer/Offers page orb - Connection illustration */
.orb--retainer {
  filter: none !important;
  animation: orbFloat 4s ease-in-out infinite;
  background: transparent;
  box-shadow: none;
}

.orb--retainer:hover {
  filter: none !important;
}

.orb--retainer svg {
  filter: none;
  overflow: visible;
}

/* About/Team page orb - Team illustration */
.orb--team {
  filter: none !important;
  animation: orbFloat 4s ease-in-out infinite;
  background: transparent;
  box-shadow: none;
}

.orb--team:hover {
  filter: none !important;
}

.orb--team svg {
  filter: none;
  overflow: visible;
}

/* NIS2 page orb - Compliance shield illustration */
.orb--nis2 {
  filter: none !important;
  animation: orbFloat 4s ease-in-out infinite;
  background: transparent;
  box-shadow: none;
}

.orb--nis2:hover {
  filter: none !important;
}

.orb--nis2 svg {
  filter: none;
  overflow: visible;
}

/* Unified floating animation for orb rendering */
@keyframes orbFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Ensure hero section allows orb shadows to render properly */
.hero:has(.orb--analysis),
.hero:has(.orb--training),
.hero:has(.orb--retainer),
.hero:has(.orb--team),
.hero:has(.orb--nis2) {
  overflow: visible;
}

/* Maintain proper visual rendering for orb containers */
.orb--analysis,
.orb--training,
.orb--retainer,
.orb--team,
.orb--nis2 {
  overflow: visible;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

@keyframes contactOrbFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.orb svg {
  width: 100%;
  height: 100%;
  shape-rendering: crispEdges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

@media (max-width: 968px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero__text {
    max-width: 100%;
  }
  
  .hero__actions {
    justify-content: center;
  }
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

/* 2-card layout - force 2 equal columns */
.cards-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

/* 3-card layout - 3 columns on desktop, stack at 900px when 4-card stacks */
.cards-grid.cards-grid--three {
  grid-template-columns: repeat(3, 1fr) !important;
  /* Override base auto-fit behavior */
}

/* 3-card layout FIXED VERSION - maximum specificity */
.cards-grid.cards-grid--three.cards-grid--three-fixed {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px !important;
}

/* 4-card layout - force 4 equal columns on desktop */
.cards-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: #ffffff;
  padding: 48px 40px;
  border-radius: 16px;
  box-shadow: 
    0 4px 16px rgba(15, 27, 45, 0.08),
    0 1px 4px rgba(15, 27, 45, 0.04);
  border: 1px solid rgba(15, 27, 45, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 12px 32px rgba(15, 27, 45, 0.12),
    0 4px 12px rgba(37, 100, 251, 0.1);
  border-color: rgba(37, 100, 251, 0.2);
}

.card:hover::before {
  opacity: 1;
}

/* Premium Card Icons - $10k Website Design */
.card__icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 24px rgba(37, 99, 235, 0.35),
    0 2px 8px rgba(37, 99, 235, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.card__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 1;
  transition: opacity 0.4s ease;
}

.card__icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card__icon {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  transform: translateY(-6px) scale(1.08);
  box-shadow: 
    0 16px 40px rgba(37, 99, 235, 0.45),
    0 4px 16px rgba(37, 99, 235, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.card:hover .card__icon::after {
  opacity: 1;
  animation: iconShimmer 1.5s ease-in-out infinite;
}

@keyframes iconShimmer {
  0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
  50% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.card h3 {
  margin: 0 0 20px 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f1b2d;
  line-height: 1.3;
  transition: color 0.3s ease;
  letter-spacing: -0.01em;
  text-align: center;
}

.card:hover h3 {
  color: #2563eb;
}

.card p {
  margin: 0;
  line-height: 1.8;
  color: #475569;
  font-size: 1.0625rem;
  letter-spacing: 0.01em;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.card li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #475569;
  line-height: 1.6;
}

.card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
  font-size: 1.1rem;
}

/* X marks for "What we avoid" card */
.card--avoid li::before {
  content: '\2715';
  color: #2563eb;
  font-weight: 700;
  font-size: 1.2rem;
  top: 9px;
}

/* Premium Strip Section - $10k Website Design */
.strip {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  color: #ffffff;
  border-radius: 32px;
  padding: 80px 64px;
  box-shadow: 
    0 24px 64px rgba(15, 27, 45, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.strip .section__title {
  color: #ffffff;
  margin: 0 auto 64px auto;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  padding-bottom: 0;
  position: static;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  max-width: 900px;
}

.strip__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1140px;
  margin: 0 auto;
}

.strip__item {
  padding: 48px 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.strip__item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.6) 0%, 
    rgba(147, 197, 253, 0.4) 50%, 
    rgba(255, 255, 255, 0.6) 100%
  );
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: blur(4px);
}

.strip__item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.strip__item:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.18) 100%);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.strip__item:hover::before {
  opacity: 1;
}

.strip__item:hover::after {
  opacity: 1;
}

.strip__item h4 {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 0 16px 0;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.strip__item p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin: 0;
  font-size: 1.05rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   PREMIUM ASSESSMENT PACKAGES SECTION - $10k Design
   ========================================================================== */

/* ==========================================================================
   ASSESSMENT CARDS - Clean Professional Design
   ========================================================================== */

.assessment-packages-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 80px 0 100px 0;
}

/* Card Grid - Equal height cards */
.assessment-cards {
  grid-auto-rows: 1fr;
}

/* Card Base */
.assessment-cards .card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.assessment-cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.15);
}

/* Title */
.assessment-cards .card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px 0;
  line-height: 1.35;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
  min-height: calc(2 * 1.35em);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.assessment-cards .card:hover h3 {
  color: #2563eb;
}

/* Description */
.assessment-cards .card > p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
  align-self: start;
}

/* List - Always at bottom */
.assessment-cards .card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: end;
}

.assessment-cards .card ul li {
  position: relative;
  padding-left: 24px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #475569;
}

/* Simple dot bullet */
.assessment-cards .card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-radius: 50%;
}

/* ==========================================================================
   ASSESSMENT CARDS - Responsive
   ========================================================================== */

@media (max-width: 1200px) {
  .assessment-cards .card {
    padding: 32px 28px;
  }
  
  .assessment-cards .card h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
  }
  
  .assessment-cards .card > p {
    font-size: 0.875rem;
  }
  
  .assessment-cards .card ul {
    padding-top: 16px;
    gap: 6px;
  }
  
  .assessment-cards .card ul li {
    font-size: 0.8125rem;
    padding-left: 20px;
  }
  
  .assessment-cards .card ul li::before {
    width: 5px;
    height: 5px;
  }
}

@media (max-width: 899px) {
  .assessment-cards {
    grid-auto-rows: auto;
  }
  
  .assessment-cards .card {
    display: block;
    height: auto;
    padding: 32px 28px;
    text-align: center;
  }
  
  .assessment-cards .card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    min-height: auto;
    display: block;
  }
  
  .assessment-cards .card > p {
    font-size: 0.9375rem;
    margin-bottom: 20px;
  }
  
  .assessment-cards .card ul {
    padding-top: 0;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .assessment-cards .card ul li {
    font-size: 0.875rem;
    padding-left: 24px;
    text-align: left;
    width: 100%;
  }
  
  .assessment-cards .card ul li::before {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 600px) {
  .assessment-packages-section {
    padding: 60px 0 80px 0;
  }
  
  .assessment-cards .card {
    padding: 28px 24px;
    border-radius: 18px;
  }
  
  .assessment-cards .card h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
  
  .assessment-cards .card > p {
    font-size: 0.875rem;
    margin-bottom: 16px;
    line-height: 1.65;
  }
  
  .assessment-cards .card ul li {
    font-size: 0.8125rem;
    padding-left: 20px;
  }
  
  .assessment-cards .card ul li::before {
    width: 5px;
    height: 5px;
  }
}

@media (max-width: 480px) {
  .assessment-packages-section {
    padding: 50px 0 70px 0;
  }
  
  .assessment-cards .card {
    padding: 24px 20px;
    border-radius: 16px;
  }
  
  .assessment-cards .card h3 {
    font-size: 1.0625rem;
  }
  
  .assessment-cards .card > p {
    font-size: 0.8125rem;
    margin-bottom: 14px;
  }
  
  .assessment-cards .card ul {
    gap: 5px;
  }
  
  .assessment-cards .card ul li {
    font-size: 0.8rem;
    padding-left: 18px;
  }
  
  .assessment-cards .card ul li::before {
    width: 4px;
    height: 4px;
  }
}

@media (max-width: 374px) {
  .assessment-cards .card {
    padding: 22px 18px;
  }
  
  .assessment-cards .card h3 {
    font-size: 1rem;
  }
  
  .assessment-cards .card > p {
    font-size: 0.8rem;
  }
  
  .assessment-cards .card ul li {
    font-size: 0.75rem;
    padding-left: 16px;
  }
}

/* ==========================================================================
   PREMIUM TRAINING CARDS - $50k Design
   ========================================================================== */

.training-tracks-section {
  position: relative;
}

.training-cards .card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 20px;
  padding: 56px 44px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(15, 23, 42, 0.08),
    0 2px 8px rgba(37, 99, 235, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Animated gradient border effect */
.training-cards .card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, 
    #2563eb 0%, 
    #3b82f6 25%,
    #60a5fa 50%,
    #3b82f6 75%,
    #2563eb 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  background-size: 200% 200%;
  animation: borderShine 3s ease infinite;
}

@keyframes borderShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Premium glow on hover */
.training-cards .card::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, 
    rgba(37, 99, 235, 0.15) 0%, 
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  pointer-events: none;
}

.training-cards .card:hover::before {
  opacity: 1;
}

.training-cards .card:hover::after {
  opacity: 1;
}

.training-cards .card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 24px 64px rgba(37, 99, 235, 0.16),
    0 8px 24px rgba(37, 99, 235, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(37, 99, 235, 0.25);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* Training card title with accent */
.training-cards .card h3 {
  color: #0f172a;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 16px;
  transition: color 0.3s ease;
}

.training-cards .card h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.training-cards .card:hover h3 {
  color: #2563eb;
}

.training-cards .card:hover h3::after {
  width: 80px;
}

/* Training card text */
.training-cards .card p {
  color: #475569;
  line-height: 1.75;
  font-size: 1.0625rem;
  transition: color 0.3s ease;
}

.training-cards .card:hover p {
  color: #334155;
}

/* Elegant corner accent - no overlap */
.training-cards .card-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
  pointer-events: none;
}

.training-cards .card-icon::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 60px 60px 0;
  border-color: transparent rgba(37, 99, 235, 0.06) transparent transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.training-cards .card:hover .card-icon::before {
  border-width: 0 80px 80px 0;
  border-color: transparent rgba(37, 99, 235, 0.12) transparent transparent;
}

.training-cards .card-icon::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 50%;
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.training-cards .card:hover .card-icon::after {
  opacity: 0.85;
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ==========================================================================
   PREMIUM TRAINING OUTCOMES INFOGRAPHIC - $50k Smart Learning Design
   ========================================================================== */

.training-outcomes-section {
  position: relative;
}

.training-outcomes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 1320px;
  margin: 64px auto 0;
  position: relative;
}

/* Connecting lines between cards (neural network style) */
.training-outcomes::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(37, 99, 235, 0.2) 15%,
    rgba(37, 99, 235, 0.4) 50%,
    rgba(37, 99, 235, 0.2) 85%,
    transparent 100%
  );
  transform: translateY(-50%);
  z-index: 0;
}

.outcome-item {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  padding: 42px 24px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 
    0 8px 32px rgba(15, 23, 42, 0.08),
    0 2px 8px rgba(37, 99, 235, 0.04);
}

/* Smart brain/network icon container */
.outcome-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer pulsing ring */
.outcome-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  opacity: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1); }
}

/* Main icon circle with gradient */
.outcome-icon-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 
    0 8px 32px rgba(37, 99, 235, 0.25),
    inset 0 2px 8px rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Number inside circle */
.outcome-number {
  font-size: 2.125rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

/* Decorative orbiting dots */
.outcome-icon-circle::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 50%;
  top: 8px;
  right: 8px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
  animation: orbit 4s linear infinite;
}

@keyframes orbit {
  0% { transform: rotate(0deg) translateX(42px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(42px) rotate(-360deg); }
}

/* Title styling */
.outcome-item h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px 0;
  line-height: 1.4;
  position: relative;
  transition: color 0.3s ease;
  word-wrap: break-word;
  hyphens: none;
}

/* Smart underline effect */
.outcome-item h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Description text */
.outcome-item p {
  color: #475569;
  line-height: 1.75;
  font-size: 1rem;
  margin: 0;
  transition: color 0.3s ease;
}

/* Hover effects */
.outcome-item:hover {
  transform: translateY(-16px);
  box-shadow: 
    0 24px 64px rgba(37, 99, 235, 0.18),
    0 8px 24px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.25);
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.outcome-item:hover .outcome-icon-circle {
  transform: scale(1.1);
  box-shadow: 
    0 12px 48px rgba(37, 99, 235, 0.35),
    inset 0 2px 12px rgba(255, 255, 255, 0.3);
}

.outcome-item:hover h3 {
  color: #2563eb;
}

.outcome-item:hover h3::after {
  width: 80px;
}

.outcome-item:hover p {
  color: #334155;
}

/* Removed center connection node to prevent overlap with content */

/* Stagger animation on reveal */
.training-outcomes .outcome-item:nth-child(1) {
  animation-delay: 0.1s;
}

.training-outcomes .outcome-item:nth-child(2) {
  animation-delay: 0.2s;
}

.training-outcomes .outcome-item:nth-child(3) {
  animation-delay: 0.3s;
}

.training-outcomes .outcome-item:nth-child(4) {
  animation-delay: 0.4s;
}

@media (max-width: 1200px) {
  .training-outcomes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 860px;
    gap: 28px;
  }

  .training-outcomes::before {
    display: none;
  }

  .outcome-item {
    padding: 44px 30px;
  }

  .outcome-item h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 720px) {
  .training-outcomes {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-top: 42px;
    gap: 20px;
  }

  .outcome-item {
    padding: 36px 24px;
  }
}

/* ==========================================================================
   PREMIUM ASSESSMENT FLOW INFOGRAPHIC - $10k Design
   ========================================================================== */

/* Center section heading and title */
.assessment-flow-section .section__heading,
.assessment-flow-section .section__title {
  text-align: center;
}

.assessment-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 48px auto 0;
  position: relative;
}

.flow-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
  padding: 32px 0;
}

.flow-item:not(:last-child) {
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

/* Number badge */
.flow-item__badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 
    0 8px 24px rgba(37, 99, 235, 0.25),
    0 0 0 4px rgba(37, 99, 235, 0.1);
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.flow-item__badge::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, 
    rgba(37, 99, 235, 0.2) 0%, 
    rgba(59, 130, 246, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.flow-item:hover .flow-item__badge {
  transform: scale(1.08);
  box-shadow: 
    0 12px 32px rgba(37, 99, 235, 0.35),
    0 0 0 6px rgba(37, 99, 235, 0.15);
}

.flow-item:hover .flow-item__badge::before {
  opacity: 1;
}

/* Content area */
.flow-item__content {
  padding: 8px 0;
}

.flow-item__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.flow-item:hover .flow-item__title {
  color: #2563eb;
}

.flow-item__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* Connector line (hidden on last item) */
.flow-item__connector {
  position: absolute;
  left: 40px;
  top: 112px;
  bottom: -32px;
  width: 2px;
  background: linear-gradient(180deg, 
    rgba(37, 99, 235, 0.3) 0%,
    rgba(37, 99, 235, 0.15) 50%,
    rgba(37, 99, 235, 0.1) 100%
  );
  z-index: 1;
}

.flow-item:last-child .flow-item__connector {
  display: none;
}

/* Hover effect on connector */
.flow-item:hover .flow-item__connector {
  background: linear-gradient(180deg, 
    rgba(37, 99, 235, 0.5) 0%,
    rgba(37, 99, 235, 0.25) 50%,
    rgba(37, 99, 235, 0.15) 100%
  );
}

/* ==========================================================================
   PREMIUM INCIDENT PLAYBOOK INFOGRAPHIC - $10k Design
   ========================================================================== */

/* Center the section heading and title above the infographic */
.process-timeline-section .section__heading,
.process-timeline-section .section__title {
  text-align: center;
}

/* Container for the timeline */
.process-timeline {
  position: relative;
  max-width: 1200px;
  margin: 64px auto 0;
  padding: 0 20px;
}

/* Horizontal connecting line (desktop) */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 56px; /* Center with circles */
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(37, 99, 235, 0.2) 0%, 
    rgba(37, 99, 235, 0.4) 25%,
    rgba(37, 99, 235, 0.4) 75%,
    rgba(37, 99, 235, 0.2) 100%
  );
  z-index: 1;
}

/* Grid layout for steps */
.process-timeline__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

/* Individual step */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Circular badge with number */
.process-step__number {
  width: 112px;
  height: 112px;
  min-width: 112px; /* Prevent squishing */
  min-height: 112px; /* Prevent squishing */
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 28px;
  position: relative;
  z-index: 3;
  flex-shrink: 0; /* Prevent flexbox from shrinking the circle */
  box-shadow: 
    0 12px 40px rgba(37, 99, 235, 0.35),
    0 4px 12px rgba(37, 99, 235, 0.25),
    0 0 0 6px rgba(255, 255, 255, 1),
    0 0 0 8px rgba(37, 99, 235, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step__number::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Card containing title and description */
.process-step__card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  width: 100%;
  box-shadow: 
    0 6px 24px rgba(15, 27, 45, 0.08),
    0 2px 8px rgba(15, 27, 45, 0.04);
  border: 1px solid rgba(15, 27, 45, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  height: 100%; /* Make cards equal height */
}

.process-step__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f1b2d;
  margin: 0 0 12px 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.process-step__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
  flex-grow: 1;
}

/* Hover effects */
.process-step:hover .process-step__number {
  transform: scale(1.08);
  box-shadow: 
    0 16px 48px rgba(37, 99, 235, 0.45),
    0 6px 16px rgba(37, 99, 235, 0.35),
    0 0 0 6px rgba(255, 255, 255, 1),
    0 0 0 10px rgba(37, 99, 235, 0.18);
}

.process-step:hover .process-step__number::before {
  opacity: 1;
}

.process-step:hover .process-step__card {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 36px rgba(15, 27, 45, 0.12),
    0 4px 12px rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.15);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS - Premium Subtle Effects
   ========================================================================== */

/* Initial hidden state for process steps */
.process-step {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Visible state */
.process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animate connecting line - draw from left to right */
.process-timeline::before {
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.process-timeline.line-animated::before {
  transform: scaleX(1);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .process-step {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .process-timeline::before {
    transform: none;
    transition: none;
  }
  
  .process-timeline.line-animated::before {
    transform: none;
  }
}

/* Default steps styling for OTHER pages */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.step {
  background: #ffffff;
  padding: 48px 40px;
  border-radius: 16px;
  box-shadow: 
    0 4px 16px rgba(15, 27, 45, 0.08),
    0 1px 4px rgba(15, 27, 45, 0.04);
  border: 1px solid rgba(15, 27, 45, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step:hover::before {
  opacity: 1;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 12px 32px rgba(15, 27, 45, 0.12),
    0 4px 12px rgba(37, 100, 251, 0.1);
  border-color: rgba(37, 100, 251, 0.2);
}

.step__index {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 24px rgba(37, 99, 235, 0.35),
    0 2px 8px rgba(37, 99, 235, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.step__index::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 1;
  transition: opacity 0.4s ease;
}

.step__index::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover .step__index {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  transform: translateY(-6px) scale(1.08);
  box-shadow: 
    0 16px 40px rgba(37, 99, 235, 0.45),
    0 4px 16px rgba(37, 99, 235, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.step:hover .step__index::after {
  opacity: 1;
  animation: iconShimmer 1.5s ease-in-out infinite;
}

@keyframes iconShimmer {
  0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
  50% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f1b2d;
  margin: 0 0 20px 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #475569;
  margin: 0;
  letter-spacing: 0.01em;
}

.about-band {
  background: #fff;
  border-radius: 24px;
  padding: 80px 72px;
  box-shadow: var(--shadow-card);
  margin: 0;
}

.about-band .section__title {
  padding-bottom: 0;
  position: static;
}

.about-band .section__heading {
  position: static;
  display: block;
  left: auto;
  transform: none;
}

.tech-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  opacity: 0.6;
}

/* ============================================================================
   PREMIUM FOOTER - $50K WEBSITE DESIGN
   ============================================================================ */

.footer {
  background: linear-gradient(180deg, #0a0f1a 0%, #050810 100%);
  color: #d0d6f2;
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.5) 20%, rgba(91, 143, 238, 0.6) 50%, rgba(37, 99, 235, 0.5) 80%, transparent 100%);
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 0.9fr;
  gap: 48px;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

.footer__brand {
  max-width: 340px;
}

.footer__brand img {
  height: 44px;
  margin-bottom: 24px;
  filter: drop-shadow(0 2px 12px rgba(91, 143, 238, 0.25));
  transition: filter 0.3s ease;
}

.footer__brand:hover img {
  filter: drop-shadow(0 4px 20px rgba(91, 143, 238, 0.4));
}

.footer__brand-description {
  line-height: 1.75;
  color: rgba(208, 214, 242, 0.75);
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.footer__brand-address {
  line-height: 1.65;
  color: rgba(208, 214, 242, 0.55);
  font-size: 0.85rem;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-style: normal;
}

.footer__address {
  line-height: 1.65;
  color: rgba(208, 214, 242, 0.55);
  font-size: 0.85rem;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-style: normal;
  margin-top: 16px;
}

.footer__services,
.footer__legal {
  display: flex;
  flex-direction: column;
}

.footer__legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__legal-links li {
  margin-bottom: 14px;
}

.footer__legal-links li:last-child {
  margin-bottom: 0;
}

.footer__legal-links a {
  color: rgba(208, 214, 242, 0.8);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  position: relative;
}

.footer__legal-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer__cookie-settings {
  color: rgba(208, 214, 242, 0.55) !important;
  font-size: 0.85rem !important;
  position: relative;
  padding-left: 20px;
  margin-top: 8px;
  display: inline-flex !important;
  align-items: center;
}

.footer__cookie-settings::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(208,214,242,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3Cpath d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.footer__cookie-settings:hover {
  color: rgba(208, 214, 242, 0.85) !important;
}

.footer__cookie-settings:hover::before {
  opacity: 1;
}

.footer__column {
  display: flex;
  flex-direction: column;
}

.footer h4 {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.8), rgba(37, 99, 235, 0.2));
  border-radius: 2px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 14px;
}

.footer ul li:last-child {
  margin-bottom: 0;
}

.footer a {
  color: rgba(208, 214, 242, 0.8);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  position: relative;
}

.footer a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer a:focus-visible {
  outline: 2px solid rgba(37, 100, 251, 0.6);
  outline-offset: 3px;
  border-radius: 4px;
}

.footer__contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(208, 214, 242, 0.8);
  font-size: 0.9rem;
}

.footer__contact-email svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.footer__contact-email a {
  color: rgba(208, 214, 242, 0.9);
}

.footer__contact-email a:hover {
  color: #ffffff;
  transform: none;
}

.footer__cta-btn,
.footer__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff !important;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 16px rgba(37, 99, 235, 0.3),
    0 2px 4px rgba(37, 99, 235, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  letter-spacing: 0.025em;
}

.footer__cta-btn:hover,
.footer__cta-button:hover {
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  transform: translateY(-2px) translateX(0) !important;
  box-shadow: 
    0 8px 24px rgba(37, 99, 235, 0.4),
    0 4px 8px rgba(37, 99, 235, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
}

.footer__cta-btn:focus-visible,
.footer__cta-button:focus-visible {
  outline: 3px solid rgba(37, 100, 251, 0.5);
  outline-offset: 3px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER CONTACT SECTION - Clean list-style links (matches Services & Legal)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Style the contact column to match Services/Legal columns */
.footer__contact p {
  margin-bottom: 14px;
}

.footer__contact p a {
  color: rgba(208, 214, 242, 0.8);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
}

.footer__contact p a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* Contact link - identical styling to Services/Legal links */
.footer__contact-link {
  color: rgba(208, 214, 242, 0.8);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
}

.footer__contact-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer__contact-link:focus-visible {
  outline: 2px solid rgba(37, 100, 251, 0.6);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Hide the divider - not needed with clean list style */
.footer__social-divider {
  display: none;
}

/* Proper spacing between contact actions and social icons */
.footer__contact-actions {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 28px;
}

.footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 4px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(208, 214, 242, 0.7);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer__social a:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
  color: #ffffff;
  transform: translateY(-3px) translateX(0);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.footer__social a:focus-visible {
  outline: 2px solid rgba(37, 100, 251, 0.6);
  outline-offset: 2px;
}

.footer__legal-links ul li a {
  font-size: 0.875rem;
}

/* Footer Resources Subsection */
.footer__resources {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__resources-title {
  color: rgba(208, 214, 242, 0.65);
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__resources ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__resources ul li {
  margin-bottom: 12px;
}

.footer__resources ul li:last-child {
  margin-bottom: 0;
}

.footer__resources a {
  color: rgba(208, 214, 242, 0.8);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  position: relative;
}

.footer__resources a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer__resources a:focus-visible {
  outline: 2px solid rgba(37, 100, 251, 0.6);
  outline-offset: 3px;
  border-radius: 4px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(208, 214, 242, 0.5);
  position: relative;
  z-index: 1;
}

.footer__bottom-copyright {
  letter-spacing: 0.02em;
}

/* Footer Responsive Styles */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
  }
  
  .footer__brand {
    grid-column: 1 / -1;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 64px 0 0;
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
  
  .footer__brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
  
  .footer h4 {
    font-size: 0.75rem;
    margin-bottom: 20px;
  }
  
  .footer__cta-btn,
  .footer__cta-button {
    width: 100%;
    text-align: center;
  }
  
  .footer__social {
    justify-content: flex-start;
  }
  
  .footer__bottom {
    padding: 24px 0;
  }
  
  .footer__services,
  .footer__legal {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 48px 0 0;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .footer__brand {
    text-align: left;
  }
  
  .footer__column {
    text-align: left;
  }
  
  .footer h4::after {
    left: 0;
    transform: none;
  }
  
  .footer__social {
    justify-content: flex-start;
  }
  
  .footer__cta-btn,
  .footer__cta-button {
    width: 100%;
  }
  
  .footer__bottom {
    padding: 20px 0;
    font-size: 0.8rem;
  }
}

.form {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.form__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form input,
.form select,
.form textarea {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form__errors {
  color: #c62828;
  font-size: 0.9rem;
  margin-top: -8px;
}

.booking-panel {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 27, 45, 0.08);
  border-radius: 24px;
  padding: 30px;
  box-shadow:
    0 18px 52px rgba(15, 27, 45, 0.10),
    0 1px 4px rgba(15, 27, 45, 0.04);
}

.booking-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
}

.booking-panel__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
}

.booking-panel__logo {
  width: min(210px, 70%);
  height: auto;
  margin-bottom: 4px;
}

.booking-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.booking-panel__eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.10);
}

.booking-panel__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.booking-panel__text {
  margin: 0;
  color: #475569;
  font-size: 1rem;
  line-height: 1.65;
}

.booking-panel__frame-wrap {
  min-height: 680px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  background: #f8fafc;
  overflow: hidden;
}

.booking-panel__frame-wrap--large {
  min-height: 780px;
}

.booking-panel__frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  background: #ffffff;
}

.booking-panel__action-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.07), rgba(37, 99, 235, 0.02)),
    #f8fafc;
}

.booking-panel__action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
}

.booking-panel__action-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.25rem;
  line-height: 1.3;
}

.booking-panel__action-card p {
  margin: 0;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.65;
}

.booking-panel__action-card ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.booking-panel__action-card li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.45;
}

.booking-panel__action-card li::before {
  content: '';
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: #2563eb;
}

.booking-panel__action-card--large {
  padding: 28px;
}

.booking-panel__action-number {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.booking-panel__fallback {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  padding: 24px 28px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.055), rgba(37, 99, 235, 0.025));
}

.booking-panel__fallback p {
  margin: 0;
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.55;
  max-width: 620px;
}

.booking-panel__fallback .btn {
  justify-self: end;
  min-width: 280px;
  min-height: 58px;
  padding: 16px 40px;
  font-size: 1.0625rem;
  font-weight: 700;
  border-radius: 10px;
}

.contact-split--process .booking-panel {
  width: 100%;
  max-width: none;
}

@media (max-width: 900px) {
  .booking-panel {
    padding: 24px;
    border-radius: 20px;
  }

  .booking-panel__frame-wrap,
  .booking-panel__frame-wrap--large {
    min-height: 700px;
  }
}

@media (max-width: 640px) {
  .booking-panel {
    padding: 20px;
  }

  .booking-panel__header {
    align-items: center;
    text-align: center;
  }

  .booking-panel__logo {
    width: min(190px, 80%);
  }

  .booking-panel__frame-wrap,
  .booking-panel__frame-wrap--large {
    min-height: 660px;
  }

  .booking-panel__fallback {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    text-align: center;
  }

  .booking-panel__fallback .btn {
    justify-self: stretch;
    width: 100%;
    min-width: 0;
  }
}

/* Form Scheduling Notice - Premium Coming Soon Component */
.form-scheduling-notice {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(30, 64, 175, 0.08) 100%);
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  position: relative;
  overflow: hidden;
  animation: noticeSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes noticeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-scheduling-notice::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
}

.form-scheduling-notice__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.form-scheduling-notice__icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.form-scheduling-notice__content {
  flex: 1;
  min-width: 0;
}

.form-scheduling-notice__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.form-scheduling-notice__text {
  font-size: 0.9375rem;
  color: #475569;
  margin: 0 0 16px 0;
  line-height: 1.6;
}

.form-scheduling-notice__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.form-scheduling-notice__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: #1e40af;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.form-scheduling-notice__link:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.form-scheduling-notice__link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-scheduling-notice__link:hover svg {
  color: #ffffff;
}

.form-scheduling-notice__thanks {
  font-size: 0.875rem;
  color: #2563eb;
  font-weight: 600;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(37, 99, 235, 0.1);
}

@media (max-width: 640px) {
  .form-scheduling-notice {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }
  
  .form-scheduling-notice__icon {
    width: 40px;
    height: 40px;
  }
  
  .form-scheduling-notice__icon svg {
    width: 20px;
    height: 20px;
  }
  
  .form-scheduling-notice__title {
    font-size: 1rem;
  }
  
  .form-scheduling-notice__link {
    padding: 12px 14px;
    font-size: 0.8125rem;
  }
}

/* Premium Banner Dark - Matching Strip Style */
.banner-dark {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  color: #ffffff;
  border-radius: 32px;
  padding: 80px 72px;
  box-shadow: 
    0 24px 64px rgba(15, 27, 45, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  margin: 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.banner-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.banner-dark h2,
.banner-dark .section__title {
  color: #ffffff !important;
  margin: 0 auto 24px auto;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 0;
  position: static;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  text-align: center;
}

.banner-dark h3 {
  color: #ffffff;
  margin: 0 0 20px 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.banner-dark p,
.banner-dark ul,
.banner-dark li {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  font-size: 1.1rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.banner-dark p {
  margin: 0 0 24px 0;
}

.banner-dark p:last-child {
  margin-bottom: 0;
}

.banner-dark__questions {
  list-style: none;
  padding: 0;
  margin: 28px auto 0;
  max-width: 820px;
  display: grid;
  gap: 10px;
}

.banner-dark__questions li {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.banner-dark__questions li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  flex: 0 0 6px;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .banner-dark__questions {
    max-width: 100%;
    margin-top: 24px;
    gap: 12px;
  }

  .banner-dark__questions li {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.07);
    line-height: 1.45;
  }

  .banner-dark__questions li::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .banner-dark__questions {
    gap: 10px;
    margin-top: 22px;
  }

  .banner-dark__questions li {
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 0.92rem;
  }
}

.banner-dark a {
  color: #ffffff;
  text-decoration: underline;
}

.banner-dark .btn--primary {
  background: rgba(255, 255, 255, 0.95);
  color: #2563eb;
  border: 2px solid rgba(255, 255, 255, 1);
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.banner-dark .btn--primary:hover {
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: #1d4ed8;
}

.banner-dark .btn--secondary {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
  padding: 18px 44px !important;
  font-size: 1.0625rem !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  display: inline-block !important;
  text-decoration: none !important;
  box-shadow: 
    0 6px 22px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  letter-spacing: 0.015em !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.banner-dark .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 1) !important;
  text-decoration: none !important;
  transform: translateY(-3px) !important;
  box-shadow: 
    0 10px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

.banner-dark .btn,
.strip .btn {
  margin-top: 32px;
  display: inline-block;
}

/* ============================================================================
   PREMIUM CTA BUTTONS - PROFESSIONAL $10K WEBSITE DESIGN
   ============================================================================ */

/* Primary White Button - Professional High Contrast */
.btn--cta {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  color: #0a0f1a !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  padding: 18px 44px !important;
  font-size: 1.0625rem !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  display: inline-block !important;
  text-decoration: none !important;
  box-shadow: 
    0 10px 32px rgba(0, 0, 0, 0.4),
    0 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  letter-spacing: 0.015em !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  cursor: pointer !important;
  vertical-align: middle !important;
}

.btn--cta:hover {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%) !important;
  color: #0a0f1a !important;
  text-decoration: none !important;
  transform: translateY(-3px) !important;
  border-color: rgba(255, 255, 255, 1) !important;
  box-shadow: 
    0 14px 40px rgba(0, 0, 0, 0.5),
    0 6px 20px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.btn--cta:active {
  transform: translateY(-1px) !important;
  box-shadow: 
    0 8px 26px rgba(0, 0, 0, 0.4),
    0 3px 14px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

/* Secondary Dark Blue Button - Urgent/Critical Actions */
.btn--cta-secondary {
  background: #2563eb !important;
  color: #ffffff !important;
  border: 2px solid #3b82f6 !important;
  padding: 18px 44px !important;
  font-size: 1.0625rem !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  display: inline-block !important;
  text-decoration: none !important;
  box-shadow: 
    0 8px 28px rgba(37, 99, 235, 0.4),
    0 4px 14px rgba(37, 99, 235, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  letter-spacing: 0.015em !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  cursor: pointer !important;
  vertical-align: middle !important;
}

.btn--cta-secondary:hover {
  background: #1d4ed8 !important;
  color: #ffffff !important;
  border-color: #2563eb !important;
  text-decoration: none !important;
  transform: translateY(-3px) !important;
  box-shadow: 
    0 12px 36px rgba(37, 99, 235, 0.5),
    0 6px 18px rgba(37, 99, 235, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

.btn--cta-secondary:active {
  transform: translateY(-1px) !important;
  box-shadow: 
    0 6px 22px rgba(0, 0, 0, 0.45),
    0 3px 12px rgba(19, 31, 53, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* Button Spacing in Dark Banners */
.banner-dark .btn--cta,
.banner-dark .btn--cta-secondary {
  margin-top: 28px !important;
}

/* Remove any link underlines */
a.btn--cta,
a.btn--cta-secondary {
  text-decoration: none !important;
}

a.btn--cta:hover,
a.btn--cta-secondary:hover {
  text-decoration: none !important;
}

/* ==========================================================================
   HERO BUTTONS - DARK BACKGROUND (Incident Response, etc.)
   ========================================================================== */

/* Primary Button in Hero - Dark Background */
.hero--dark .hero__actions .btn--primary {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%) !important;
  color: #1e3a5f !important;
  border: none !important;
  padding: 16px 36px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
  box-shadow: 
    0 4px 20px rgba(255, 255, 255, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  letter-spacing: 0.01em !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 54px !important;
  text-decoration: none !important;
}

.hero--dark .hero__actions .btn--primary:hover {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 
    0 8px 28px rgba(255, 255, 255, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

/* Secondary Button in Hero - Dark Background */
.hero--dark .hero__actions .btn--secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  padding: 14px 34px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  letter-spacing: 0.01em !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 54px !important;
  text-decoration: none !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.hero--dark .hero__actions .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.65) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1) !important;
}

/* ==========================================================================
   HERO BUTTONS - LIGHT BACKGROUND (Home, Training, RCA, Retainers)
   ========================================================================== */

/* Primary Button in Hero - Light Background */
.hero__actions .btn--primary {
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 16px 36px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
  box-shadow: 
    0 4px 16px rgba(37, 99, 235, 0.35),
    0 2px 4px rgba(37, 99, 235, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  letter-spacing: 0.01em !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 54px !important;
  text-decoration: none !important;
}

.hero__actions .btn--primary:hover {
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 
    0 8px 24px rgba(37, 99, 235, 0.4),
    0 4px 8px rgba(37, 99, 235, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Secondary Button in Hero - Light Background */
.hero__actions .btn--secondary {
  background: transparent !important;
  color: var(--color-accent) !important;
  border: 2px solid rgba(37, 99, 235, 0.3) !important;
  padding: 14px 34px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  letter-spacing: 0.01em !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 54px !important;
  text-decoration: none !important;
}

.hero__actions .btn--secondary:hover {
  background: rgba(37, 100, 251, 0.08) !important;
  border-color: rgba(37, 100, 251, 0.5) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15) !important;
}

/* Emergency Contact Links - Professional Clean Style */
.emergency-contact-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 16px 0 !important;
}

.emergency-contact-item svg {
  flex-shrink: 0;
  color: #ffffff !important;
  opacity: 0.9;
}

.emergency-link {
  color: #ffffff !important;
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: opacity 0.2s ease !important;
  letter-spacing: 0.01em;
}

.emergency-link:hover {
  color: #ffffff !important;
  text-decoration: none !important;
  opacity: 0.85 !important;
}

.ir-emergency-section {
  padding-top: 72px;
}

.ir-emergency-cta {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 64px;
  border-radius: 24px;
  border: 1px solid rgba(37, 99, 235, 0.24);
  background:
    radial-gradient(circle at 50% 0%, rgba(96, 165, 250, 0.20), transparent 42%),
    linear-gradient(135deg, #0d1b2a 0%, #12233a 48%, #1d4ed8 100%);
  box-shadow: 0 24px 70px rgba(15, 27, 45, 0.22);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ir-emergency-cta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(147, 197, 253, 0.95), transparent);
}

.ir-emergency-cta__eyebrow {
  margin: 0 0 14px;
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ir-emergency-cta__title {
  max-width: 760px;
  margin: 0 auto 18px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.ir-emergency-cta__text {
  max-width: 780px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.75;
}

.ir-emergency-cta__phone {
  min-width: 320px;
  min-height: 64px;
  gap: 12px;
  padding: 18px 38px;
  font-size: 1.16rem;
  font-weight: 800;
}

.ir-emergency-cta__phone svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.ir-emergency-cta__notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.ir-emergency-cta__notes span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(147, 197, 253, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .ir-emergency-section {
    padding-top: 56px;
  }

  .ir-emergency-cta {
    padding: 40px 24px;
    border-radius: 20px;
  }

  .ir-emergency-cta__text {
    font-size: 1rem;
  }

  .ir-emergency-cta__phone {
    width: 100%;
    min-width: 0;
    padding: 16px 22px;
    font-size: 1.05rem;
  }

  .ir-emergency-cta__notes {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ir-emergency-cta__notes span {
    justify-content: center;
  }
}

.banner-dark--premium {
  background: linear-gradient(135deg, #5b7fb8 0%, #3d5a8c 50%, #2d4a7c 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(15, 27, 45, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.banner-dark--premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(91, 143, 238, 0.6), transparent);
}

.banner-dark--alert {
  border-left: 4px solid #2563eb;
  animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% { border-left-color: #2563eb; }
  50% { border-left-color: #5b8dee; }
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
  list-style: none;
  padding: 0;
}

.values-list li {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.values-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(91, 143, 238, 0.8), rgba(37, 100, 251, 0.8));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.values-list li::after {
  content: "\2713";
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.2rem;
  color: rgba(91, 143, 238, 0.6);
  font-weight: 700;
  opacity: 0;
  transform: scale(0.5) rotate(-10deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.values-list li:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.values-list li:hover::before {
  opacity: 1;
}

.values-list li:hover::after {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

@media (max-width: 768px) {
  .values-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .values-list li {
    padding: 24px 20px;
  }
}

/* Premium Hero Dark - Matching Strip Style */
.hero--dark {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero--dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  z-index: 1;
}

.hero--dark::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.hero--dark .hero__eyebrow {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.hero--dark .hero__title {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.hero--dark p,
.hero--dark .hero__text {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.hero--dark .hero__grid {
  position: relative;
  z-index: 1;
}

.hero--dark .hero__visual {
  position: relative;
}

.hero--dark .hero__visual::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  filter: blur(40px);
}

.hero--dark .orb {
  position: relative;
  z-index: 2;
  background: transparent;
  box-shadow: none;
}

.contact-split {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Premium Contact Card - Matching Strip Style */
.contact-card {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  color: #ffffff;
  border-radius: 32px;
  padding: 48px 40px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 24px 64px rgba(15, 27, 45, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.contact-card h2,
.contact-card .section__title {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.contact-card a {
  color: #ffffff;
  font-weight: 600;
}

/* ==========================================================================
   URGENT CONTACT CARD - Redesigned for Contact Page
   ========================================================================== */

.contact-card--urgent {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-card__title {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: #ffffff !important;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.contact-card__intro {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9) !important;
  margin: 0 0 28px 0;
  text-shadow: none !important;
}

/* Contact Methods */
.contact-card__methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.2s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateX(4px);
}

.contact-method--static {
  cursor: default;
}

.contact-method--static:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-method__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
}

.contact-method__icon svg {
  width: 18px;
  height: 18px;
}

.contact-method__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  min-width: 70px;
}

.contact-method__value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  margin-left: auto;
}

/* Process Section */
.contact-card__process {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
}

.contact-card__subtitle {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 18px 0;
  letter-spacing: 0.01em;
}

.contact-card__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card__steps li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

.contact-card__steps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.contact-card__steps li:first-child::before {
  background: #60a5fa;
}

.contact-card__steps li:nth-child(2)::before {
  background: #34d399;
}

.contact-card__steps li:nth-child(3)::before {
  background: #a78bfa;
}

/* Inline Steps Variant - bullets inside text for centered layouts */
.contact-card__steps--inline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card__steps--inline p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
}

.contact-step-bullet {
  display: inline;
  margin-right: 12px;
  font-size: 1.1rem;
  line-height: inherit;
  color: #60a5fa;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-card__steps--inline p:nth-child(1) .contact-step-bullet {
  color: #60a5fa;
}

.contact-card__steps--inline p:nth-child(2) .contact-step-bullet {
  color: #34d399;
}

.contact-card__steps--inline p:nth-child(3) .contact-step-bullet {
  color: #a78bfa;
}

/* Notes Section */
.contact-card__notes {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card__notes p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6) !important;
  margin: 0 0 10px 0;
  text-shadow: none !important;
}

.contact-card__notes p:last-child {
  margin-bottom: 0;
}

/* Urgent Card Responsive */
@media (max-width: 768px) {
  .contact-card--urgent {
    padding: 32px 24px;
  }
  
  .contact-card__title {
    font-size: 1.375rem;
  }
  
  .contact-card__intro {
    font-size: 0.9375rem;
    margin-bottom: 24px;
  }
  
  .contact-card__methods {
    gap: 10px;
    margin-bottom: 28px;
  }
  
  .contact-method {
    padding: 12px 14px;
    gap: 12px;
  }
  
  .contact-method__icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  
  .contact-method__icon svg {
    width: 16px;
    height: 16px;
  }
  
  .contact-method__label {
    font-size: 0.75rem;
    min-width: 60px;
  }
  
  .contact-method__value {
    font-size: 0.875rem;
  }
  
  .contact-card__process {
    padding-top: 24px;
    margin-bottom: 24px;
  }
  
  .contact-card__subtitle {
    font-size: 0.875rem;
    margin-bottom: 14px;
  }
  
  .contact-card__steps {
    gap: 12px;
  }
  
  .contact-card__steps li {
    font-size: 0.875rem;
    padding-left: 24px;
  }
  
  .contact-card__steps li::before {
    width: 6px;
    height: 6px;
    top: 7px;
  }
  
  .contact-card__steps--inline {
    gap: 12px;
  }
  
  .contact-card__steps--inline p {
    font-size: 0.875rem;
  }
  
  .contact-step-bullet {
    margin-right: 10px;
    font-size: 1rem;
  }
  
  .contact-card__notes {
    padding-top: 20px;
  }
  
  .contact-card__notes p {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .contact-card--urgent {
    padding: 28px 20px;
    border-radius: 24px;
  }
  
  .contact-method {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .contact-method__label {
    min-width: auto;
  }
  
  .contact-method__value {
    width: 100%;
    margin-left: 50px;
    margin-top: -4px;
    font-size: 0.9375rem;
  }
}

.policy {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.policy h2 {
  margin-top: 40px;
}

/* ===== GDPR Policy Page Styles ===== */
.gdpr-hero {
  background: linear-gradient(135deg, #0f1b2d 0%, #1a2d4a 50%, #0f1b2d 100%);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.gdpr-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(37, 100, 251, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(37, 100, 251, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.gdpr-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 100, 251, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.gdpr-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.gdpr-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 100, 251, 0.15);
  border: 1px solid rgba(37, 100, 251, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.gdpr-hero__badge svg {
  width: 18px;
  height: 18px;
}

.gdpr-hero__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.gdpr-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 24px;
  line-height: 1.6;
}

.gdpr-hero__meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.gdpr-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.gdpr-hero__meta-item svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.gdpr-content {
  padding: 60px 0 80px;
  background: var(--color-bg);
}

.gdpr-content .container {
  max-width: 900px;
}

.gdpr-intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-muted);
  margin: 0;
  padding: 8px 0;
  border-left: none;
}

.gdpr-section:has(.gdpr-intro-text) {
  background: linear-gradient(135deg, rgba(37, 100, 251, 0.04) 0%, rgba(37, 100, 251, 0.01) 100%);
  border: 1px solid rgba(37, 100, 251, 0.1);
}

.gdpr-section:has(.gdpr-intro-text)::before {
  background: linear-gradient(180deg, rgba(37, 100, 251, 0.3) 0%, rgba(37, 100, 251, 0.1) 100%);
}

.gdpr-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 40px;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(12, 22, 44, 0.06);
  border: 1px solid rgba(15, 27, 45, 0.06);
  position: relative;
  overflow: hidden;
}

.gdpr-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #2564fb 0%, #1848b0 100%);
  border-radius: 4px 0 0 4px;
}

.gdpr-section__number {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(37, 100, 251, 0.06);
  line-height: 1;
  pointer-events: none;
}

.gdpr-section__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-deep);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gdpr-section__title-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(37, 100, 251, 0.1) 0%, rgba(37, 100, 251, 0.05) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gdpr-section__title-icon svg {
  width: 18px;
  height: 18px;
  color: #2564fb;
}

.gdpr-section p {
  color: var(--color-muted);
  line-height: 1.75;
  margin: 0 0 16px;
}

.gdpr-section p:last-child {
  margin-bottom: 0;
}

.gdpr-subsection {
  margin-top: 24px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  border: 1px solid rgba(15, 27, 45, 0.05);
}

.gdpr-subsection__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-deep);
  margin: 0 0 12px;
}

.gdpr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gdpr-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--color-muted);
  line-height: 1.65;
}

.gdpr-list li:last-child {
  margin-bottom: 0;
}

.gdpr-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #2564fb;
  border-radius: 50%;
}

.gdpr-info-box {
  background: linear-gradient(135deg, rgba(37, 100, 251, 0.08) 0%, rgba(37, 100, 251, 0.03) 100%);
  border: 1px solid rgba(37, 100, 251, 0.15);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 16px 0;
}

.gdpr-info-box p {
  margin: 0;
  color: var(--color-deep);
}

.gdpr-info-box strong {
  color: #2564fb;
}

.gdpr-info-box a {
  color: #2564fb;
  text-decoration: none;
  font-weight: 500;
}

.gdpr-info-box a:hover {
  text-decoration: underline;
}

.gdpr-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid rgba(37, 100, 251, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 12px 0;
}

.gdpr-contact-card__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #2564fb 0%, #1848b0 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gdpr-contact-card__icon svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.gdpr-contact-card__content {
  flex: 1;
}

.gdpr-contact-card__label {
  font-size: 0.8rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.gdpr-contact-card__value {
  color: var(--color-deep);
  font-weight: 500;
}

.gdpr-contact-card__value a {
  color: #2564fb;
  text-decoration: none;
}

.gdpr-contact-card__value a:hover {
  text-decoration: underline;
}

.gdpr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.gdpr-subsection p:first-of-type:last-of-type {
  margin: 0;
}

.gdpr-contact-card--spaced {
  margin-top: 20px;
}

.gdpr-link {
  color: #2564fb;
  font-weight: 500;
  text-decoration: none;
}

.gdpr-link:hover {
  text-decoration: underline;
}

.gdpr-no-margin {
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .gdpr-hero {
    padding: 80px 0 50px;
  }

  .gdpr-section {
    padding: 24px 20px;
  }

  .gdpr-section__number {
    font-size: 2.5rem;
    right: 16px;
    top: 16px;
  }

  .gdpr-subsection {
    padding: 16px;
  }

  .gdpr-hero__meta {
    gap: 16px;
  }

  .gdpr-contact-card {
    flex-direction: column;
    text-align: center;
  }
}

/* Professional scroll reveal animations */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.has-js .reveal {
  opacity: 0;
  transform: translateY(20px);
}

html.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle card animations */
html.has-js .card,
html.has-js .step,
html.has-js .strip__item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

html.has-js .card.is-visible,
html.has-js .step.is-visible,
html.has-js .strip__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance animations */
html.has-js .hero__eyebrow,
html.has-js .hero__title,
html.has-js .hero p,
html.has-js .hero__actions,
html.has-js .hero__visual {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.has-js .hero__eyebrow.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.has-js .hero__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.has-js .hero p.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.has-js .hero__actions.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.has-js .hero__visual.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth page entrance */
body {
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.page-ready {
  opacity: 1;
}

/* Menu toggle hidden by default - shown via responsive-fixes.css at mobile breakpoints */
.menu-toggle {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ==========================================================================
   TRUST AND VALUES SECTION - Premium Redesign ($50k Look)
   ========================================================================== */

.trust-values-section {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}

/* Decorative Grid Pattern */
.trust-values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(37, 99, 235, 0.04) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Ambient Glow Effects */
.trust-values-section::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Section Container */
.trust-values-section .container {
  position: relative;
  z-index: 2;
}

.trust-values-section .section__title {
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 680px;
  margin: 0 auto;
}

.trust-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 72px;
  position: relative;
  z-index: 2;
}

/* Premium Card Design */
.trust-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 44px 32px 36px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

/* Subtle Top Accent */
.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transform: scaleX(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card Hover */
.trust-card:hover {
  transform: translateY(-8px);
  border-color: #bfdbfe;
  box-shadow: 
    0 20px 40px -12px rgba(37, 99, 235, 0.15),
    0 8px 16px -4px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(37, 99, 235, 0.08);
}

.trust-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

/* Gold Star Badge */
.trust-card__badge {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 28px;
  height: 28px;
  color: #f59e0b;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.25));
  z-index: 5;
}

.trust-card__badge svg {
  width: 100%;
  height: 100%;
  fill: #fbbf24;
  stroke: #f59e0b;
  stroke-width: 1.5px;
  transition: all 0.4s ease;
}

.trust-card:hover .trust-card__badge {
  transform: scale(1.15) rotate(12deg);
  filter: drop-shadow(0 4px 12px rgba(251, 191, 36, 0.5));
}

/* Main Icon - Premium Shield Design */
.trust-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #e2e8f0;
  position: relative;
  box-shadow: 
    0 4px 12px rgba(37, 99, 235, 0.08),
    inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

/* Outer Glow Ring */
.trust-card__icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

/* Inner Shine Effect */
.trust-card__icon::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
  border-radius: 50%;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.trust-card__icon svg {
  width: 38px;
  height: 38px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  stroke-width: 1.8px;
  filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.15));
}

.trust-card:hover .trust-card__icon {
  background: linear-gradient(145deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  border-color: #1d4ed8;
  box-shadow: 
    0 16px 32px -8px rgba(37, 99, 235, 0.45),
    0 8px 16px -4px rgba(37, 99, 235, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-4px) scale(1.02);
}

.trust-card:hover .trust-card__icon::before {
  opacity: 1;
  inset: -10px;
}

.trust-card:hover .trust-card__icon::after {
  opacity: 0.3;
}

.trust-card:hover .trust-card__icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Typography */
.trust-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 14px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
  letter-spacing: -0.02em;
}

.trust-card:hover .trust-card__title {
  color: #1d4ed8;
}

.trust-card__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #64748b;
  margin: 0 0 28px 0;
  flex-grow: 1;
  font-weight: 400;
}

/* Value Footer - Premium Trust Badge */
.trust-card__value {
  margin-top: auto;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

/* Shimmer Effect */
.trust-card__value::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: left 0.6s ease;
}

.trust-card:hover .trust-card__value {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-color: #fcd34d;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.12);
}

.trust-card:hover .trust-card__value::before {
  left: 100%;
}

.trust-card__value-label {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  max-width: 100%;
  text-align: left;
  transition: all 0.4s ease;
}

.trust-card:hover .trust-card__value-label {
  color: #b45309;
}

/* Trust Shield Icon - Gold Theme */
.trust-card__value-label::before {
  content: '';
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'%3E%3C/path%3E%3Cpolyline points='9 12 11 14 15 10'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
}

.trust-card:hover .trust-card__value-label::before {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.5), 0 0 0 4px rgba(251, 191, 36, 0.15);
}

/* Verified Badge - English */
.trust-card__value-label::after {
  content: '\2713\00a0VERIFIED';
  display: none;
  font-size: 0.625rem;
  font-weight: 700;
  color: #b45309;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(245, 158, 11, 0.2);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}

/* Verified Badge - Romanian */
:lang(ro) .trust-card__value-label::after {
  content: '\2713\00a0VERIFICAT';
}

.trust-card:hover .trust-card__value-label::after {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive - Large Tablet */
@media (max-width: 1399px) {
  .trust-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .trust-card {
    padding: 40px 28px 32px;
  }
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .trust-values-section {
    padding: 100px 0;
  }
  
  .trust-values-grid {
    gap: 20px;
    margin-top: 56px;
  }
  
  .trust-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }
  
  .trust-card__icon svg {
    width: 34px;
    height: 34px;
  }
  
  .trust-card__value {
    padding: 14px 16px;
  }
  
  .trust-card__value-label {
    font-size: 0.75rem;
    gap: 10px;
  }
  
  .trust-card__value-label::before {
    width: 20px;
    height: 20px;
    background-size: 10px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .trust-values-section {
    padding: 80px 0;
  }

  .trust-values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 420px;
    margin-top: 48px;
  }
  
  .trust-card {
    padding: 32px 24px 28px;
    border-radius: 16px;
  }
  
  .trust-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    margin-bottom: 24px;
  }
  
  .trust-card__icon::before {
    inset: -4px;
    border-radius: 18px;
  }
  
  .trust-card__icon svg {
    width: 30px;
    height: 30px;
  }
  
  .trust-card__badge {
    width: 24px;
    height: 24px;
    top: 24px;
    right: 24px;
  }
  
  .trust-card__title {
    font-size: 1.25rem;
  }
  
  .trust-card__text {
    font-size: 0.875rem;
    margin-bottom: 24px;
  }
  
  .trust-card__value {
    padding: 12px 14px;
    border-radius: 10px;
  }
  
  .trust-card__value-label {
    font-size: 0.6875rem;
    gap: 8px;
  }
  
  .trust-card__value-label::before {
    width: 18px;
    height: 18px;
    background-size: 9px;
  }
  
  .trust-card__value-label::after {
    font-size: 0.5625rem;
    padding: 2px 6px;
  }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
  .trust-values-section {
    padding: 64px 0;
  }
  
  .trust-values-section .section__title {
    font-size: 1.5rem;
  }
  
  .trust-card {
    padding: 28px 20px 24px;
  }
  
  .trust-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }
  
  .trust-card__icon svg {
    width: 26px;
    height: 26px;
  }
  
  .trust-card__value {
    padding: 10px 12px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  
  .trust-card__value-label {
    font-size: 0.625rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  
  .trust-card__value-label::after {
    display: none;
  }
}

/* ==========================================================================
   PREMIUM TEAM SECTION - $50k Design
   ========================================================================== */

.leadership-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 120px 0;
  overflow: hidden;
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  margin-top: 72px;
}

/* Premium Card Container */
.leader-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 10px 30px -5px rgba(15, 27, 45, 0.06),
    0 4px 12px -2px rgba(15, 27, 45, 0.03);
  border: 1px solid rgba(37, 99, 235, 0.08);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 460px; /* Increased width to reduce whitespace */
}

/* Premium Hover State */
.leader-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 24px 60px -10px rgba(37, 99, 235, 0.2),
    0 12px 24px -5px rgba(15, 27, 45, 0.1);
  border-color: rgba(37, 99, 235, 0.25);
  z-index: 10;
}

/* Shine effect on hover */
.leader-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  transition: none;
  pointer-events: none;
  z-index: 10;
}

.leader-card:hover::after {
  left: 200%;
  transition: left 0.8s ease-in-out;
}

/* Premium Photo Handling - Consistent Crop Logic */
.leader-photo-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 0.85; /* Consistent 4:5 portrait crop */
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
}

/* Gradient Overlay */
.leader-photo-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.leader-card:hover .leader-photo-wrapper::after {
  opacity: 0.6;
}

.leader-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), filter 0.5s ease;
  filter: saturate(0.95) contrast(1.05);
}

.leader-card:hover .leader-photo {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.05);
}

/* Content Area */
.leader-content {
  padding: 32px 32px; /* Increased side padding */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #ffffff;
}

/* Header: Name + Verified Badge - Premium Inline Design */
.leader-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
  flex-wrap: nowrap;
  gap: 12px;
}

.leader-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f1b2d;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.leader-card:hover .leader-name {
  color: #2563eb;
}

.leader-verified {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px 6px 8px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(241, 245, 249, 0.9) 50%,
    rgba(226, 232, 240, 0.85) 100%);
  color: #1e40af;
  font-size: 0.55rem;
  font-weight: 800;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(37, 99, 235, 0.25);
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(37, 99, 235, 0.12),
    0 8px 24px rgba(37, 99, 235, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(37, 99, 235, 0.05);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Subtle shimmer effect */
.leader-verified::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
  pointer-events: none;
}

.leader-card:hover .leader-verified::after {
  left: 100%;
}

.leader-card:hover .leader-verified {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 1) 0%, 
    rgba(243, 247, 255, 0.95) 50%,
    rgba(235, 241, 255, 0.9) 100%);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.06),
    0 6px 16px rgba(37, 99, 235, 0.18),
    0 12px 32px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}

/* Premium verified checkmark - Luxury Style */
.leader-verified::before {
  content: '';
  width: 20px;
  height: 20px;
  margin-right: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 
    0 2px 4px rgba(30, 64, 175, 0.4),
    0 4px 8px rgba(37, 99, 235, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  background: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/12px 12px no-repeat,
    linear-gradient(145deg, #3b82f6 0%, #2563eb 50%, #1e40af 100%);
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.leader-card:hover .leader-verified::before {
  transform: scale(1.08);
  box-shadow: 
    0 3px 6px rgba(30, 64, 175, 0.5),
    0 6px 12px rgba(37, 99, 235, 0.35),
    0 0 20px rgba(59, 130, 246, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 -1px 0 rgba(0, 0, 0, 0.1) inset;
}

/* Role */
.leader-role {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
  margin: 2px 0 24px 0;
  padding-bottom: 18px;
  border-bottom: 1px solid #f1f5f9;
  display: block;
  width: 100%;
  letter-spacing: -0.01em;
}

/* Badges Grid */
.leader-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  transition: all 0.3s ease;
}

.badge-icon {
  color: #2563eb;
  margin-right: 6px;
  font-size: 1em;
}

.leader-card:hover .badge {
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
  color: #1e293b;
}

/* Bio Text */
.leader-bio {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 28px;
  flex-grow: 1;
}

/* Points List - Left Aligned & Structured */
.leader-points {
  list-style: none;
  padding: 24px;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.6) 0%, rgba(241, 245, 249, 0.3) 100%);
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  text-align: left; /* Force left alignment */
}

.leader-points::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.05), transparent 70%);
  pointer-events: none;
}

.leader-points li {
  position: relative;
  padding-left: 0;
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.5;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start; /* Align content to start/left */
  text-align: left; /* Ensure text block itself is left aligned */
  gap: 12px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.leader-points li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 6px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/60% no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/60% no-repeat;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

.leader-points li:hover {
  transform: translateX(6px);
  color: #0f1b2d;
}

.leader-points li:hover::before {
  transform: scale(1.1);
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

/* CTA Button */
.leader-cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
  padding: 16px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-radius: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.leader-cta:hover {
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Responsive Adjustments - 3-Column Leaders Grid */
/* Desktop (1100px+): 3 columns - earlier breakpoint to prevent badge overlap */
@media (min-width: 1100px) {
  .leaders-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    max-width: 1520px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .leader-card {
    max-width: 100%;
  }
  
  /* Compact header for 3-column layout - ALWAYS INLINE */
  .leader-header {
    flex-wrap: nowrap;
    gap: 8px;
  }
  
  .leader-name {
    font-size: 1.2rem;
  }
  
  .leader-verified {
    font-size: 0.52rem;
    padding: 4px 10px 4px 6px;
  }
  
  .leader-verified::before {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    background-size: 9px 9px;
  }
  
  .leader-content {
    padding: 28px 24px;
  }
  
  .leader-role {
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }
  
  .leader-bio {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  
  .leader-badges {
    gap: 6px;
    margin-bottom: 24px;
  }
  
  .badge {
    padding: 5px 10px;
    font-size: 0.7rem;
  }
  
  .leader-points {
    padding: 20px;
    margin-bottom: 28px;
    gap: 12px;
  }
  
  .leader-points li {
    font-size: 0.85rem;
    gap: 10px;
  }
  
  .leader-points li::before {
    width: 18px;
    height: 18px;
  }
  
  .leader-cta {
    padding: 14px;
    font-size: 0.9rem;
    border-radius: 12px;
  }
}

/* Large desktop (1200px+): More spacious 3-column layout */
@media (min-width: 1200px) {
  .leaders-grid {
    gap: 28px !important;
  }
  
  .leader-header {
    flex-wrap: nowrap;
    gap: 10px;
  }
  
  .leader-name {
    font-size: 1.35rem;
  }
  
  .leader-verified {
    font-size: 0.5rem;
    padding: 4px 10px 4px 6px;
  }
  
  .leader-verified::before {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    background-size: 9px 9px;
  }
  
  .leader-content {
    padding: 32px 28px;
  }
  
  .leader-role {
    font-size: 0.95rem;
  }
  
  .leader-bio {
    font-size: 0.92rem;
  }
  
  .badge {
    padding: 6px 11px;
    font-size: 0.72rem;
  }
  
  .leader-points li {
    font-size: 0.875rem;
  }
}

/* Extra large desktop (1400px+): Full premium styling */
@media (min-width: 1400px) {
  .leader-header {
    flex-wrap: nowrap;
    gap: 12px;
  }
  
  .leader-name {
    font-size: 1.5rem;
  }
  
  .leader-verified {
    font-size: 0.55rem;
    padding: 4px 11px 4px 7px;
  }
  
  .leader-verified::before {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    background-size: 10px 10px;
  }
  
  .leader-content {
    padding: 32px 32px;
  }
  
  .leader-role {
    font-size: 1rem;
  }
  
  .leader-bio {
    font-size: 0.95rem;
  }
  
  .badge {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  .leader-points li {
    font-size: 0.9rem;
  }
  
  .leader-cta {
    padding: 16px;
    font-size: 1rem;
  }
}

/* Tablet/Mobile (<1100px): 1 column - earlier breakpoint to prevent badge overlap */
@media (max-width: 1099px) {
  .leaders-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .leader-card {
    max-width: 100%;
  }
  
  /* Full width header - ALWAYS INLINE */
  .leader-header {
    flex-wrap: nowrap;
    gap: 10px;
  }
  
  .leader-name {
    font-size: 1.5rem;
  }
  
  .leader-verified {
    font-size: 0.55rem;
    padding: 4px 10px 4px 6px;
  }
  
  .leader-verified::before {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    background-size: 10px 10px;
  }
  
  .leader-content {
    padding: 32px 32px;
  }
  
  .leader-role {
    font-size: 1rem;
  }
  
  .leader-bio {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .leader-badges {
    gap: 8px;
  }
  
  .badge {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  .leader-points {
    padding: 24px;
    gap: 14px;
  }
  
  .leader-points li {
    font-size: 0.9rem;
  }
  
  .leader-cta {
    padding: 16px;
    font-size: 1rem;
  }
}

/* Mobile (<768px): 1 column full width with mobile adjustments */
@media (max-width: 767px) {
  .leaders-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
    max-width: 100%;
  }
  
  .leader-card {
    max-width: 100%;
  }
  
  .leader-photo-wrapper {
    aspect-ratio: 0.85; 
  }
  
  .leader-content {
    padding: 28px 24px;
  }
  
  /* ALWAYS INLINE */
  .leader-header {
    flex-wrap: nowrap;
    gap: 8px;
  }
  
  .leader-name {
    font-size: 1.25rem;
  }
  
  .leader-verified {
    font-size: 0.48rem;
    padding: 3px 8px 3px 5px;
  }
  
  .leader-verified::before {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    background-size: 8px 8px;
  }
  
  .leader-role {
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding-bottom: 14px;
  }
  
  .leader-bio {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
  
  .leader-badges {
    gap: 6px;
    margin-bottom: 24px;
  }
  
  .badge {
    padding: 5px 10px;
    font-size: 0.7rem;
  }
  
  .leader-points {
    padding: 20px;
    margin-bottom: 28px;
    gap: 12px;
  }
  
  .leader-points li {
    font-size: 0.85rem;
    gap: 10px;
  }
  
  .leader-points li::before {
    width: 18px;
    height: 18px;
  }
  
  .leader-cta {
    padding: 14px;
    font-size: 0.95rem;
    border-radius: 12px;
  }
}

/* Extra small mobile (<480px) */
@media (max-width: 479px) {
  .leaders-grid {
    gap: 36px;
    padding: 0 16px;
  }
  
  .leader-content {
    padding: 24px 20px;
  }
  
  /* ALWAYS INLINE - small screens */
  .leader-header {
    flex-wrap: nowrap;
    gap: 6px;
  }
  
  .leader-name {
    font-size: 1.1rem;
  }
  
  .leader-verified {
    font-size: 0.46rem;
    padding: 3px 7px 3px 5px;
    letter-spacing: 0.04em;
  }
  
  .leader-verified::before {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    background-size: 8px 8px;
  }
  
  .leader-role {
    font-size: 0.875rem;
  }
  
  .leader-bio {
    font-size: 0.85rem;
  }
  
  .badge {
    padding: 4px 8px;
    font-size: 0.65rem;
  }
  
  .leader-points {
    padding: 16px;
    gap: 10px;
  }
  
  .leader-points li {
    font-size: 0.8rem;
    gap: 8px;
  }
  
  .leader-points li::before {
    width: 16px;
    height: 16px;
  }
  
  .leader-cta {
    padding: 12px;
    font-size: 0.9rem;
  }
}

/* Ultra compact mobile (<375px) - iPhone SE and similar */
@media (max-width: 374px) {
  .leader-header {
    flex-wrap: nowrap;
    gap: 5px;
  }
  
  .leader-name {
    font-size: 1rem;
  }
  
  .leader-verified {
    font-size: 0.42rem;
    padding: 3px 6px 3px 4px;
    letter-spacing: 0.03em;
  }
  
  .leader-verified::before {
    width: 12px;
    height: 12px;
    margin-right: 3px;
    background-size: 7px 7px;
  }
}

/* CRITICAL: Force left alignment for leader cards on all screen sizes */
/* Override any global centering from responsive-fixes.css */
.leadership-section .leader-card,
.leadership-section .leader-content,
.leadership-section .leader-header,
.leadership-section .leader-name,
.leadership-section .leader-role,
.leadership-section .leader-bio,
.leadership-section .leader-badges,
.leadership-section .leader-points,
.leadership-section .leader-points li {
  text-align: left !important;
}

.leadership-section .leader-header {
  justify-content: flex-start !important;
}

@media (max-width: 768px) {
  .leadership-section .leader-card,
  .leadership-section .leader-content,
  .leadership-section .leader-header,
  .leadership-section .leader-name,
  .leadership-section .leader-role,
  .leadership-section .leader-bio,
  .leadership-section .leader-badges,
  .leadership-section .leader-points,
  .leadership-section .leader-points li {
    text-align: left !important;
  }
  
  .leadership-section .leader-header {
    justify-content: flex-start !important;
  }
}

/* ==========================================================================
   PREMIUM ASSURANCE STRIP - $50k Cyber Design
   ========================================================================== */

.assurance-strip {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: #1e293b;
}

/* Animated Grid Background - Removed/Hidden for clean look */
.assurance-strip::before {
  display: none;
}

.assurance-strip .container {
  position: relative;
  z-index: 2;
}

/* Title & Typography */
.assurance-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  text-align: center;
  color: #0f172a;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.assurance-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #64748b;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
}


/* Services Bar */
.assurance-services {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 100px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #334155;
  font-weight: 600;
  font-size: 1rem;
}

.service-icon {
  color: #2563eb;
  /* Removed drop shadow for cleaner look on white */
}

.service-sep {
  color: #cbd5e1;
  font-size: 1.2rem;
}

/* Meta Info Bar */
.assurance-meta-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  color: #64748b;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif; /* Switching to Inter for cleaner look */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-item strong {
  color: #2563eb;
  font-weight: 700;
}

.meta-divider {
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
  .assurance-title {
    font-size: 2rem;
  }

  .assurance-services {
    flex-direction: column;
    gap: 16px;
    border-radius: 24px;
    align-items: flex-start;
    padding: 24px;
  }
  
  .service-sep {
    display: none;
  }
  
  .assurance-meta-bar {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .meta-divider {
    display: none;
  }
}

/* ==========================================================================
   GLOBAL REACH SECTION - Clean Professional Map Display
   ========================================================================== */

.global-reach-section {
  background: #ffffff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.global-reach-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  text-align: center;
  color: #0f172a;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.global-reach-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  color: #64748b;
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 400;
}

/* Map Display - Full Width, No Box */
.global-map-display {
  position: relative;
  width: 100%;
  margin: 0 auto 48px;
}

.global-map-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.4s ease;
}

.global-map-display:hover .global-map-image {
  opacity: 1;
}

/* Services Bar - Full Width */
.global-services-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 0;
  background: transparent;
  border: none;
}

.global-service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-weight: 600;
  font-size: 1rem;
}

.global-service-check {
  flex-shrink: 0;
}

.global-service-sep {
  color: #cbd5e1;
  font-size: 0.5rem;
}

/* Meta Bar - Full Width */
.global-meta-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.global-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.global-meta-item svg {
  flex-shrink: 0;
}

.global-meta-item strong {
  color: #2563eb;
  font-weight: 700;
}

.global-meta-divider {
  color: #cbd5e1;
  font-size: 0.75rem;
}

.global-meta-divider-pipe {
  color: #94a3b8;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .global-reach-section {
    padding: 80px 0 64px;
  }
  
  .global-services-bar {
    gap: 32px;
  }
  
  .global-meta-bar {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .global-reach-section {
    padding: 64px 0 48px;
  }
  
  .global-reach-title {
    font-size: 1.75rem;
  }
  
  .global-reach-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  
  .global-map-display {
    margin-bottom: 40px;
  }
  
  .global-map-image {
    max-height: 320px;
  }
  
  .global-services-bar {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .global-service-item {
    font-size: 0.9375rem;
  }
  
  .global-service-sep {
    display: none;
  }
  
  .global-meta-bar {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
  }
  
  .global-meta-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .global-reach-title {
    font-size: 1.5rem;
  }
  
  .global-service-item {
    font-size: 0.875rem;
  }
  
  .global-meta-item {
    font-size: 0.8125rem;
  }
}

/* ==========================================================================
   MESSAGE PROCESS SECTION - Contact Page
   ========================================================================== */

.message-process-card {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border-radius: 32px;
  padding: 56px 64px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: 
    0 4px 6px rgba(15, 27, 45, 0.02),
    0 12px 24px rgba(15, 27, 45, 0.04),
    0 24px 48px rgba(37, 99, 235, 0.06);
  position: relative;
  overflow: hidden;
}

.message-process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa, #3b82f6, #2563eb);
  background-size: 200% 100%;
  animation: messageShimmer 3s ease-in-out infinite;
}

@keyframes messageShimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}

.message-process-content {
  position: relative;
  z-index: 1;
}

.message-process-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.message-process-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.message-process-icon svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.message-process-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #0f1b2d;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.message-process-text {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #5a6475;
  margin: 0 0 32px 0;
}

.message-process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.message-process-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.6;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.message-process-list li:hover {
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.15);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.message-process-list li > span:last-child {
  flex: 1;
  text-align: left;
}

.message-process-bullet {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.message-process-list li:hover .message-process-bullet {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff;
  transform: scale(1.05);
}

.message-process-bullet svg {
  width: 20px;
  height: 20px;
}

.message-process-bullet--alert {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
  color: #d97706;
}

.message-process-list li:hover .message-process-bullet--alert {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
}

.message-process-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.message-process-orb {
  width: 240px;
  height: 240px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.message-process-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}

.message-process-orb-ring--1 {
  width: 100%;
  height: 100%;
  border-color: rgba(37, 99, 235, 0.1);
  animation: messagePulseRing 4s ease-in-out infinite;
}

.message-process-orb-ring--2 {
  width: 75%;
  height: 75%;
  border-color: rgba(37, 99, 235, 0.15);
  animation: messagePulseRing 4s ease-in-out infinite 0.5s;
}

.message-process-orb-ring--3 {
  width: 50%;
  height: 50%;
  border-color: rgba(37, 99, 235, 0.2);
  animation: messagePulseRing 4s ease-in-out infinite 1s;
}

@keyframes messagePulseRing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
}

.message-process-orb-core {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 0 8px rgba(37, 99, 235, 0.1),
    0 0 0 16px rgba(37, 99, 235, 0.05),
    0 20px 40px rgba(37, 99, 235, 0.3);
  position: relative;
  z-index: 1;
}

.message-process-orb-core svg {
  width: 44px;
  height: 44px;
  color: #ffffff;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PREMIUM ORB - Ultra Premium $50K Design
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.premium-orb {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer ambient glow */
.premium-orb__glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.2) 0%,
    rgba(37, 99, 235, 0.08) 40%,
    transparent 70%
  );
  border-radius: 50%;
  animation: premiumOrbGlow 4s ease-in-out infinite;
}

@keyframes premiumOrbGlow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* Animated rings */
.premium-orb__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
}

.premium-orb__ring--1 {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(37, 99, 235, 0.12);
  animation: premiumRingRotate1 25s linear infinite;
}

.premium-orb__ring--2 {
  width: 82%;
  height: 82%;
  border: 1.5px solid rgba(37, 99, 235, 0.18);
  animation: premiumRingRotate2 20s linear infinite reverse;
}

.premium-orb__ring--3 {
  width: 64%;
  height: 64%;
  border: 1px solid rgba(37, 99, 235, 0.25);
  background: radial-gradient(circle, transparent 60%, rgba(37, 99, 235, 0.03) 100%);
  animation: premiumRingPulse 6s ease-in-out infinite;
}

.premium-orb__ring--4 {
  width: 48%;
  height: 48%;
  border: 1px dashed rgba(37, 99, 235, 0.2);
  animation: premiumRingRotate1 15s linear infinite;
}

@keyframes premiumRingRotate1 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes premiumRingRotate2 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes premiumRingPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.02); opacity: 0.8; }
}

/* Orbiting dots on rings */
.premium-orb__ring-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 50%;
  box-shadow: 
    0 0 10px rgba(59, 130, 246, 0.6),
    0 0 20px rgba(59, 130, 246, 0.3);
}

.premium-orb__ring-dot--1 {
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  animation: dotPulse 2s ease-in-out infinite;
}

.premium-orb__ring-dot--2 {
  bottom: 20%;
  right: -4px;
  animation: dotPulse 2s ease-in-out infinite 0.5s;
}

.premium-orb__ring-dot--3 {
  top: 50%;
  left: -4px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  animation: dotPulse 2s ease-in-out infinite 1s;
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* Floating particles */
.premium-orb__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #3b82f6;
  border-radius: 50%;
  opacity: 0.5;
}

.premium-orb__particle--1 {
  top: 15%;
  right: 20%;
  animation: particleFloat1 8s ease-in-out infinite;
}

.premium-orb__particle--2 {
  bottom: 20%;
  left: 15%;
  animation: particleFloat2 10s ease-in-out infinite 1s;
}

.premium-orb__particle--3 {
  top: 40%;
  left: 10%;
  width: 3px;
  height: 3px;
  animation: particleFloat3 7s ease-in-out infinite 2s;
}

.premium-orb__particle--4 {
  bottom: 30%;
  right: 12%;
  width: 5px;
  height: 5px;
  animation: particleFloat1 9s ease-in-out infinite 0.5s;
}

@keyframes particleFloat1 {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  25% { transform: translate(5px, -8px); opacity: 0.7; }
  50% { transform: translate(-3px, -12px); opacity: 0.5; }
  75% { transform: translate(8px, -5px); opacity: 0.8; }
}

@keyframes particleFloat2 {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  33% { transform: translate(-8px, 5px); opacity: 0.7; }
  66% { transform: translate(5px, 10px); opacity: 0.5; }
}

@keyframes particleFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(10px, -10px) scale(1.5); opacity: 0.8; }
}

/* Core wrapper for layered effects */
.premium-orb__core-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Core glow behind the main orb */
.premium-orb__core-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.4) 0%,
    rgba(37, 99, 235, 0.1) 50%,
    transparent 70%
  );
  border-radius: 50%;
  animation: coreGlowPulse 3s ease-in-out infinite;
}

@keyframes coreGlowPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* Main core sphere */
.premium-orb__core {
  position: relative;
  width: 100px;
  height: 100px;
  background: linear-gradient(145deg, #2563eb 0%, #1e3a8a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 10px 40px rgba(37, 99, 235, 0.4),
    0 0 60px rgba(37, 99, 235, 0.2),
    inset 0 -5px 20px rgba(0, 0, 0, 0.2),
    inset 0 5px 20px rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.premium-orb__core::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 15%;
  width: 35%;
  height: 20%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 50%;
  filter: blur(2px);
}

.premium-orb__core::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.5) 0%, transparent 50%);
  z-index: -1;
  animation: coreRingRotate 8s linear infinite;
}

@keyframes coreRingRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Inner core with icon */
.premium-orb__core-inner {
  width: 72px;
  height: 72px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.premium-orb__icon {
  width: 44px;
  height: 44px;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Pulsing ring around core */
.premium-orb__core-pulse {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(59, 130, 246, 0.4);
  border-radius: 50%;
  animation: corePulseRing 3s ease-out infinite;
}

@keyframes corePulseRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Connection lines SVG */
.premium-orb__connections {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Premium Consultant Credential Badge */
.consultant-credential {
  position: relative;
  margin-top: 40px;
  display: inline-flex;
  border-radius: 20px;
  overflow: hidden;
}

.consultant-credential__glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 25%, #1e40af 50%, #3b82f6 75%, #2563eb 100%);
  background-size: 300% 300%;
  border-radius: 22px;
  animation: credentialGlowShift 8s ease-in-out infinite;
  opacity: 0.9;
}

.consultant-credential:hover .consultant-credential__glow {
  animation: credentialGlowShift 3s ease-in-out infinite;
  opacity: 1;
}

@keyframes credentialGlowShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.consultant-credential__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 32px 20px 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  border-radius: 18px;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.consultant-credential:hover .consultant-credential__inner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
  transform: translateY(-2px);
}

.consultant-credential__shield {
  position: relative;
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, #2563eb 0%, #1e3a8a 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 4px 16px rgba(37, 99, 235, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.consultant-credential:hover .consultant-credential__shield {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 
    0 8px 24px rgba(37, 99, 235, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.consultant-credential__shield svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.consultant-credential__shield-pulse {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.5) 0%, rgba(30, 58, 138, 0.5) 100%);
  animation: shieldPulse 3s ease-in-out infinite;
  opacity: 0;
}

@keyframes shieldPulse {
  0%, 100% { transform: scale(1); opacity: 0; }
  50% { transform: scale(1.15); opacity: 0.6; }
}

.consultant-credential__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.consultant-credential__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f1b2d;
  letter-spacing: -0.01em;
  line-height: 1.2;
  background: linear-gradient(135deg, #0f1b2d 0%, #1e3a5f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.consultant-credential__subtitle {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.3;
}

.consultant-credential__status {
  position: relative;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  flex-shrink: 0;
}

.consultant-credential__status-dot {
  position: absolute;
  inset: 2px;
  background: linear-gradient(145deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  box-shadow: 
    0 0 8px rgba(34, 197, 94, 0.6),
    0 0 16px rgba(34, 197, 94, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.consultant-credential__status-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(34, 197, 94, 0.4);
  border-radius: 50%;
  animation: statusRingPulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes statusRingPulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(2); opacity: 0; }
  100% { transform: scale(2); opacity: 0; }
}

.consultant-credential__shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  z-index: 2;
  animation: credentialShimmer 4s ease-in-out infinite;
  pointer-events: none;
  border-radius: 20px;
}

@keyframes credentialShimmer {
  0% { left: -100%; opacity: 0; }
  10% { opacity: 1; }
  40% { left: 100%; opacity: 1; }
  50%, 100% { left: 100%; opacity: 0; }
}

/* Legacy badge styles preserved for backwards compatibility */
.message-process-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f1b2d;
  box-shadow: 0 8px 32px rgba(15, 27, 45, 0.12);
  margin-top: 32px;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.message-process-badge-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  animation: messagePulseDot 2s ease-in-out infinite;
}

@keyframes messagePulseDot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

/* Message Process Section - Responsive */
@media (max-width: 1024px) {
  .message-process-card {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 40px;
  }
  
  .message-process-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .message-process-header {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }
  
  .message-process-title {
    text-align: center;
  }
  
  .message-process-text {
    text-align: center;
  }
  
  .message-process-list {
    width: 100%;
  }
  
  .message-process-visual {
    display: none;
  }
  
  .message-process-orb {
    width: 200px;
    height: 200px;
  }
  
  .message-process-orb-core {
    width: 80px;
    height: 80px;
  }
  
  .message-process-orb-core svg {
    width: 36px;
    height: 36px;
  }

  /* Premium Orb - Tablet */
  .premium-orb {
    width: 240px;
    height: 240px;
  }

  .premium-orb__core-wrapper {
    width: 100px;
    height: 100px;
  }

  .premium-orb__core {
    width: 84px;
    height: 84px;
  }

  .premium-orb__core-inner {
    width: 60px;
    height: 60px;
  }

  .premium-orb__icon {
    width: 36px;
    height: 36px;
  }

  .premium-orb__core-pulse {
    width: 84px;
    height: 84px;
  }

  .premium-orb__glow {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .message-process-card {
    padding: 36px 24px;
    border-radius: 24px;
    gap: 36px;
  }
  
  .message-process-header {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }
  
  .message-process-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
  
  .message-process-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .message-process-title {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .message-process-text {
    font-size: 1rem;
    margin-bottom: 24px;
    text-align: center;
  }
  
  .message-process-list li {
    padding: 14px 16px;
    font-size: 0.95rem;
    gap: 12px;
    text-align: left;
  }
  
  .message-process-bullet {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
  }
  
  .message-process-bullet svg {
    width: 18px;
    height: 18px;
  }
  
  .message-process-orb {
    width: 160px;
    height: 160px;
  }
  
  .message-process-orb-core {
    width: 64px;
    height: 64px;
  }
  
  .message-process-orb-core svg {
    width: 28px;
    height: 28px;
  }

  /* Premium Orb - Mobile */
  .premium-orb {
    width: 200px;
    height: 200px;
  }

  .premium-orb__core-wrapper {
    width: 90px;
    height: 90px;
  }

  .premium-orb__core {
    width: 76px;
    height: 76px;
  }

  .premium-orb__core-inner {
    width: 54px;
    height: 54px;
  }

  .premium-orb__icon {
    width: 32px;
    height: 32px;
  }

  .premium-orb__core-pulse {
    width: 76px;
    height: 76px;
  }

  .premium-orb__glow {
    width: 140px;
    height: 140px;
  }

  .premium-orb__ring-dot {
    width: 6px;
    height: 6px;
  }

  .premium-orb__ring-dot--3 {
    width: 5px;
    height: 5px;
  }
  
  .message-process-badge {
    padding: 10px 20px;
    font-size: 0.875rem;
    margin-top: 24px;
  }

  /* Premium Credential Badge - Tablet */
  .consultant-credential {
    margin-top: 32px;
  }

  .consultant-credential__inner {
    padding: 18px 28px 18px 20px;
    gap: 16px;
  }

  .consultant-credential__shield {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .consultant-credential__shield svg {
    width: 24px;
    height: 24px;
  }

  .consultant-credential__title {
    font-size: 1rem;
  }

  .consultant-credential__subtitle {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .message-process-card {
    padding: 28px 20px;
  }
  
  .message-process-list {
    gap: 12px;
  }
  
  .message-process-list li {
    padding: 12px 14px;
    border-radius: 12px;
    text-align: left;
  }
  
  .message-process-list li:hover {
    transform: none;
  }

  /* Premium Credential Badge - Mobile */
  .consultant-credential {
    margin-top: 28px;
    border-radius: 16px;
  }

  .consultant-credential__glow {
    border-radius: 18px;
  }

  .consultant-credential__inner {
    padding: 16px 20px 16px 16px;
    gap: 14px;
    border-radius: 14px;
  }

  .consultant-credential__shield {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .consultant-credential__shield svg {
    width: 22px;
    height: 22px;
  }

  .consultant-credential__content {
    gap: 3px;
  }

  .consultant-credential__title {
    font-size: 0.9375rem;
  }

  .consultant-credential__subtitle {
    font-size: 0.6875rem;
    letter-spacing: 0.03em;
  }

  .consultant-credential__status {
    width: 12px;
    height: 12px;
    margin-left: 6px;
  }

  .consultant-credential:hover .consultant-credential__inner {
    transform: none;
  }

  .consultant-credential:hover .consultant-credential__shield {
    transform: none;
  }

  /* Premium Orb - Small Mobile */
  .premium-orb {
    width: 180px;
    height: 180px;
  }

  .premium-orb__core-wrapper {
    width: 80px;
    height: 80px;
  }

  .premium-orb__core {
    width: 68px;
    height: 68px;
  }

  .premium-orb__core-inner {
    width: 48px;
    height: 48px;
  }

  .premium-orb__icon {
    width: 28px;
    height: 28px;
  }

  .premium-orb__core-pulse {
    width: 68px;
    height: 68px;
  }

  .premium-orb__glow {
    width: 120px;
    height: 120px;
  }

  .premium-orb__particle {
    display: none;
  }

  .premium-orb__ring-dot--2 {
    display: none;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONSULTATION HERO SECTION - Premium $50K Design
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.hero--consultation {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.hero--consultation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 100% 80% at 10% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 90% 80%, rgba(30, 58, 138, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero--consultation .hero__grid {
  align-items: center;
}

.hero--consultation .hero__content {
  position: relative;
  z-index: 1;
}

.hero--consultation .hero__title {
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero--consultation .hero__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #475569;
  max-width: 540px;
  margin-bottom: 0;
}

/* Hero Badge - Matches Website Eyebrow Style */
.hero__badge {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(37, 100, 251, 0.08);
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 24px;
}

/* Hero Checklist - Compact Premium Cards */
.hero__checklist {
  list-style: none;
  padding: 0;
  margin: 28px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 
    0 1px 3px rgba(15, 27, 45, 0.03),
    0 2px 8px rgba(15, 27, 45, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.hero__checklist li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #2563eb 0%, #1e40af 100%);
  border-radius: 12px 0 0 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero__checklist li:hover {
  transform: translateX(4px);
  border-color: rgba(37, 99, 235, 0.1);
  box-shadow: 
    0 4px 16px rgba(37, 99, 235, 0.08),
    0 2px 8px rgba(15, 27, 45, 0.04);
}

.hero__checklist li:hover::before {
  opacity: 1;
}

.hero__check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: linear-gradient(145deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
  margin-top: 1px;
}

.hero__check-icon svg {
  width: 12px;
  height: 12px;
  color: #ffffff;
  stroke-width: 3;
}

.hero__checklist li > span:last-child {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #334155;
  font-weight: 450;
}

/* Banner Dark Topics - Balanced Premium Blue Card */
.banner-dark--topics {
  padding: 36px 32px;
  position: relative;
  border-radius: 20px;
  background: linear-gradient(155deg, #1e3a8a 0%, #1d4ed8 45%, #2563eb 100%);
  box-shadow: 
    0 16px 40px rgba(30, 58, 138, 0.3),
    0 8px 20px rgba(30, 58, 138, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.banner-dark--topics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: 
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(96, 165, 250, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(147, 197, 253, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.banner-dark--topics::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 21px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, transparent 40%, transparent 60%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
  z-index: 0;
}

.banner-dark__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
}

.banner-dark__header .section__title {
  margin: 0 !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.banner-dark__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.banner-dark__icon svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.banner-dark__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.banner-dark__list li {
  display: block;
  text-align: center;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
}

.banner-dark__list li:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Hide the separate bullet element - using pseudo-element instead */
.banner-dark__bullet {
  display: none;
}

/* Text span with inline bullet */
.banner-dark__list li > span:last-child {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 450;
  display: inline;
}

/* Bullet as pseudo-element - always inline with text */
.banner-dark__list li > span:last-child::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  box-shadow: 
    0 0 0 2px rgba(96, 165, 250, 0.2),
    0 0 10px rgba(96, 165, 250, 0.35);
}

/* Responsive Adjustments */
/* First breakpoint - hero grid goes single column at 1024px (from responsive-fixes.css) */
@media (max-width: 1024px) {
  .hero--consultation .hero__grid {
    gap: 44px;
  }
  
  .banner-dark--topics {
    padding: 32px 28px;
  }
  
  .hero--consultation .hero__title {
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    text-align: center !important;
    width: 100% !important;
  }
  
  /* Center all hero content when grid goes single column */
  .hero--consultation .hero__content {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }
  
  .hero--consultation .hero__text,
  .hero--consultation p.hero__text,
  .hero.hero--consultation .hero__text {
    text-align: center !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .hero--consultation .hero__badge {
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Center blue card list items - bullet inline with text */
  .banner-dark__list li {
    text-align: center;
    justify-content: center;
  }
  
  /* Hide the separate bullet element */
  .banner-dark__bullet {
    display: none;
  }
  
  /* Add bullet as pseudo-element inside text span */
  .banner-dark__list li > span:last-child {
    display: inline;
    text-align: center;
  }
  
  .banner-dark__list li > span:last-child::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    box-shadow: 
      0 0 0 2px rgba(96, 165, 250, 0.2),
      0 0 10px rgba(96, 165, 250, 0.35);
  }
  
  .banner-dark__list li:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 768px) {
  /* Center content on mobile for consultation hero */
  .hero--consultation .hero__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero--consultation .hero__text {
    text-align: center;
    max-width: 100%;
  }
  
  .hero__checklist {
    gap: 8px;
    margin-top: 24px;
    width: 100%;
  }
  
  .hero__checklist li {
    padding: 14px 16px;
    gap: 12px;
    border-radius: 10px;
    text-align: left;
  }
  
  .hero__check-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 5px;
  }
  
  .hero__check-icon svg {
    width: 11px;
    height: 11px;
  }
  
  .hero__checklist li > span:last-child {
    font-size: 0.875rem;
  }
  
  .banner-dark--topics {
    padding: 28px 24px;
    border-radius: 16px;
  }
  
  /* Center header on mobile */
  .banner-dark__header {
    margin-bottom: 18px;
    padding-bottom: 14px;
    gap: 12px;
    justify-content: center;
    text-align: center;
  }
  
  .banner-dark__header .section__title {
    font-size: 1.2rem !important;
  }
  
  .banner-dark__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  
  .banner-dark__icon svg {
    width: 20px;
    height: 20px;
  }
  
  .banner-dark__list {
    gap: 6px;
  }
  
  /* Center list items - bullet inline with text */
  .banner-dark__list li {
    padding: 10px 12px;
    font-size: 0.8125rem !important;
    border-radius: 8px;
    text-align: center;
    justify-content: center;
  }
  
  .banner-dark__bullet {
    display: none;
  }
  
  .banner-dark__list li > span:last-child {
    display: inline;
    text-align: center;
  }
  
  .banner-dark__list li > span:last-child::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    box-shadow: 
      0 0 0 2px rgba(96, 165, 250, 0.2),
      0 0 8px rgba(96, 165, 250, 0.3);
  }
  
  .banner-dark__list li:hover {
    transform: translateY(-2px);
  }
  
  .hero__badge {
    padding: 7px 14px;
    font-size: 0.7rem;
    margin-bottom: 20px;
  }
  
  .hero--consultation .hero__text {
    font-size: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* Center content on mobile for consultation hero */
  .hero--consultation .hero__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero--consultation .hero__text {
    text-align: center;
  }
  
  .hero__checklist {
    gap: 8px;
    margin-top: 22px;
    width: 100%;
  }
  
  .hero__checklist li {
    padding: 12px 14px;
    border-radius: 10px;
    gap: 10px;
    text-align: left;
  }
  
  .hero__checklist li > span:last-child {
    font-size: 0.8125rem;
  }
  
  .hero__check-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 5px;
  }
  
  .hero__check-icon svg {
    width: 10px;
    height: 10px;
  }
  
  .banner-dark--topics {
    padding: 24px 20px;
    border-radius: 14px;
  }
  
  /* Center header on mobile */
  .banner-dark__header {
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .banner-dark__header .section__title {
    font-size: 1.1rem !important;
  }
  
  .banner-dark__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  
  .banner-dark__icon svg {
    width: 18px;
    height: 18px;
  }
  
  .banner-dark__list {
    gap: 6px;
  }
  
  /* Center list items - bullet inline with text, small mobile */
  .banner-dark__list li {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.75rem !important;
    text-align: center;
    justify-content: center;
  }
  
  .banner-dark__bullet {
    display: none;
  }
  
  .banner-dark__list li > span:last-child {
    display: inline;
    text-align: center;
  }
  
  .banner-dark__list li > span:last-child::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    box-shadow: 
      0 0 0 2px rgba(96, 165, 250, 0.2),
      0 0 6px rgba(96, 165, 250, 0.3);
  }
  
  .banner-dark__list li:hover {
    transform: translateY(-2px);
  }
  
  .hero__badge {
    padding: 6px 12px;
    font-size: 0.65rem;
    margin-bottom: 18px;
  }
  
  .hero--consultation .hero__title {
    font-size: 1.625rem;
    text-align: center;
  }
  
  .hero--consultation .hero__text {
    font-size: 0.9375rem;
    line-height: 1.65;
    text-align: center;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROCESS SECTION - Premium Card-Based Design
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.section--process {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.contact-split--process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 60px;
}

.contact-split--process > * {
  min-width: 0;
}

.contact-split--process .form {
  width: 100%;
  max-width: none;
}

.process-column {
  padding-top: 0;
  width: 100%;
}

.section__title--process {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  color: var(--color-deep);
  margin-bottom: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

/* Process Steps Container */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Process Card */
.process-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 
    0 1px 3px rgba(15, 27, 45, 0.03),
    0 4px 12px rgba(15, 27, 45, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 14px 0 0 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.1);
  box-shadow: 
    0 6px 20px rgba(37, 99, 235, 0.08),
    0 3px 10px rgba(15, 27, 45, 0.04);
}

.process-card:hover::before {
  opacity: 1;
}

/* Card Header - Number + Icon side by side */
.process-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.process-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  padding: 0 10px;
  background: linear-gradient(145deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
}

.process-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 28px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 6px;
  color: #2563eb;
  transition: all 0.3s ease;
}

.process-card__icon svg {
  width: 16px;
  height: 16px;
}

.process-card:hover .process-card__icon {
  background: rgba(37, 99, 235, 0.12);
}

/* Card Title */
.process-card__title {
  font-size: 1.0625rem;
  font-weight: 650;
  color: var(--color-deep);
  margin: 0 0 8px 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.process-card:hover .process-card__title {
  color: #1e40af;
}

/* Card Description */
.process-card__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .contact-split--process {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .section__title--process {
    margin-bottom: 24px;
    font-size: 1.625rem;
  }
  
  .process-steps {
    gap: 14px;
  }
  
  .process-card {
    padding: 20px 22px;
    border-radius: 12px;
  }
  
  .process-card__header {
    margin-bottom: 12px;
    gap: 10px;
  }
  
  .process-card__number {
    min-width: 34px;
    height: 26px;
    font-size: 0.7rem;
  }
  
  .process-card__icon {
    width: 30px;
    height: 26px;
  }
  
  .process-card__icon svg {
    width: 15px;
    height: 15px;
  }
  
  .process-card__title {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .process-card__desc {
    font-size: 0.875rem;
  }
}

/* Responsive - Small Tablet / Large Mobile - Switch to Single Column */
@media (max-width: 900px) {
  .contact-split--process {
    display: block;
  }
  
  .contact-split--process .process-column {
    width: 100%;
    max-width: 100%;
    margin-bottom: 36px;
  }
  
  .contact-split--process .form {
    width: 100%;
    max-width: 100%;
  }
  
  /* Center card content on mobile */
  .process-card {
    text-align: center;
  }
  
  .process-card__header {
    justify-content: center;
  }
  
  .process-card__title,
  .process-card__desc {
    text-align: center;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .contact-split--process {
    display: block;
  }
  
  .contact-split--process .process-column {
    width: 100%;
    max-width: 100%;
    margin-bottom: 32px;
  }
  
  .contact-split--process .form {
    width: 100%;
    max-width: 100%;
  }
  
  .section__title--process {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
  
  /* Center card content on mobile */
  .process-card {
    text-align: center;
  }
  
  .process-card__header {
    justify-content: center;
  }
  
  .process-card__title,
  .process-card__desc {
    text-align: center;
  }
  
  .process-steps {
    gap: 12px;
  }
  
  .process-card {
    padding: 18px 20px;
    border-radius: 12px;
  }
  
  .process-card__header {
    margin-bottom: 10px;
    gap: 10px;
  }
  
  .process-card__number {
    min-width: 32px;
    height: 24px;
    font-size: 0.65rem;
    padding: 0 8px;
    border-radius: 5px;
  }
  
  .process-card__icon {
    width: 28px;
    height: 24px;
    border-radius: 5px;
  }
  
  .process-card__icon svg {
    width: 14px;
    height: 14px;
  }
  
  .process-card__title {
    font-size: 0.9375rem;
    margin-bottom: 5px;
  }
  
  .process-card__desc {
    font-size: 0.8125rem;
    line-height: 1.55;
  }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
  .contact-split--process {
    display: block;
  }
  
  .contact-split--process .process-column {
    width: 100%;
    margin-bottom: 28px;
  }
  
  .contact-split--process .form {
    width: 100%;
  }
  
  .section__title--process {
    font-size: 1.375rem;
    margin-bottom: 18px;
    text-align: center;
  }
  
  /* Center card content on small mobile */
  .process-card {
    text-align: center;
  }
  
  .process-card__header {
    justify-content: center;
  }
  
  .process-card__title,
  .process-card__desc {
    text-align: center;
  }
  
  .process-steps {
    gap: 10px;
  }
  
  .process-card {
    padding: 16px 18px;
    border-radius: 10px;
  }
  
  .process-card__header {
    margin-bottom: 8px;
    gap: 8px;
  }
  
  .process-card__number {
    min-width: 30px;
    height: 22px;
    font-size: 0.6rem;
    padding: 0 7px;
  }
  
  .process-card__icon {
    width: 26px;
    height: 22px;
  }
  
  .process-card__icon svg {
    width: 13px;
    height: 13px;
  }
  
  .process-card__title {
    font-size: 0.875rem;
    margin-bottom: 4px;
  }
  
  .process-card__desc {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

/* ==========================================================================
   PREMIUM "WHEN TO CALL" CARDS - $50K DESIGN
   Incident Response Page - When To Call Section
   ========================================================================== */

.when-to-call-section {
  position: relative;
}

.incident-trigger-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1040px;
  margin: 40px auto 0;
}

.incident-trigger {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 112px;
  padding: 22px 22px 20px;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.incident-trigger::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, rgba(37, 99, 235, 0.18));
}

.incident-trigger__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.incident-trigger__content {
  min-width: 0;
  text-align: left;
}

.incident-trigger__title {
  margin: 0 0 6px;
  color: var(--color-deep);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.incident-trigger__text {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.5;
}

.when-to-call-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 32px;
  margin-top: 44px;
}

/* Premium Card - Clean Professional Design */
.premium-card {
  position: relative;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: 
    0 4px 20px rgba(15, 23, 42, 0.04),
    0 1px 3px rgba(15, 23, 42, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 24px 48px rgba(37, 99, 235, 0.12),
    0 8px 16px rgba(15, 23, 42, 0.06);
  border-color: rgba(37, 99, 235, 0.15);
}

/* Hide unused elements */
.premium-card__glow,
.premium-card__border {
  display: none;
}

/* Card Content - CSS Grid for bullet alignment */
.premium-card__content {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  height: 100%;
  padding: 40px 36px 36px;
}

/* Icon Container */
.premium-card__icon {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
  transition: all 0.4s ease;
}

.premium-card:hover .premium-card__icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}

.premium-card__icon svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

/* Step Number */
.premium-card__number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 800;
  color: #1e40af;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

/* Title */
.premium-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px 0;
  line-height: 1.35;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.premium-card:hover .premium-card__title {
  color: #1e40af;
}

/* Description */
.premium-card__desc {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
  align-self: start;
}

/* Feature List - Clean Simple Bullets */
.premium-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: end;
}

.premium-card__list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
}

/* Simple dot bullet */
.premium-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-radius: 50%;
}

/* ==========================================================================
   PREMIUM CARDS - RESPONSIVE DESIGN
   ========================================================================== */

/* Large Desktop */
@media (max-width: 1400px) {
  .when-to-call-grid {
    gap: 28px;
  }
  
  .premium-card__content {
    padding: 36px 32px 32px;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .when-to-call-grid {
    gap: 24px;
    margin-top: 48px;
  }
  
  .premium-card {
    border-radius: 20px;
  }
  
  .premium-card__content {
    padding: 32px 28px 28px;
  }
  
  .premium-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    border-radius: 14px;
  }
  
  .premium-card__icon svg {
    width: 24px;
    height: 24px;
  }
  
  .premium-card__number {
    width: 22px;
    height: 22px;
    font-size: 0.625rem;
  }
  
  .premium-card__title {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
  
  .premium-card__desc {
    font-size: 0.875rem;
  }
  
  .premium-card__list {
    gap: 8px;
    padding-top: 16px;
  }
  
  .premium-card__list li {
    font-size: 0.8125rem;
    padding-left: 18px;
  }
  
  .premium-card__list li::before {
    width: 5px;
    height: 5px;
  }
}

/* Tablet - Single Column - Full Width */
@media (max-width: 899px) {
  .incident-trigger-strip {
    grid-template-columns: 1fr;
    max-width: 640px;
    gap: 14px;
    margin-top: 32px;
  }

  .incident-trigger {
    min-height: 0;
    padding: 20px;
  }

  .when-to-call-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 20px;
  }
  
  .premium-card {
    border-radius: 20px;
    height: auto;
  }
  
  .premium-card__content {
    display: block;
    height: auto;
    padding: 32px 28px 28px;
    text-align: center;
  }
  
  .premium-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 16px;
  }
  
  .premium-card__icon svg {
    width: 28px;
    height: 28px;
  }
  
  .premium-card__number {
    width: 24px;
    height: 24px;
    font-size: 0.6875rem;
  }
  
  .premium-card__title {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
  
  .premium-card__desc {
    font-size: 0.9375rem;
    margin-bottom: 20px;
  }
  
  .premium-card__list {
    text-align: left;
    padding-top: 0;
    gap: 10px;
  }
  
  .premium-card__list li {
    font-size: 0.875rem;
    padding-left: 20px;
  }
  
  .premium-card__list li::before {
    width: 6px;
    height: 6px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .incident-trigger-strip {
    margin-top: 28px;
  }

  .incident-trigger {
    gap: 14px;
    padding: 18px 16px;
    border-radius: 16px;
  }

  .incident-trigger__index {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 0.72rem;
  }

  .incident-trigger__title {
    font-size: 0.96rem;
  }

  .incident-trigger__text {
    font-size: 0.86rem;
  }

  .when-to-call-grid {
    gap: 16px;
    margin-top: 40px;
  }
  
  .premium-card {
    border-radius: 18px;
  }
  
  .premium-card__content {
    padding: 28px 24px 24px;
  }
  
  .premium-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 14px;
  }
  
  .premium-card__icon svg {
    width: 24px;
    height: 24px;
  }
  
  .premium-card__number {
    width: 22px;
    height: 22px;
    font-size: 0.625rem;
    top: -5px;
    right: -5px;
  }
  
  .premium-card__title {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
  
  .premium-card__desc {
    font-size: 0.875rem;
    margin-bottom: 16px;
    line-height: 1.6;
  }
  
  .premium-card__list {
    gap: 8px;
  }
  
  .premium-card__list li {
    font-size: 0.8125rem;
    padding-left: 18px;
  }
  
  .premium-card__list li::before {
    width: 5px;
    height: 5px;
    top: 0.5em;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .when-to-call-grid {
    gap: 14px;
  }
  
  .premium-card {
    border-radius: 16px;
  }
  
  .premium-card__content {
    padding: 24px 20px 20px;
  }
  
  .premium-card__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 12px;
  }
  
  .premium-card__icon svg {
    width: 22px;
    height: 22px;
  }
  
  .premium-card__number {
    width: 20px;
    height: 20px;
    font-size: 0.5625rem;
    border-radius: 6px;
  }
  
  .premium-card__title {
    font-size: 1.0625rem;
    margin-bottom: 8px;
  }
  
  .premium-card__desc {
    font-size: 0.8125rem;
    margin-bottom: 14px;
  }
  
  .premium-card__list {
    gap: 6px;
  }
  
  .premium-card__list li {
    font-size: 0.8rem;
    padding-left: 16px;
    line-height: 1.5;
  }
  
  .premium-card__list li::before {
    width: 4px;
    height: 4px;
  }
}

/* Extra Small Mobile */
@media (max-width: 374px) {
  .when-to-call-grid {
    gap: 12px;
  }
  
  .premium-card__content {
    padding: 22px 18px 18px;
  }
  
  .premium-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    border-radius: 10px;
  }
  
  .premium-card__icon svg {
    width: 20px;
    height: 20px;
  }
  
  .premium-card__number {
    width: 18px;
    height: 18px;
    font-size: 0.5rem;
    top: -4px;
    right: -4px;
  }
  
  .premium-card__title {
    font-size: 1rem;
  }
  
  .premium-card__desc {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
  
  .premium-card__list li {
    font-size: 0.75rem;
    padding-left: 14px;
  }
  
  .premium-card__list li::before {
    width: 4px;
    height: 4px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .premium-card,
  .premium-card__icon {
    transition: none;
  }
  
  .premium-card:hover,
  .premium-card:hover .premium-card__icon {
    transform: none;
  }
}

/* ==========================================================================
   COLLABORATION METHOD CARDS - $50K PREMIUM REDESIGN
   Professional Cards for Incident Response Pages - Refined Edition
   ========================================================================== */

/* Section Background Enhancement */
#packages {
  position: relative;
  overflow: hidden;
}

#packages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37, 99, 235, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(30, 64, 175, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

#packages > .container {
  position: relative;
  z-index: 1;
}

/* Premium Card Container */
#packages .cards-grid--two {
  gap: 40px;
}

/* Base Card Styling - Premium */
#packages .card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, 
    #ffffff 0%,
    rgba(248, 250, 255, 0.98) 50%,
    rgba(243, 247, 255, 0.95) 100%
  );
  padding: 52px 48px 48px;
  border-radius: 24px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 
    0 4px 24px rgba(15, 23, 42, 0.06),
    0 1px 4px rgba(15, 23, 42, 0.04);
}

/* Animated Top Accent Line */
#packages .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(37, 99, 235, 0.7) 20%,
    #2563eb 50%,
    rgba(37, 99, 235, 0.7) 80%,
    transparent 100%
  );
  border-radius: 0 0 4px 4px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
}

/* Subtle Bottom Glow */
#packages .card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(
    ellipse 100% 100% at 50% 100%,
    rgba(37, 99, 235, 0.04) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  pointer-events: none;
}

/* Card Title - Premium Typography */
#packages .card h3 {
  position: relative;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-align: center;
  transition: all 0.4s ease;
  z-index: 2;
}

/* Card Description - Elevated Typography */
#packages .card > p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #475569;
  margin: 0 0 28px 0;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.4s ease;
  position: relative;
  z-index: 2;
}

/* Premium Feature List Container */
#packages .card ul {
  list-style: none;
  padding: 24px 28px;
  margin: 0;
  margin-top: auto;
  background: linear-gradient(135deg, 
    rgba(37, 99, 235, 0.03) 0%,
    rgba(59, 130, 246, 0.05) 50%,
    rgba(37, 99, 235, 0.02) 100%
  );
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 2;
}

/* List Container Subtle Shine Effect */
#packages .card ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 100%
  );
  transition: left 0.7s ease;
  pointer-events: none;
}

/* Premium List Items - Reliable Left-Aligned Layout */
#packages .card li {
  position: relative;
  padding: 12px 0 12px 36px;
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.65;
  border-bottom: 1px solid rgba(37, 99, 235, 0.06);
  transition: all 0.3s ease;
  text-align: left;
}

#packages .card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

#packages .card li:first-child {
  padding-top: 0;
}

/* Premium Checkmark Bullets - Absolutely Positioned for Perfect Alignment */
#packages .card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: linear-gradient(145deg, #2563eb 0%, #1e40af 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 3px 10px rgba(37, 99, 235, 0.3),
    0 1px 3px rgba(37, 99, 235, 0.15);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Adjust top position for items that aren't first */
#packages .card li:not(:first-child)::before {
  top: 14px;
}

/* ===== HOVER STATES - Elegant Interactions ===== */

#packages .card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: 
    0 20px 50px rgba(37, 99, 235, 0.12),
    0 10px 25px rgba(15, 23, 42, 0.08),
    0 4px 12px rgba(37, 99, 235, 0.06);
}

#packages .card:hover::before {
  width: 140px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(37, 99, 235, 0.9) 20%,
    #3b82f6 50%,
    rgba(37, 99, 235, 0.9) 80%,
    transparent 100%
  );
}

#packages .card:hover::after {
  opacity: 1;
}

#packages .card:hover h3 {
  color: #1e40af;
}

#packages .card:hover > p {
  color: #334155;
}

#packages .card:hover ul {
  background: linear-gradient(135deg, 
    rgba(37, 99, 235, 0.05) 0%,
    rgba(59, 130, 246, 0.07) 50%,
    rgba(37, 99, 235, 0.04) 100%
  );
  border-color: rgba(37, 99, 235, 0.14);
}

#packages .card:hover ul::before {
  left: 100%;
}

#packages .card:hover li {
  color: #1e293b;
}

#packages .card:hover li::before {
  box-shadow: 
    0 5px 14px rgba(37, 99, 235, 0.4),
    0 2px 5px rgba(37, 99, 235, 0.2);
}

/* Individual List Item Hover - Subtle */
#packages .card li:hover {
  color: #1e40af;
}

#packages .card li:hover::before {
  box-shadow: 
    0 6px 16px rgba(37, 99, 235, 0.45),
    0 3px 6px rgba(37, 99, 235, 0.25);
}

/* ===== RESPONSIVE STYLES ===== */

/* Large Desktop - Enhance spacing */
@media (min-width: 1400px) {
  #packages .cards-grid--two {
    gap: 48px;
  }
  
  #packages .card {
    padding: 56px 52px 52px;
  }
  
  #packages .card h3 {
    font-size: 1.875rem;
  }
  
  #packages .card > p {
    font-size: 1.125rem;
  }
  
  #packages .card li {
    padding-left: 38px;
  }
  
  #packages .card li::before {
    width: 24px;
    height: 24px;
    font-size: 12px;
    line-height: 24px;
  }
  
  #packages .card li::before {
    top: 2px;
  }
  
  #packages .card li:not(:first-child)::before {
    top: 14px;
  }
}

/* Tablet Landscape - 1200px to 900px */
@media (max-width: 1200px) and (min-width: 900px) {
  #packages .cards-grid--two {
    gap: 32px;
  }
  
  #packages .card {
    padding: 44px 36px 40px;
  }
  
  #packages .card::before {
    width: 80px;
  }
  
  #packages .card h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }
  
  #packages .card > p {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  #packages .card ul {
    padding: 20px 24px;
    border-radius: 14px;
  }
  
  #packages .card li {
    font-size: 0.9rem;
    padding: 11px 0 11px 32px;
  }
  
  #packages .card li::before {
    width: 20px;
    height: 20px;
    font-size: 10px;
    line-height: 20px;
    top: 2px;
  }
  
  #packages .card li:not(:first-child)::before {
    top: 13px;
  }
}

/* Tablet Portrait - Stack to single column */
@media (max-width: 899px) {
  #packages .cards-grid--two {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 100%;
  }
  
  #packages .card {
    padding: 44px 36px 40px;
    border-radius: 20px;
  }
  
  #packages .card::before {
    width: 80px;
    height: 3px;
  }
  
  #packages .card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  
  #packages .card > p {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  #packages .card ul {
    padding: 20px 24px;
    border-radius: 14px;
  }
  
  #packages .card li {
    font-size: 0.9rem;
    padding: 11px 0 11px 32px;
  }
  
  #packages .card li::before {
    width: 20px;
    height: 20px;
    font-size: 10px;
    line-height: 20px;
    top: 2px;
  }
  
  #packages .card li:not(:first-child)::before {
    top: 13px;
  }
  
  #packages .card:hover {
    transform: translateY(-6px);
  }
}

/* Mobile - Large phones */
@media (max-width: 768px) {
  #packages .cards-grid--two {
    gap: 28px;
    max-width: 100%;
  }
  
  #packages .card {
    padding: 40px 28px 36px;
    border-radius: 18px;
  }
  
  #packages .card::before {
    width: 70px;
    height: 3px;
  }
  
  #packages .card h3 {
    font-size: 1.375rem;
    margin-bottom: 14px;
  }
  
  #packages .card > p {
    font-size: 0.9375rem;
    margin-bottom: 20px;
    line-height: 1.7;
  }
  
  #packages .card ul {
    padding: 18px 20px;
    border-radius: 12px;
  }
  
  #packages .card li {
    font-size: 0.875rem;
    padding: 10px 0 10px 30px;
    line-height: 1.6;
  }
  
  #packages .card li::before {
    width: 18px;
    height: 18px;
    font-size: 9px;
    line-height: 18px;
    top: 2px;
  }
  
  #packages .card li:not(:first-child)::before {
    top: 12px;
  }
  
  #packages .card:hover {
    transform: translateY(-5px);
  }
}

/* Mobile - Standard phones */
@media (max-width: 480px) {
  #packages .cards-grid--two {
    gap: 24px;
  }
  
  #packages .card {
    padding: 36px 22px 32px;
    border-radius: 16px;
  }
  
  #packages .card::before {
    width: 60px;
    height: 3px;
  }
  
  #packages .card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
  
  #packages .card > p {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }
  
  #packages .card ul {
    padding: 16px 16px;
    border-radius: 12px;
  }
  
  #packages .card li {
    font-size: 0.85rem;
    padding: 9px 0 9px 28px;
    line-height: 1.55;
  }
  
  #packages .card li::before {
    width: 18px;
    height: 18px;
    font-size: 9px;
    line-height: 18px;
    top: 1px;
    box-shadow: 
      0 2px 8px rgba(37, 99, 235, 0.25),
      0 1px 2px rgba(37, 99, 235, 0.1);
  }
  
  #packages .card li:not(:first-child)::before {
    top: 10px;
  }
}

/* Mobile - Compact phones */
@media (max-width: 374px) {
  #packages .cards-grid--two {
    gap: 20px;
  }
  
  #packages .card {
    padding: 32px 18px 28px;
    border-radius: 14px;
  }
  
  #packages .card::before {
    width: 50px;
    height: 2px;
  }
  
  #packages .card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }
  
  #packages .card > p {
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.65;
  }
  
  #packages .card ul {
    padding: 14px 14px;
    border-radius: 10px;
  }
  
  #packages .card li {
    font-size: 0.8125rem;
    padding: 8px 0 8px 26px;
    line-height: 1.5;
  }
  
  #packages .card li::before {
    width: 16px;
    height: 16px;
    font-size: 8px;
    line-height: 16px;
    top: 1px;
    box-shadow: 
      0 2px 6px rgba(37, 99, 235, 0.2),
      0 1px 2px rgba(37, 99, 235, 0.1);
  }
  
  #packages .card li:not(:first-child)::before {
    top: 9px;
  }
}

/* Extra Compact phones - 320px */
@media (max-width: 340px) {
  #packages .card {
    padding: 28px 16px 24px;
  }
  
  #packages .card ul {
    padding: 12px 12px;
  }
  
  #packages .card li {
    font-size: 0.8rem;
    padding: 7px 0 7px 24px;
  }
  
  #packages .card li::before {
    width: 15px;
    height: 15px;
    font-size: 7px;
    line-height: 15px;
    top: 1px;
  }
  
  #packages .card li:not(:first-child)::before {
    top: 8px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  #packages .card,
  #packages .card::before,
  #packages .card::after,
  #packages .card h3,
  #packages .card > p,
  #packages .card ul,
  #packages .card ul::before,
  #packages .card li,
  #packages .card li::before {
    transition: none;
  }
  
  #packages .card:hover {
    transform: none;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  #packages .card:hover {
    transform: none;
    box-shadow: 
      0 4px 24px rgba(15, 23, 42, 0.06),
      0 1px 4px rgba(15, 23, 42, 0.04);
  }
  
  #packages .card:hover::before {
    width: 100px;
  }
  
  #packages .card:hover::after {
    opacity: 0;
  }
  
  #packages .card li:hover {
    color: #334155;
  }
  
  /* Active state for touch devices */
  #packages .card:active {
    transform: scale(0.99);
    transition: transform 0.15s ease;
  }
}

/* ==========================================================================
   EXPECTATIONS SECTION - PREMIUM "WHAT WE DO" & "WHAT WE AVOID" CARDS
   Professional Differentiated Card Design - Blue Theme
   ========================================================================== */

/* Section Container */
#expectations {
  position: relative;
  overflow: hidden;
}

#expectations::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37, 99, 235, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

#expectations > .container {
  position: relative;
  z-index: 1;
}

/* Grid Container */
#expectations .cards-grid--two {
  gap: 40px;
}

/* ===== BASE CARD STYLING FOR EXPECTATIONS ===== */
#expectations .card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 48px 44px 44px;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Card Title */
#expectations .card h3 {
  font-size: 1.625rem;
  font-weight: 700;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-align: left;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

/* Feature List Container */
#expectations .card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* List Items Base */
#expectations .card li {
  position: relative;
  padding: 12px 0 12px 38px;
  font-size: 0.9375rem;
  line-height: 1.65;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: left;
}

#expectations .card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

#expectations .card li:first-child {
  padding-top: 0;
}

/* Checkmark/X Bullet Base */
#expectations .card li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
  line-height: 22px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#expectations .card li:not(:first-child)::before {
  top: 13px;
}

/* ===== "WHAT WE DO" CARD - PRIMARY BLUE THEME ===== */
#expectations .card--do {
  background: linear-gradient(165deg, 
    #ffffff 0%,
    rgba(248, 250, 255, 0.98) 50%,
    rgba(243, 247, 255, 0.95) 100%
  );
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 
    0 4px 24px rgba(37, 99, 235, 0.08),
    0 1px 4px rgba(15, 23, 42, 0.04);
}

/* Blue Accent Line */
#expectations .card--do::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, 
    #3b82f6 0%,
    #2563eb 50%,
    #1e40af 100%
  );
  border-radius: 24px 0 0 24px;
  z-index: 3;
}

/* Subtle corner glow */
#expectations .card--do::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(37, 99, 235, 0.06) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 0;
}

#expectations .card--do h3 {
  color: #1e40af;
}

#expectations .card--do li {
  color: #374151;
  border-bottom-color: rgba(37, 99, 235, 0.08);
}

/* Blue Checkmark Bullets - Solid Fill */
#expectations .card--do li::before {
  content: '\2713';
  background: linear-gradient(145deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff;
  box-shadow: 
    0 3px 10px rgba(37, 99, 235, 0.3),
    0 1px 3px rgba(37, 99, 235, 0.15);
}

/* Hover States - Do Card */
#expectations .card--do:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 
    0 20px 50px rgba(37, 99, 235, 0.12),
    0 10px 25px rgba(15, 23, 42, 0.08),
    0 4px 12px rgba(37, 99, 235, 0.06);
}

#expectations .card--do:hover h3 {
  color: #1e3a8a;
}

#expectations .card--do:hover li {
  color: #1f2937;
}

#expectations .card--do:hover li::before {
  box-shadow: 
    0 5px 14px rgba(37, 99, 235, 0.4),
    0 2px 5px rgba(37, 99, 235, 0.2);
}

/* ===== "WHAT WE AVOID" CARD - MUTED/SLATE THEME ===== */
#expectations .card--avoid {
  background: linear-gradient(165deg, 
    #ffffff 0%,
    rgba(248, 250, 252, 0.98) 50%,
    rgba(241, 245, 249, 0.95) 100%
  );
  border: 1px solid rgba(100, 116, 139, 0.15);
  box-shadow: 
    0 4px 24px rgba(71, 85, 105, 0.08),
    0 1px 4px rgba(15, 23, 42, 0.04);
}

/* Slate Accent Line */
#expectations .card--avoid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, 
    #94a3b8 0%,
    #64748b 50%,
    #475569 100%
  );
  border-radius: 24px 0 0 24px;
  z-index: 3;
}

/* Subtle corner glow */
#expectations .card--avoid::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(100, 116, 139, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 0;
}

#expectations .card--avoid h3 {
  color: #475569;
}

#expectations .card--avoid li {
  color: #64748b;
  border-bottom-color: rgba(100, 116, 139, 0.1);
}

/* Slate X Bullets - Outlined Style */
#expectations .card--avoid li::before {
  content: '\2715';
  background: #f8fafc;
  color: #64748b;
  border: 2px solid #94a3b8;
  box-shadow: none;
  font-size: 10px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1px;
}

/* Hover States - Avoid Card */
#expectations .card--avoid:hover {
  transform: translateY(-8px);
  border-color: rgba(100, 116, 139, 0.25);
  box-shadow: 
    0 20px 50px rgba(71, 85, 105, 0.12),
    0 10px 25px rgba(15, 23, 42, 0.08),
    0 4px 12px rgba(71, 85, 105, 0.06);
}

#expectations .card--avoid:hover h3 {
  color: #334155;
}

#expectations .card--avoid:hover li {
  color: #475569;
}

#expectations .card--avoid:hover li::before {
  border-color: #64748b;
  color: #475569;
}

/* ===== RESPONSIVE STYLES FOR EXPECTATIONS ===== */

/* Large Desktop */
@media (min-width: 1400px) {
  #expectations .cards-grid--two {
    gap: 48px;
  }
  
  #expectations .card {
    padding: 52px 48px 48px;
  }
  
  #expectations .card h3 {
    font-size: 1.75rem;
  }
  
  #expectations .card li {
    padding: 14px 0 14px 42px;
  }
  
  #expectations .card li:first-child {
    padding-top: 0;
  }
  
  #expectations .card li:last-child {
    padding-bottom: 0;
  }
  
  #expectations .card li::before {
    width: 24px;
    height: 24px;
    font-size: 12px;
    line-height: 24px;
    top: 2px;
  }
  
  #expectations .card--do li::before {
    line-height: 24px;
  }
  
  #expectations .card--avoid li::before {
    line-height: 1;
    font-size: 11px;
  }
  
  #expectations .card li:not(:first-child)::before {
    top: 16px;
  }
}

/* Tablet Landscape */
@media (max-width: 1200px) and (min-width: 900px) {
  #expectations .cards-grid--two {
    gap: 32px;
  }
  
  #expectations .card {
    padding: 40px 36px 36px;
  }
  
  #expectations .card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  #expectations .card li {
    font-size: 0.9rem;
    padding: 11px 0 11px 34px;
  }
  
  #expectations .card li:first-child {
    padding-top: 0;
  }
  
  #expectations .card li:last-child {
    padding-bottom: 0;
  }
  
  #expectations .card li::before {
    width: 20px;
    height: 20px;
    font-size: 10px;
    line-height: 20px;
    top: 1px;
  }
  
  #expectations .card--do li::before {
    line-height: 20px;
  }
  
  #expectations .card--avoid li::before {
    line-height: 1;
    font-size: 9px;
  }
  
  #expectations .card li:not(:first-child)::before {
    top: 12px;
  }
}

/* Tablet Portrait */
@media (max-width: 899px) {
  #expectations .cards-grid--two {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 100%;
  }
  
  #expectations .card {
    padding: 40px 36px 36px;
    border-radius: 20px;
  }
  
  #expectations .card--do::before,
  #expectations .card--avoid::before {
    width: 4px;
    border-radius: 20px 0 0 20px;
  }
  
  #expectations .card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  #expectations .card li {
    font-size: 0.9rem;
    padding: 11px 0 11px 34px;
  }
  
  #expectations .card li:first-child {
    padding-top: 0;
  }
  
  #expectations .card li:last-child {
    padding-bottom: 0;
  }
  
  #expectations .card li::before {
    width: 20px;
    height: 20px;
    font-size: 10px;
    line-height: 20px;
    top: 1px;
  }
  
  #expectations .card--do li::before {
    line-height: 20px;
  }
  
  #expectations .card--avoid li::before {
    line-height: 1;
    font-size: 9px;
  }
  
  #expectations .card li:not(:first-child)::before {
    top: 12px;
  }
  
  #expectations .card:hover {
    transform: translateY(-6px);
  }
}

/* Mobile - Large phones */
@media (max-width: 768px) {
  #expectations .cards-grid--two {
    gap: 28px;
  }
  
  #expectations .card {
    padding: 36px 28px 32px;
    border-radius: 18px;
  }
  
  #expectations .card--do::before,
  #expectations .card--avoid::before {
    border-radius: 18px 0 0 18px;
  }
  
  #expectations .card h3 {
    font-size: 1.375rem;
    margin-bottom: 18px;
  }
  
  #expectations .card li {
    font-size: 0.875rem;
    padding: 10px 0 10px 32px;
    line-height: 1.6;
  }
  
  #expectations .card li:first-child {
    padding-top: 0;
  }
  
  #expectations .card li:last-child {
    padding-bottom: 0;
  }
  
  #expectations .card li::before {
    width: 18px;
    height: 18px;
    font-size: 9px;
    line-height: 18px;
    top: 1px;
  }
  
  #expectations .card--do li::before {
    line-height: 18px;
  }
  
  #expectations .card--avoid li::before {
    line-height: 1;
    font-size: 8px;
  }
  
  #expectations .card li:not(:first-child)::before {
    top: 11px;
  }
  
  #expectations .card:hover {
    transform: translateY(-5px);
  }
}

/* Mobile - Standard phones */
@media (max-width: 480px) {
  #expectations .cards-grid--two {
    gap: 24px;
  }
  
  #expectations .card {
    padding: 32px 22px 28px;
    border-radius: 16px;
  }
  
  #expectations .card--do::before,
  #expectations .card--avoid::before {
    width: 4px;
    border-radius: 16px 0 0 16px;
  }
  
  #expectations .card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }
  
  #expectations .card li {
    font-size: 0.85rem;
    padding: 9px 0 9px 30px;
  }
  
  #expectations .card li:first-child {
    padding-top: 0;
  }
  
  #expectations .card li:last-child {
    padding-bottom: 0;
  }
  
  #expectations .card li::before {
    width: 18px;
    height: 18px;
    font-size: 9px;
    line-height: 18px;
    top: 0;
  }
  
  #expectations .card--do li::before {
    line-height: 18px;
  }
  
  #expectations .card--avoid li::before {
    line-height: 1;
    font-size: 8px;
  }
  
  #expectations .card li:not(:first-child)::before {
    top: 9px;
  }
}

/* Mobile - Compact phones */
@media (max-width: 374px) {
  #expectations .cards-grid--two {
    gap: 20px;
  }
  
  #expectations .card {
    padding: 28px 18px 24px;
    border-radius: 14px;
  }
  
  #expectations .card--do::before,
  #expectations .card--avoid::before {
    width: 3px;
    border-radius: 14px 0 0 14px;
  }
  
  #expectations .card h3 {
    font-size: 1.125rem;
    margin-bottom: 14px;
  }
  
  #expectations .card li {
    font-size: 0.8125rem;
    padding: 8px 0 8px 28px;
    line-height: 1.55;
  }
  
  #expectations .card li:first-child {
    padding-top: 0;
  }
  
  #expectations .card li:last-child {
    padding-bottom: 0;
  }
  
  #expectations .card li::before {
    width: 16px;
    height: 16px;
    font-size: 8px;
    line-height: 16px;
    top: 0;
  }
  
  #expectations .card--do li::before {
    line-height: 16px;
  }
  
  #expectations .card--avoid li::before {
    line-height: 1;
    font-size: 7px;
  }
  
  #expectations .card li:not(:first-child)::before {
    top: 8px;
  }
}

/* Extra Compact phones */
@media (max-width: 340px) {
  #expectations .card {
    padding: 24px 16px 20px;
  }
  
  #expectations .card h3 {
    font-size: 1.0625rem;
  }
  
  #expectations .card li {
    font-size: 0.8rem;
    padding: 7px 0 7px 26px;
  }
  
  #expectations .card li:first-child {
    padding-top: 0;
  }
  
  #expectations .card li:last-child {
    padding-bottom: 0;
  }
  
  #expectations .card li::before {
    width: 15px;
    height: 15px;
    font-size: 7px;
    line-height: 15px;
    top: 0;
  }
  
  #expectations .card--do li::before {
    line-height: 15px;
  }
  
  #expectations .card--avoid li::before {
    line-height: 1;
    font-size: 6px;
  }
  
  #expectations .card li:not(:first-child)::before {
    top: 7px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  #expectations .card,
  #expectations .card h3,
  #expectations .card li,
  #expectations .card li::before {
    transition: none;
  }
  
  #expectations .card:hover {
    transform: none;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  #expectations .card:hover {
    transform: none;
  }
  
  #expectations .card--do:hover {
    box-shadow: 
      0 4px 24px rgba(37, 99, 235, 0.08),
      0 1px 4px rgba(15, 23, 42, 0.04);
  }
  
  #expectations .card--avoid:hover {
    box-shadow: 
      0 4px 24px rgba(71, 85, 105, 0.08),
      0 1px 4px rgba(15, 23, 42, 0.04);
  }
  
  #expectations .card:active {
    transform: scale(0.99);
    transition: transform 0.15s ease;
  }
}

/* ==========================================================================
   FAQ PAGE STYLES - Premium Enterprise Design
   ========================================================================== */

/* FAQ Hero Section - Premium Enterprise Design */
.hero--faq {
  padding: 140px 0 100px;
  background: 
    /* Radial glow - top center */
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 60%),
    /* Radial glow - bottom left accent */
    radial-gradient(ellipse 60% 40% at 10% 100%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
    /* Radial glow - bottom right accent */
    radial-gradient(ellipse 50% 35% at 90% 90%, rgba(30, 64, 175, 0.05) 0%, transparent 50%),
    /* Base gradient */
    linear-gradient(180deg, #f8fafc 0%, #ffffff 60%, #f8fafc 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Decorative grid pattern */
.hero--faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 20%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 20%, black 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Floating decorative orb - left */
.hero--faq::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.12) 0%, rgba(37, 99, 235, 0.04) 40%, transparent 70%);
  top: -100px;
  left: -150px;
  pointer-events: none;
  z-index: -1;
  animation: faqOrbFloat 8s ease-in-out infinite;
}

@keyframes faqOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, 15px) scale(1.05); }
}

.hero--faq .container {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

/* Eyebrow badge enhancement */
.hero--faq .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.08) 100%);
  border: 1px solid rgba(37, 99, 235, 0.15);
  box-shadow: 
    0 4px 16px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 28px;
  /* Force block-level centering for proper stacking */
  margin-left: auto;
  margin-right: auto;
}

/* Ensure eyebrow is on its own line */
.hero--faq .container > .hero__eyebrow {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.hero--faq .hero__eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
  animation: eyebrowPulse 2s ease-in-out infinite;
}

@keyframes eyebrowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

/* Title enhancement */
.hero--faq .hero__title {
  margin-bottom: 28px;
  position: relative;
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Decorative accent under title */
.hero--faq .hero__title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #2563eb 20%, #3b82f6 50%, #2563eb 80%, transparent 100%);
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.3);
}

.hero__text--centered {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #475569;
  margin-top: 16px;
}

/* Decorative floating elements - right side orb */
.hero--faq .container::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.03) 40%, transparent 70%);
  top: -50px;
  right: -200px;
  pointer-events: none;
  z-index: -1;
  animation: faqOrbFloat2 10s ease-in-out infinite;
}

@keyframes faqOrbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-15px, 20px) scale(1.08); }
}

/* Additional decorative ring */
.hero--faq .container::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(37, 99, 235, 0.08);
  bottom: -40px;
  left: -120px;
  pointer-events: none;
  z-index: -1;
  animation: faqRingFloat 12s ease-in-out infinite;
}

@keyframes faqRingFloat {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.6; }
  50% { transform: rotate(180deg) scale(1.1); opacity: 0.3; }
}

/* Responsive adjustments for FAQ hero */
@media (max-width: 1024px) {
  .hero--faq {
    padding: 120px 0 80px;
  }
  
  .hero--faq::after {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -120px;
  }
  
  .hero--faq .container::before {
    width: 200px;
    height: 200px;
    right: -150px;
  }
}

@media (max-width: 768px) {
  .hero--faq {
    padding: 100px 0 60px;
  }
  
  .hero--faq .hero__title {
    font-size: 2rem;
  }
  
  .hero--faq .hero__title::after {
    width: 60px;
    height: 3px;
    bottom: -10px;
  }
  
  .hero__text--centered {
    font-size: 1rem;
    max-width: 100%;
  }
  
  .hero--faq::after,
  .hero--faq .container::before,
  .hero--faq .container::after {
    display: none;
  }
  
  .hero--faq::before {
    background-size: 40px 40px;
  }
}

@media (max-width: 480px) {
  .hero--faq {
    padding: 90px 0 50px;
  }
  
  .hero--faq .hero__title {
    font-size: 1.75rem;
  }
  
  .hero--faq .hero__eyebrow {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
  
  .hero--faq .hero__eyebrow::before {
    width: 6px;
    height: 6px;
  }
}

/* FAQ Category Navigation */
.faq-nav-section {
  background: #ffffff;
  padding: 24px 0;
  border-bottom: 1px solid rgba(15, 27, 45, 0.08);
}

.faq-category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.faq-category-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: rgba(37, 99, 235, 0.06);
  color: var(--color-deep);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 24px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-category-chip:hover {
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

/* FAQ Section */
.faq-section {
  padding: 60px 0 80px;
  background: #ffffff;
}

/* FAQ Category */
.faq-category {
  margin-bottom: 56px;
  scroll-margin-top: 140px;
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-category__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(37, 99, 235, 0.1);
}

.faq-category__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.faq-category__icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.faq-category__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-deep);
  margin: 0;
  letter-spacing: -0.02em;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(15, 27, 45, 0.08);
  overflow: hidden;
  position: relative;
  box-shadow: 
    0 2px 8px rgba(15, 27, 45, 0.03),
    0 1px 2px rgba(15, 27, 45, 0.02);
  transition: 
    border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, box-shadow;
}

/* Premium accent bar at top of item */
.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: 
    opacity 0.4s cubic-bezier(0.32, 0.72, 0, 1),
    transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

/* Subtle inner glow effect */
.faq-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 17px;
  background: radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: 
    0 8px 24px rgba(15, 27, 45, 0.06),
    0 2px 8px rgba(37, 99, 235, 0.04);
  transform: translateY(-2px);
}

.faq-item:hover::after {
  opacity: 1;
}

/* Expanded state - premium highlight */
.faq-item:has(.faq-trigger[aria-expanded="true"]) {
  border-color: rgba(37, 99, 235, 0.2);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.015) 0%, #ffffff 100%);
  box-shadow: 
    0 12px 40px rgba(37, 99, 235, 0.1),
    0 4px 16px rgba(37, 99, 235, 0.06),
    0 0 0 1px rgba(37, 99, 235, 0.05);
  transform: translateY(-3px);
}

.faq-item:has(.faq-trigger[aria-expanded="true"])::before {
  opacity: 1;
  transform: scaleX(1);
}

.faq-item:has(.faq-trigger[aria-expanded="true"])::after {
  opacity: 1;
  background: radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
}

/* Fallback for browsers without :has() support - uses .is-expanded class */
.faq-item.is-expanded {
  border-color: rgba(37, 99, 235, 0.2);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.015) 0%, #ffffff 100%);
  box-shadow: 
    0 12px 40px rgba(37, 99, 235, 0.1),
    0 4px 16px rgba(37, 99, 235, 0.06),
    0 0 0 1px rgba(37, 99, 235, 0.05);
  transform: translateY(-3px);
}

.faq-item.is-expanded::before {
  opacity: 1;
  transform: scaleX(1);
}

.faq-item.is-expanded::after {
  opacity: 1;
  background: radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
}

/* FAQ Trigger Button */
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
  z-index: 1;
  transition: 
    background 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.faq-trigger:hover {
  background: rgba(37, 99, 235, 0.03);
}

.faq-trigger[aria-expanded="true"] {
  background: transparent;
}

.faq-trigger__text {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-deep);
  line-height: 1.5;
  transition: color 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  text-align: left !important;
}

.faq-trigger:hover .faq-trigger__text {
  color: var(--color-accent);
}

.faq-trigger[aria-expanded="true"] .faq-trigger__text {
  color: var(--color-accent);
}

.faq-trigger__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(37, 99, 235, 0.1) 100%);
  border-radius: 10px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  position: relative;
  overflow: hidden;
  transition: 
    background 0.4s cubic-bezier(0.32, 0.72, 0, 1),
    border-color 0.4s cubic-bezier(0.32, 0.72, 0, 1),
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

/* Shine effect on icon */
.faq-trigger__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.faq-trigger:hover .faq-trigger__icon {
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.18);
  border-color: rgba(37, 99, 235, 0.15);
}

.faq-trigger__icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  position: relative;
  z-index: 1;
  transition: 
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Expanded state - premium blue icon */
.faq-trigger[aria-expanded="true"] .faq-trigger__icon {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 
    0 6px 20px rgba(37, 99, 235, 0.35),
    0 2px 8px rgba(37, 99, 235, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.faq-trigger[aria-expanded="true"] .faq-trigger__icon::before {
  opacity: 1;
}

.faq-trigger[aria-expanded="true"] .faq-trigger__icon svg {
  color: #ffffff;
  transform: rotate(180deg);
}

/* FAQ Content - Premium Smooth Height Animation */
/* Uses CSS Grid for smooth natural height animation */
.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: 
    grid-template-rows 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 0s 0.5s;
  visibility: hidden;
}

.faq-content[aria-hidden="false"] {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition: 
    grid-template-rows 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s,
    visibility 0s;
}

.faq-content__inner {
  overflow: hidden;
  min-height: 0;
}

.faq-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-muted);
  margin: 0;
  padding: 4px 28px 28px 28px;
  position: relative;
  text-align: left !important;
}

/* Premium left accent bar */
.faq-content p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 28px;
  width: 3px;
  background: linear-gradient(180deg, #2563eb 0%, #3b82f6 50%, rgba(59, 130, 246, 0.15) 100%);
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.25);
}

/* Subtle gradient background for answer area */
.faq-content p::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 4px;
  bottom: 28px;
  right: 0;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.025) 0%, transparent 40%);
  border-radius: 0 8px 8px 0;
  pointer-events: none;
}

/* FAQ Glossary Section */
.faq-category--glossary .faq-category__header {
  border-bottom-color: rgba(37, 99, 235, 0.15);
}

.faq-glossary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.glossary-item {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(37, 99, 235, 0.02) 100%);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 16px;
  padding: 24px 28px;
  transition: all 0.3s ease;
}

.glossary-item:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
  transform: translateX(4px);
}

.glossary-term {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-deep);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-align: left !important;
}

.glossary-term::before {
  content: '';
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.glossary-definition {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-muted);
  padding-left: 18px;
  text-align: left !important;
}

/* ==========================================================================
   PREMIUM SCROLL TO TOP BUTTON
   A sleek, professional floating button for $50K websites
   ========================================================================== */

.scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  
  /* Premium glassmorphism background */
  background: linear-gradient(135deg, 
    rgba(15, 27, 45, 0.95) 0%, 
    rgba(15, 27, 45, 0.88) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  
  /* Elegant border with subtle glow */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  
  /* Sophisticated shadow stack */
  box-shadow: 
    0 4px 24px -4px rgba(0, 0, 0, 0.3),
    0 8px 32px -8px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(37, 99, 235, 0.08);
  
  /* Smooth transitions */
  transition: 
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Hidden by default - shown via JS when scrolled */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Visible state - added by JS when scrolled down */
.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: scrollTopReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scrollTopReveal {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Icon container - positioned above progress ring */
.scroll-to-top__icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #ffffff;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-to-top__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.5;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

/* Animated glow ring - positioned behind icon */
.scroll-to-top__progress {
  position: absolute;
  z-index: 1;
  inset: -4px;
  border-radius: 20px;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(37, 99, 235, 0.5) 25%,
    rgba(37, 99, 235, 0.8) 50%,
    rgba(37, 99, 235, 0.5) 75%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: scrollTopRingSpin 2.5s linear infinite;
  pointer-events: none;
}

.scroll-to-top__progress::before {
  content: '';
  position: absolute;
  inset: 3px;
  background: linear-gradient(135deg, 
    rgba(15, 27, 45, 0.98) 0%, 
    rgba(15, 27, 45, 0.95) 100%);
  border-radius: 17px;
}

/* ========== HOVER STATES - Only for devices that support hover ========== */
@media (hover: hover) and (pointer: fine) {
  .scroll-to-top:hover {
    transform: translateY(-6px) scale(1.05);
    background: linear-gradient(135deg, 
      rgba(37, 99, 235, 1) 0%, 
      rgba(37, 99, 235, 0.9) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
      0 12px 40px -4px rgba(37, 99, 235, 0.5),
      0 20px 60px -8px rgba(37, 99, 235, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.15),
      0 0 0 1px rgba(37, 99, 235, 0.4),
      0 0 60px -8px rgba(37, 99, 235, 0.6);
  }

  .scroll-to-top:hover .scroll-to-top__icon {
    transform: translateY(-3px);
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
  }

  .scroll-to-top:hover .scroll-to-top__progress {
    opacity: 1;
  }
  
  /* Subtle idle pulse only on hover-capable devices */
  .scroll-to-top.is-visible {
    animation: scrollTopPulse 4s ease-in-out infinite;
  }
  
  .scroll-to-top:hover {
    animation: none;
  }
}

/* ========== ACTIVE/PRESSED STATE - Premium tactile feedback ========== */
.scroll-to-top:active {
  transform: translateY(-2px) scale(0.95);
  background: linear-gradient(135deg, 
    rgba(37, 99, 235, 0.85) 0%, 
    rgba(25, 70, 180, 0.9) 100%);
  box-shadow: 
    0 4px 16px -2px rgba(37, 99, 235, 0.4),
    0 8px 24px -4px rgba(37, 99, 235, 0.2),
    inset 0 2px 4px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(37, 99, 235, 0.5);
  transition-duration: 0.1s;
}

.scroll-to-top:active .scroll-to-top__icon {
  transform: scale(0.92);
  transition-duration: 0.1s;
}

.scroll-to-top:active .scroll-to-top__progress {
  opacity: 0.7;
}

/* Focus state for accessibility */
.scroll-to-top:focus-visible {
  outline: none;
  box-shadow: 
    0 8px 32px -4px rgba(37, 99, 235, 0.4),
    0 0 0 3px rgba(37, 99, 235, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Keyframe for the progress ring */
@keyframes scrollTopRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Subtle pulse animation hint */
@keyframes scrollTopPulse {
  0%, 100% { 
    box-shadow: 
      0 4px 24px -4px rgba(0, 0, 0, 0.3),
      0 8px 32px -8px rgba(37, 99, 235, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 0 1px rgba(37, 99, 235, 0.08);
  }
  50% { 
    box-shadow: 
      0 4px 24px -4px rgba(0, 0, 0, 0.3),
      0 8px 32px -8px rgba(37, 99, 235, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 0 1px rgba(37, 99, 235, 0.15),
      0 0 30px -6px rgba(37, 99, 235, 0.2);
  }
}

/* ==========================================================================
   FAQ PAGE - RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1024px) {
  .hero--faq {
    padding: 100px 0 60px;
  }
  
  .faq-category__title {
    font-size: 1.375rem;
  }
}

@media (max-width: 768px) {
  .hero--faq {
    padding: 90px 0 50px;
  }
  
  .hero--faq .hero__title {
    font-size: 2rem;
  }
  
  .faq-nav-section {
    padding: 16px 0;
  }
  
  .faq-category-nav {
    gap: 8px;
  }
  
  .faq-category-chip {
    padding: 8px 16px;
    font-size: 0.8125rem;
  }
  
  .faq-section {
    padding: 40px 0 60px;
  }
  
  .faq-category {
    margin-bottom: 40px;
    scroll-margin-top: 120px;
  }
  
  .faq-category__header {
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }
  
  .faq-category__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
  }
  
  .faq-category__icon svg {
    width: 20px;
    height: 20px;
  }
  
  .faq-category__title {
    font-size: 1.25rem;
  }
  
  .faq-accordion {
    gap: 10px;
  }
  
  .faq-trigger {
    padding: 20px 20px;
    gap: 12px;
  }
  
  .faq-trigger__text {
    font-size: 0.9375rem;
  }
  
  .faq-trigger__icon {
    width: 28px;
    height: 28px;
  }
  
  .faq-trigger__icon svg {
    width: 16px;
    height: 16px;
  }
  
  .faq-content p {
    font-size: 0.9375rem;
    padding: 4px 20px 22px 24px;
  }
  
  .faq-content p::before {
    left: 0;
    top: 4px;
    bottom: 22px;
    width: 3px;
  }
  
  .faq-content p::after {
    left: 3px;
    top: 4px;
    bottom: 22px;
  }
  
  .glossary-item {
    padding: 20px 22px;
  }
  
  .glossary-term {
    font-size: 0.9375rem;
  }
  
  .glossary-definition {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .hero--faq {
    padding: 80px 0 40px;
  }
  
  .hero--faq .hero__title {
    font-size: 1.75rem;
  }
  
  .hero--faq .hero__text {
    font-size: 1rem;
  }
  
  .faq-category-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 8px;
  }
  
  .faq-category-chip {
    padding: 8px 14px;
    font-size: 0.75rem;
    border-radius: 20px;
    flex: 0 0 auto;
  }
  
  .faq-category {
    scroll-margin-top: 110px;
  }
  
  .faq-category__header {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  
  .faq-category__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
  }
  
  .faq-category__icon svg {
    width: 18px;
    height: 18px;
  }
  
  .faq-category__title {
    font-size: 1.125rem;
  }
  
  .faq-trigger {
    padding: 16px 14px;
    gap: 10px;
  }
  
  .faq-trigger__text {
    font-size: 0.875rem;
    line-height: 1.4;
  }
  
  .faq-trigger__icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    flex-shrink: 0;
  }
  
  .faq-trigger__icon svg {
    width: 14px;
    height: 14px;
  }
  
  .faq-content p {
    font-size: 0.875rem;
    line-height: 1.75;
    padding: 4px 16px 20px 20px;
  }
  
  .faq-content p::before {
    left: 0;
    top: 4px;
    bottom: 20px;
    width: 3px;
  }
  
  .faq-content p::after {
    left: 3px;
    top: 4px;
    bottom: 20px;
  }
  
  .glossary-item {
    padding: 18px 18px;
    border-radius: 12px;
  }
  
  .glossary-term {
    font-size: 0.875rem;
    gap: 8px;
  }
  
  .glossary-term::before {
    width: 6px;
    height: 6px;
  }
  
  .glossary-definition {
    font-size: 0.8125rem;
    padding-left: 14px;
  }
  
  /* Premium Scroll to Top - Mobile (480px and below) */
  .scroll-to-top {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 16px;
    border-radius: 12px;
    /* Cleaner shadow on mobile */
    box-shadow: 
      0 4px 20px -4px rgba(0, 0, 0, 0.25),
      0 6px 24px -6px rgba(37, 99, 235, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
  
  .scroll-to-top__icon svg {
    width: 18px;
    height: 18px;
  }
  
  .scroll-to-top__progress {
    inset: -3px;
    border-radius: 15px;
  }
  
  .scroll-to-top__progress::before {
    border-radius: 12px;
  }
}

/* Scroll to Top - Tablet (768px) */
@media (max-width: 768px) and (min-width: 481px) {
  .scroll-to-top {
    width: 52px;
    height: 52px;
    bottom: 24px;
    right: 24px;
    border-radius: 14px;
  }
  
  .scroll-to-top__icon svg {
    width: 20px;
    height: 20px;
  }
  
  .scroll-to-top__progress {
    inset: -3px;
    border-radius: 17px;
  }
  
  .scroll-to-top__progress::before {
    border-radius: 14px;
  }
}

/* Touch devices - Prevent sticky hover states */
@media (hover: none) {
  .scroll-to-top:active {
    transform: scale(0.92);
    background: linear-gradient(135deg, 
      rgba(37, 99, 235, 0.95) 0%, 
      rgba(37, 99, 235, 0.85) 100%);
    box-shadow: 
      0 2px 12px -2px rgba(37, 99, 235, 0.4),
      inset 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .scroll-to-top:active .scroll-to-top__icon {
    transform: scale(0.9);
  }
}

/* Reduced Motion Support for FAQ */
@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-trigger,
  .faq-trigger__icon,
  .faq-trigger__icon svg,
  .faq-content,
  .faq-content__inner,
  .glossary-item,
  .faq-category-chip,
  .scroll-to-top,
  .scroll-to-top__icon,
  .scroll-to-top__progress {
    transition: none !important;
    animation: none !important;
  }
}

/* Focus States for Accessibility */
.faq-trigger:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.4);
  outline-offset: 2px;
  border-radius: 12px;
}

.faq-category-chip:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.4);
  outline-offset: 2px;
}

/* ===== Mini-FAQ Section (Inline on Service Pages) ===== */
/* Matches .banner-dark width and styling patterns for visual consistency */
.mini-faq-section {
  padding: 0;
  padding-bottom: 80px;
  background: transparent;
}

.mini-faq {
  background: #ffffff;
  border-radius: 32px;
  padding: 56px 72px;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 10px 20px -5px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(37, 99, 235, 0.08);
  position: relative;
  overflow: hidden;
}

.mini-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.6), transparent);
}

.mini-faq__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.mini-faq__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(37, 99, 235, 0.06) 100%);
  border-radius: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.mini-faq__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

.mini-faq__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
}

.mini-faq .faq-accordion {
  gap: 12px;
}

.mini-faq__footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(37, 99, 235, 0.08);
  display: flex;
  justify-content: center;
}

.mini-faq__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-faq__link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.mini-faq__link:hover {
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.mini-faq__link:hover svg {
  transform: translateX(4px);
}

.mini-faq__link:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.4);
  outline-offset: 2px;
}

/* Mini-FAQ Responsive - Matching .banner-dark breakpoints */
@media (max-width: 1024px) {
  .mini-faq {
    padding: 48px 48px;
    border-radius: 28px;
  }
  
  .mini-faq__title {
    font-size: 1.375rem;
  }
  
  .mini-faq__icon {
    width: 48px;
    height: 48px;
  }
}

/* Match banner-dark: 768px breakpoint */
@media (max-width: 768px) {
  .mini-faq {
    padding: 40px 32px;
    border-radius: 20px;
  }
  
  .mini-faq__header {
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 18px;
  }
  
  .mini-faq__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  
  .mini-faq__icon svg {
    width: 20px;
    height: 20px;
  }
  
  .mini-faq__title {
    font-size: 1.25rem;
  }
  
  .mini-faq .faq-accordion {
    gap: 10px;
  }
  
  .mini-faq__footer {
    margin-top: 24px;
    padding-top: 18px;
  }
  
  .mini-faq__link {
    font-size: 0.9375rem;
    padding: 12px 24px;
  }
}

/* Match banner-dark: 480px breakpoint */
@media (max-width: 480px) {
  .mini-faq {
    padding: 32px 24px;
    border-radius: 20px;
  }
  
  .mini-faq__header {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }
  
  .mini-faq__title {
    font-size: 1.125rem;
  }
  
  .mini-faq__link {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}

/* Match banner-dark: Compact phones (<375px) */
@media (max-width: 374px) {
  .mini-faq {
    padding: 28px 20px;
    border-radius: 16px;
  }
  
  .mini-faq__header {
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 14px;
  }
  
  .mini-faq__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  
  .mini-faq__icon svg {
    width: 18px;
    height: 18px;
  }
  
  .mini-faq__title {
    font-size: 1.0625rem;
  }
  
  .mini-faq__footer {
    margin-top: 20px;
    padding-top: 14px;
  }
  
  .mini-faq__link {
    font-size: 0.875rem;
    padding: 12px 16px;
  }
}

/* Reduced Motion Support for Mini-FAQ */
@media (prefers-reduced-motion: reduce) {
  .mini-faq__link,
  .mini-faq__link svg {
    transition: none !important;
  }
}


/* ==========================================================================
   NIS2 readiness — scoped styles for /en/nis2-compliance.html and /ro/conformitate-nis2.html
   ========================================================================== */

.nis2-intro-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  color: var(--color-deep);
}

.nis2-intro-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.55;
}

.nis2-intro-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-accent);
}

/* NIS2 context card — "Practical questions, before the legal ones" section.
   Wraps the explanatory text + practical questions in a calm advisory card
   with a compact "what we clarify" aside. Static, no JS. */
.nis2-context-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
  margin-top: 4px;
  text-align: left;
  padding: clamp(24px, 3vw, 36px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.nis2-context-card__badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(37, 100, 251, 0.08);
  border: 1px solid rgba(37, 100, 251, 0.18);
  border-radius: 999px;
}

.nis2-context-card__main p {
  margin: 0 0 14px;
  line-height: 1.7;
  text-align: left;
  color: var(--color-muted);
  max-width: 72ch;
}

.nis2-context-card__main p.nis2-national-note {
  margin: 14px 0 0;
  text-align: left;
}

.nis2-context-card__aside {
  padding: 4px 0 4px 22px;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--color-border);
  border-radius: 0;
  text-align: left;
}

.nis2-context-card__aside-title {
  margin: 0 0 14px;
  padding-bottom: 0;
  border-bottom: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.nis2-context-card__aside-list {
  counter-reset: nis2-aside;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.nis2-context-card__aside-list li {
  counter-increment: nis2-aside;
  position: relative;
  padding: 13px 0 13px 38px;
  border-top: 1px solid rgba(13, 27, 42, 0.08);
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--color-deep);
}

.nis2-context-card__aside-list li::before {
  content: counter(nis2-aside, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 14px;
  width: auto;
  height: auto;
  border: 0;
  transform: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--color-accent);
}

@media (max-width: 900px) {
  .nis2-context-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding: clamp(20px, 5vw, 28px);
  }
  .nis2-context-card__aside {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid var(--color-border);
  }
}

.nis2-sectors {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.nis2-sector {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-height: 132px;
  padding: 24px 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-deep);
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.nis2-sector::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(30, 58, 138, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.nis2-sector::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

.nis2-sector:hover {
  border-color: rgba(37, 100, 251, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37, 100, 251, 0.13);
}

.nis2-sector:hover::before,
.nis2-sector:hover::after {
  opacity: 1;
}

.nis2-sector__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.10) 0%, rgba(30, 58, 138, 0.12) 100%);
  color: var(--color-accent);
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.nis2-sector__icon svg {
  width: 22px;
  height: 22px;
}

.nis2-sector:hover .nis2-sector__icon {
  background: linear-gradient(135deg, var(--color-accent) 0%, #1d4ed8 100%);
  color: #ffffff;
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 8px 18px rgba(37, 100, 251, 0.35);
}

.nis2-sector__label {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--color-deep);
}

@media (max-width: 1399px) {
  .nis2-sectors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 899px) {
  .nis2-sectors {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
  .nis2-sector {
    flex-direction: row;
    align-items: center;
    min-height: 68px;
    padding: 14px 18px;
    gap: 14px;
  }
  .nis2-sector__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .nis2-sector__icon svg {
    width: 19px;
    height: 19px;
  }
}

.nis2-form {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.nis2-quiz {
  margin-top: 24px;
}

.nis2-quiz__progress {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.nis2-quiz__progress-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.nis2-quiz__progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
}

.nis2-quiz__progress-bar {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--color-accent);
  transition: width 0.2s ease;
}

.nis2-question {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  margin: 0;
  background: var(--color-surface);
  overflow: hidden;
}

.nis2-question__title {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--color-deep);
  padding: 0;
  margin: 0 0 16px;
  display: block;
  width: 100%;
}

.nis2-question__help {
  margin: -8px 0 18px;
  color: var(--color-muted);
  line-height: 1.55;
}

.nis2-options {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nis2-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
  background: #fff;
}

.nis2-option:hover {
  border-color: var(--color-accent);
  background: rgba(37, 99, 235, 0.04);
}

.nis2-option input[type="radio"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--color-accent);
}

.nis2-option input[type="radio"]:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.nis2-option__text {
  color: var(--color-deep);
  line-height: 1.45;
}

.nis2-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.nis2-form__actions--contact {
  margin-top: 0;
}

.nis2-form__actions--contact .btn--primary {
  min-width: 260px;
  min-height: 58px;
  font-size: 1rem;
  font-weight: 800;
}

.nis2-form__actions--contact .btn--secondary {
  min-width: 220px;
  min-height: 50px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nis2-result {
  border: 1px solid var(--color-border);
  border-left-width: 4px;
  border-left-color: var(--color-accent);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  background: var(--color-surface);
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.nis2-result--preview {
  margin-top: 0;
  margin-bottom: 22px;
}

.nis2-result[hidden] {
  display: none;
}

.nis2-result[data-result="likely"]   { border-left-color: #b91c1c; }
.nis2-result[data-result="possible"] { border-left-color: #d97706; }
.nis2-result[data-result="supplier"] { border-left-color: #2564fb; }
.nis2-result[data-result="lower"]    { border-left-color: #059669; }

.nis2-result__badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-muted);
}

.nis2-result__title {
  font-size: 1.5rem;
  margin: 0;
  color: var(--color-deep);
}

.nis2-result__desc {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
}

.nis2-result__sent {
  margin: 0;
  color: var(--color-deep);
  font-weight: 600;
}

.nis2-result__steps {
  margin: 4px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 8px;
  color: var(--color-deep);
}

.nis2-result__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.nis2-disclaimer {
  font-size: 0.85rem;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
  margin: 8px 0 0;
  line-height: 1.5;
}

.nis2-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nis2-inline-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-muted);
  font-size: 0.92rem;
}

.nis2-inline-status--error {
  border-color: rgba(185, 28, 28, 0.24);
  background: rgba(254, 242, 242, 0.86);
  color: #991b1b;
}

.nis2-contact-form {
  margin-top: 22px;
}

.nis2-required-note {
  margin: 0 0 16px;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.nis2-required-marker {
  color: #b91c1c;
  font-weight: 800;
}

.nis2-field {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.nis2-field__label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-deep);
}

.nis2-field input {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font: inherit;
  color: var(--color-deep);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nis2-field input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.nis2-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.nis2-consent input {
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--color-accent);
}

.nis2-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.nis2-deliverables {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.nis2-deliverable {
  position: relative;
  padding: 28px 24px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nis2-deliverable::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, #1d4ed8 100%);
  border-radius: 0 0 2px 2px;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nis2-deliverable:hover {
  border-color: rgba(37, 100, 251, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 100, 251, 0.08);
}

.nis2-deliverable:hover::before {
  width: 56px;
}

.nis2-deliverable__number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.nis2-deliverable__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-deep);
  margin: 0 0 8px;
  line-height: 1.3;
}

.nis2-deliverable__desc {
  font-size: 0.925rem;
  line-height: 1.55;
  color: var(--color-muted);
  margin: 0;
}

.nis2-optional {
  margin-top: 18px;
  padding: 24px 28px;
  border: 1px solid rgba(37, 100, 251, 0.22);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(30, 58, 138, 0.07) 100%);
  display: flex;
  gap: 24px;
  align-items: center;
}

.nis2-optional__badge {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 7px 14px;
  border: 1px solid rgba(37, 100, 251, 0.3);
  border-radius: 999px;
  background: var(--color-surface);
  white-space: nowrap;
}

.nis2-optional__content {
  flex: 1;
  min-width: 0;
}

.nis2-optional__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-deep);
  margin: 0 0 4px;
  line-height: 1.3;
}

.nis2-optional__desc {
  font-size: 0.925rem;
  line-height: 1.55;
  color: var(--color-muted);
  margin: 0;
}

@media (max-width: 1399px) {
  .nis2-deliverables {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 899px) {
  .nis2-deliverables {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
  .nis2-deliverable { padding: 24px 22px 22px; }
  .nis2-optional {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 22px;
  }
}

/* Inline NIS2 band reused on offers/abonamente pages */
.nis2-band {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(30, 58, 138, 0.10) 100%);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.nis2-band__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0;
}

.nis2-band__title {
  margin: 0 auto;
  font-size: 1.5rem;
  color: var(--color-deep);
  line-height: 1.3;
  max-width: 760px;
  text-align: center;
}

.nis2-band__text {
  margin: 0 auto;
  color: var(--color-muted);
  line-height: 1.6;
  max-width: 820px;
  text-align: center;
}

.nis2-band__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.nis2-band__actions .btn {
  min-width: 300px;
  min-height: 58px;
  padding: 16px 40px;
  font-size: 1.0625rem;
  font-weight: 700;
  border-radius: 10px;
}

.nis2-band__list {
  margin: 8px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
  color: var(--color-deep);
}

@media (max-width: 899px) {
  .nis2-question { padding: 20px 22px; }
  .nis2-result { padding: 24px; }
  .nis2-band { padding: 24px; }
}

@media (max-width: 767px) {
  .nis2-result__title { font-size: 1.25rem; }
  .nis2-band__title { font-size: 1.25rem; }
  .nis2-form__actions--contact {
    flex-direction: column;
    align-items: stretch;
  }
  .nis2-form__actions--contact .btn {
    width: 100%;
    justify-content: center;
  }
  .nis2-form__actions--contact .btn--primary {
    min-height: 64px;
    font-size: 1.05rem;
    font-weight: 800;
    min-width: 0;
  }
  .nis2-form__actions--contact .btn--secondary {
    min-height: 52px;
    font-size: 0.95rem;
    font-weight: 700;
    min-width: 0;
  }
}
.retainer-addon-note {
  margin: 24px auto 0;
  max-width: 760px;
  text-align: center;
  padding: 14px 18px;
  border: 1px dashed rgba(37, 99, 235, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.04);
  color: var(--color-deep);
  font-size: 0.95rem;
  line-height: 1.5;
}

.retainer-addon-note a {
  color: var(--color-accent);
  font-weight: 600;
}

@media (max-width: 768px) {
  /* NIS2: keep card/list/form content left-aligned even though .section centers text on mobile */
  .nis2-intro-list,
  .nis2-intro-list li,
  .nis2-form,
  .nis2-question,
  .nis2-question__title,
  .nis2-options,
  .nis2-option,
  .nis2-option__text,
  .nis2-result,
  .nis2-result__badge,
  .nis2-result__title,
  .nis2-result__desc,
  .nis2-result__steps,
  .nis2-result__steps li,
  .nis2-result__cta-row,
  .nis2-disclaimer,
  .nis2-deliverable,
  .nis2-deliverable__number,
  .nis2-deliverable__title,
  .nis2-deliverable__desc,
  .nis2-optional,
  .nis2-optional__badge,
  .nis2-optional__title,
  .nis2-optional__desc,
  .nis2-optional__content,
  .nis2-band,
  .nis2-band__eyebrow,
  .nis2-band__title,
  .nis2-band__text,
  .nis2-band__list,
  .nis2-band__list li,
  .nis2-band__actions,
  .nis2-sector__label {
    text-align: left;
  }
}

@media (max-width: 768px) {
  /* NIS2 deliverable cards: re-center titles, numbers and descriptions for the centered-mobile rhythm */
  .nis2-deliverable,
  .nis2-deliverable__number,
  .nis2-deliverable__title,
  .nis2-deliverable__desc {
    text-align: center;
  }

  /* Center the deliverable accent bar at the top of the card */
  .nis2-deliverable::before {
    left: 50%;
    transform: translateX(-50%);
  }

  /* NIS2 'Add-on opțional' callout: stack-and-center on mobile */
  .nis2-optional,
  .nis2-optional__content,
  .nis2-optional__badge,
  .nis2-optional__title,
  .nis2-optional__desc {
    text-align: center;
  }

  .nis2-optional {
    align-items: center;
  }

  /* Offers/retainers NIS2 band: keep the whole CTA centered on mobile */
  .nis2-band,
  .nis2-band__eyebrow,
  .nis2-band__title,
  .nis2-band__text,
  .nis2-band__actions {
    text-align: center;
    justify-content: center;
  }

  .nis2-band {
    justify-items: center;
  }
}

.nis2-national-note {
  margin: 18px 0 0;
  font-size: 0.85rem;
  color: var(--color-muted);
  font-style: italic;
  line-height: 1.5;
}

/* Homepage v2 - simplified sections */
.section__intro {
  text-align: center;
  max-width: 720px;
  margin: -8px auto 48px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #475569;
}

.card__link {
  display: block;
  margin-top: 18px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2563eb;
  text-align: center;
  letter-spacing: 0.01em;
}

.card__link::after {
  content: ' \2192';
}

.card:hover .card__link {
  color: #1e40af;
}

.cards-grid--four .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cards-grid--four .card p {
  margin-bottom: 24px;
}

.cards-grid--four .card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: center;
  max-width: 100%;
  min-height: 42px;
  margin-top: auto;
  padding: 10px 18px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.04));
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-align: center;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cards-grid--four .card__link::after {
  content: '\2192';
  line-height: 1;
  transition: transform 0.2s ease;
}

.cards-grid--four .card:hover .card__link {
  color: #ffffff;
  background: linear-gradient(180deg, #2563eb, #1d4ed8);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.2);
  transform: translateY(-1px);
}

.cards-grid--four .card:hover .card__link::after {
  transform: translateX(3px);
}

.cards-grid--four .card:focus-visible .card__link {
  color: #ffffff;
  background: linear-gradient(180deg, #2563eb, #1d4ed8);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16), 0 12px 24px rgba(37, 99, 235, 0.2);
}

body[data-file="index"] .cards-grid > .card,
body[data-file="index"] .steps > .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

body[data-file="index"] .cards-grid > .card h3,
body[data-file="index"] .cards-grid > .card p,
body[data-file="index"] .steps > .step h3,
body[data-file="index"] .steps > .step p {
  text-align: center;
}

body[data-file="index"] .cards-grid > .card p,
body[data-file="index"] .steps > .step p {
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
}

body[data-file="index"] .step__index {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .cards-grid--four .card__link {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }
}

.section__cta-row {
  text-align: center;
  margin-top: 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-actions .btn {
  margin: 0;
}

/* Assessments page - trigger strip, card "Best for" line, related CTA */
.assessment-trigger-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.assessment-trigger {
  background: #ffffff;
  border: 1px solid rgba(15, 27, 45, 0.08);
  border-radius: 14px;
  padding: 30px 26px;
  box-shadow: 0 2px 10px rgba(15, 27, 45, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.assessment-trigger:hover {
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.1);
  transform: translateY(-3px);
}

.assessment-trigger__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.assessment-trigger__title {
  margin: 6px 0 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f1b2d;
  line-height: 1.3;
}

.assessment-trigger__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

@media (max-width: 900px) {
  .assessment-trigger-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.assessment-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: start;
  width: 100%;
}

.assessment-card__body p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #64748b;
}

.assessment-card__body p.assessment-card__fit {
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06), rgba(37, 99, 235, 0.025));
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 12px;
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: left;
}

.assessment-card__fit-label {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  color: #2563eb;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .assessment-card__body p.assessment-card__fit {
    padding: 12px 14px;
    font-size: 0.84rem;
  }
}

.assessment-related-cta {
  background: #f8fafc;
  border: 1px solid rgba(15, 27, 45, 0.08);
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.assessment-related-cta__content {
  flex: 1 1 360px;
  min-width: 0;
}

.assessment-related-cta h2 {
  margin: 0 0 8px 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f1b2d;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.assessment-related-cta p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 720px) {
  .assessment-related-cta {
    padding: 24px;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
  }

  .assessment-related-cta__content {
    flex: 0 0 auto;
    width: 100%;
  }

  .assessment-related-cta h2 {
    font-size: 1.25rem;
  }

  .assessment-related-cta p {
    max-width: 42ch;
    margin: 0 auto;
  }

  .assessment-related-cta .btn {
    display: inline-flex !important;
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
  }
}

/* Training page - trigger strip, card body/fit/includes, related CTA */
.training-trigger-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.training-trigger {
  background: #ffffff;
  border: 1px solid rgba(15, 27, 45, 0.08);
  border-radius: 14px;
  padding: 30px 26px;
  box-shadow: 0 2px 10px rgba(15, 27, 45, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.training-trigger:hover {
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.1);
  transform: translateY(-3px);
}

.training-trigger__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.training-trigger__title {
  margin: 6px 0 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f1b2d;
  line-height: 1.3;
}

.training-trigger__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

@media (max-width: 1100px) {
  .training-trigger-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .training-trigger-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Training tracks - structured card body */
.training-cards.cards-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.training-cards.cards-grid--four .card {
  padding: 40px 28px;
}

.training-cards.cards-grid--four .card h3 {
  font-size: 1.25rem;
  line-height: 1.35;
}

.training-cards .card .training-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-bottom: 20px;
}

.training-cards .card .training-card__body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
}

.training-cards .card .training-card__body p.training-card__fit {
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06), rgba(37, 99, 235, 0.025));
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 12px;
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: left;
}

.training-card__fit-label {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  color: #2563eb;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.training-cards .card .training-card__includes-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
  margin: 4px 0 10px 0;
}

.training-cards .card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.training-cards .card ul li {
  display: grid;
  grid-template-columns: 22px 1fr;
  column-gap: 10px;
  align-items: start;
  padding: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #475569;
  text-align: left;
}

.training-cards .card ul li::before {
  content: '\2713';
  position: static;
  left: auto;
  top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #2563eb;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 1200px) {
  .training-cards.cards-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .training-cards.cards-grid--four .card {
    padding: 46px 36px;
  }
}

@media (max-width: 720px) {
  .training-cards.cards-grid--four {
    grid-template-columns: 1fr;
  }

  .training-cards .card ul {
    gap: 9px;
  }

  .training-cards .card ul li {
    grid-template-columns: 20px 1fr;
    column-gap: 9px;
    font-size: 0.9rem;
  }

  .training-cards .card ul li::before {
    width: 20px;
    height: 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 720px) {
  .training-cards .card {
    padding: 36px 28px;
  }
  .training-cards .card .training-card__body p {
    font-size: 0.95rem;
  }
  .training-cards .card .training-card__body p.training-card__fit {
    padding: 12px 14px;
    font-size: 0.84rem;
  }
}

.training-deliverables {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 28px auto 0;
  text-align: left;
}

.training-deliverable {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 132px;
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 14px 28px rgba(15, 23, 42, 0.12);
}

.training-deliverable__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.training-deliverable__title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

@media (max-width: 1100px) {
  .training-deliverables {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .training-deliverables {
    grid-template-columns: 1fr;
    max-width: 640px;
    gap: 14px;
  }

  .training-deliverable {
    min-height: 0;
    align-items: center;
    padding: 20px 18px;
    text-align: center;
  }
}

/* Training related CTA (light panel, smaller than dark banner) */
.training-related-cta {
  background: #f8fafc;
  border: 1px solid rgba(15, 27, 45, 0.08);
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.training-related-cta__content {
  flex: 1 1 360px;
  min-width: 0;
}

.training-related-cta h2 {
  margin: 0 0 8px 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f1b2d;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.training-related-cta p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 720px) {
  .training-related-cta {
    padding: 24px;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
  }

  .training-related-cta__content {
    flex: 0 0 auto;
    width: 100%;
  }

  .training-related-cta h2 {
    font-size: 1.25rem;
  }

  .training-related-cta p {
    max-width: 42ch;
    margin: 0 auto;
  }

  .training-related-cta .btn {
    display: inline-flex !important;
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
  }
}

/* Retainers/offers page - support options, groups, scope steps, included */
.retainer-support-section .section__heading,
.retainer-support-section .section__title {
  text-align: center;
}

.retainer-support-section .container {
  width: min(1600px, calc(100% - 56px));
}

.retainer-support-section__intro {
  max-width: 720px;
  margin: -8px auto 48px;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #475569;
}

.retainer-group {
  margin-top: 48px;
}

.retainer-group:first-of-type {
  margin-top: 0;
}

.retainer-group__header {
  max-width: 860px;
  margin: 0 0 34px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(15, 27, 45, 0.08);
  position: relative;
}

.retainer-group__header::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 88px;
  height: 2px;
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
  border-radius: 999px;
}

.retainer-group__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.retainer-group__title {
  max-width: 560px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  color: #0f1b2d;
  margin: 0 0 10px 0;
  letter-spacing: 0;
  line-height: 1.18;
}

.retainer-group__intro {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
  max-width: 720px;
  text-wrap: pretty;
}

.retainer-option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.retainer-option-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.retainer-option-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.98) 100%);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  text-align: left;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 46px rgba(15, 27, 45, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.retainer-option-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14) 0%, rgba(37, 99, 235, 0.05) 38%, transparent 70%);
  pointer-events: none;
}

.retainer-option-card::after {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #1e40af 0%, #2563eb 42%, #60a5fa 100%);
}

.retainer-option-card:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 24px 58px rgba(15, 27, 45, 0.13),
    0 0 0 1px rgba(37, 99, 235, 0.08);
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.26);
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.retainer-option-card__badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  min-height: 30px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(37, 99, 235, 0.14);
  position: relative;
  z-index: 1;
}

.retainer-option-card__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f1b2d;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: left;
  position: relative;
  z-index: 1;
}

.retainer-option-card__desc {
  margin: 14px 0 0;
  font-size: 0.9rem;
  line-height: 1.58;
  color: #475569;
  text-align: left !important;
  position: relative;
  z-index: 1;
}

.retainer-option-card__fit {
  margin: 18px 0 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #475569;
  text-align: left !important;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15, 27, 45, 0.04);
  position: relative;
  z-index: 1;
}

.retainer-option-card__fit-label {
  display: block;
  font-weight: 700;
  color: #2563eb;
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.09em;
  margin: 0 0 7px;
  text-transform: uppercase;
  text-align: left;
}

.retainer-option-card__includes-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2563eb;
  text-align: left;
  margin: 20px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 27, 45, 0.08);
  position: relative;
  z-index: 1;
}

.retainer-option-card__includes {
  list-style: none;
  padding: 0;
  margin: 12px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.retainer-option-card__includes li {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 9px;
  align-items: start;
  padding: 0;
  font-size: 0.89rem;
  line-height: 1.5;
  color: #475569;
  text-align: left;
}

.retainer-option-card__includes li::before {
  content: '\2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1;
}

.retainer-option-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 100%;
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
  border: 1px solid rgba(37, 99, 235, 0.3);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.2);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.retainer-option-card__cta:hover,
.retainer-option-card__cta:focus-visible {
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.26);
  transform: translateY(-1px);
}

/* Three-card response row: keep internal sections aligned with the advisory row */
.retainer-option-grid:not(.retainer-option-grid--four) .retainer-option-card {
  display: grid;
  grid-template-rows: auto minmax(44px, auto) minmax(76px, auto) minmax(104px, auto) auto 1fr auto;
}

.retainer-option-grid:not(.retainer-option-grid--four) .retainer-option-card__badge {
  margin-bottom: 0;
}

.retainer-option-grid:not(.retainer-option-grid--four) .retainer-option-card__title {
  display: flex;
  align-items: flex-start;
  margin-top: 22px;
}

.retainer-option-grid:not(.retainer-option-grid--four) .retainer-option-card__desc {
  margin-top: 0;
}

.retainer-option-grid:not(.retainer-option-grid--four) .retainer-option-card__fit {
  align-self: start;
  margin-top: 0;
}

.retainer-option-grid:not(.retainer-option-grid--four) .retainer-option-card__includes-label {
  margin-top: 0;
}

.retainer-option-grid:not(.retainer-option-grid--four) .retainer-option-card__cta {
  margin-top: 0;
}

/* Four-card advisory row: normalize internal rhythm so separators align */
.retainer-option-grid--four .retainer-option-card {
  display: grid;
  grid-template-rows: auto minmax(56px, auto) minmax(104px, auto) minmax(132px, auto) auto 1fr auto;
}

.retainer-option-grid--four .retainer-option-card__badge {
  margin-bottom: 0;
}

.retainer-option-grid--four .retainer-option-card__title {
  display: flex;
  align-items: flex-start;
  margin-top: 22px;
}

.retainer-option-grid--four .retainer-option-card__desc {
  margin-top: 0;
}

.retainer-option-grid--four .retainer-option-card__fit {
  align-self: start;
  margin-top: 0;
  min-height: 132px;
}

.retainer-option-grid--four .retainer-option-card__includes-label {
  margin-top: 0;
}

.retainer-option-grid--four .retainer-option-card__cta {
  margin-top: 0;
}

@media (max-width: 1399px) {
  .retainer-option-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .retainer-option-grid--four .retainer-option-card {
    grid-template-rows: auto minmax(44px, auto) minmax(76px, auto) minmax(104px, auto) auto 1fr auto;
  }

  .retainer-option-grid--four .retainer-option-card__fit {
    min-height: 104px;
  }
}

@media (max-width: 899px) {
  .retainer-support-section .container {
    width: calc(100% - 32px);
  }

  .retainer-group__header {
    margin-bottom: 24px;
    padding-top: 20px;
  }

  .retainer-group__title,
  .retainer-group__intro {
    max-width: 100%;
  }

  .retainer-option-grid,
  .retainer-option-grid--four {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .retainer-option-grid {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .retainer-option-grid--four {
    max-width: none;
    gap: 24px;
  }

  .retainer-option-grid:not(.retainer-option-grid--four) .retainer-option-card {
    display: flex;
    flex-direction: column;
  }

  .retainer-option-grid:not(.retainer-option-grid--four) .retainer-option-card__badge {
    margin-bottom: 22px;
  }

  .retainer-option-grid:not(.retainer-option-grid--four) .retainer-option-card__title {
    display: block;
    margin-top: 0;
  }

  .retainer-option-grid:not(.retainer-option-grid--four) .retainer-option-card__desc {
    margin-top: 14px;
  }

  .retainer-option-grid:not(.retainer-option-grid--four) .retainer-option-card__fit {
    margin-top: 18px;
  }

  .retainer-option-grid:not(.retainer-option-grid--four) .retainer-option-card__includes-label {
    margin-top: 20px;
  }

  .retainer-option-grid:not(.retainer-option-grid--four) .retainer-option-card__cta {
    margin-top: auto;
  }

  .retainer-option-grid--four .retainer-option-card {
    display: flex;
    flex-direction: column;
  }

  .retainer-option-grid--four .retainer-option-card__badge {
    margin-bottom: 22px;
  }

  .retainer-option-grid--four .retainer-option-card__title {
    display: block;
    margin-top: 0;
  }

  .retainer-option-grid--four .retainer-option-card__desc {
    margin-top: 14px;
  }

  .retainer-option-grid--four .retainer-option-card__fit {
    margin-top: 18px;
    min-height: 0;
  }

  .retainer-option-grid--four .retainer-option-card__includes-label {
    margin-top: 20px;
  }

  .retainer-option-grid--four .retainer-option-card__cta {
    margin-top: auto;
  }

  .retainer-option-card {
    padding: 24px 22px 22px;
    text-align: left;
  }

  .retainer-option-card:hover {
    transform: none;
  }

  .retainer-option-card__title,
  .retainer-option-card__desc,
  .retainer-option-card__fit {
    text-align: left;
  }

  .retainer-option-card__fit-label,
  .retainer-option-card__includes-label {
    text-align: left;
  }

  .retainer-option-card__includes {
    align-items: stretch;
    margin-left: 0;
    margin-right: 0;
  }

  .retainer-option-card__includes li {
    justify-content: start;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .retainer-option-grid {
    gap: 24px;
    max-width: 100%;
  }
}

.retainer-commercial-note {
  margin: 32px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
}

.retainer-support-section__cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

@media (max-width: 720px) {
  .retainer-support-section__cta .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* Scope steps section */
.retainer-scope-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.retainer-scope-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: minmax(52px, auto) auto;
  column-gap: 18px;
  row-gap: 10px;
  align-items: start;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(15, 27, 45, 0.06);
  text-align: left;
}

.retainer-scope-step__index {
  grid-column: 1;
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

.retainer-scope-step__title {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  min-height: 52px;
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f1b2d;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: left;
}

.retainer-scope-step__text {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
  text-align: left !important;
  text-wrap: pretty;
}

@media (max-width: 900px) {
  .retainer-scope-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .retainer-scope-step {
    grid-template-columns: 42px 1fr;
    grid-template-rows: minmax(42px, auto) auto;
    column-gap: 16px;
    padding: 24px 22px;
  }

  .retainer-scope-step__index {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 0.8rem;
  }

  .retainer-scope-step__title {
    min-height: 42px;
  }
}

/* Included-in-every-retainer cards */
.retainer-included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.retainer-included-card {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  grid-template-rows: minmax(50px, auto) auto;
  column-gap: 18px;
  row-gap: 8px;
  align-items: start;
  overflow: hidden;
  min-height: 152px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent 36%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  padding: 28px 30px;
  box-shadow: 0 18px 42px rgba(15, 27, 45, 0.07);
}

.retainer-included-card::before {
  content: "01";
  grid-column: 1;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef5ff 0%, #dbeafe 100%);
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.16);
}

.retainer-included-card:nth-child(2)::before {
  content: "02";
}

.retainer-included-card:nth-child(3)::before {
  content: "03";
}

.retainer-included-card:nth-child(4)::before {
  content: "04";
}

.retainer-included-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #2563eb 0%, rgba(96, 165, 250, 0.65) 100%);
}

.retainer-included-card h3 {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  min-height: 46px;
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  color: #0f1b2d;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: left;
}

.retainer-included-card p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: #475569;
  text-align: left;
  text-wrap: pretty;
}

@media (max-width: 720px) {
  .retainer-included-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .retainer-included-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 0;
    padding: 24px 22px 26px;
    border-radius: 16px;
    text-align: center;
  }

  .retainer-included-card::before {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 0.72rem;
    margin-bottom: 8px;
  }

  .retainer-included-card h3 {
    min-height: 0;
    justify-content: center;
    text-align: center;
    margin: 0 0 8px 0;
  }

  .retainer-included-card p {
    max-width: 560px;
    text-align: center !important;
  }
}

/* Leadership section - shared CTA row below the team grid */
.leadership-section__cta-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.leadership-section__cta-row .btn {
  min-width: 280px;
  min-height: 58px;
  padding: 16px 40px;
  font-size: 1.0625rem;
  font-weight: 700;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .leadership-section__cta-row {
    margin-top: 32px;
  }

  .leadership-section__cta-row .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* Defense map - light/white canvas variant
   Scoped overrides over global-defense-grid.css when the map sits on a light surface.
   Engages only when the SVG carries the .is-light modifier. */
.global-map-display.is-light {
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid rgba(15, 27, 45, 0.08);
  padding: 12px;
  box-shadow: 0 1px 0 rgba(15, 27, 45, 0.04) inset, 0 8px 24px rgba(15, 27, 45, 0.06);
}

.global-map-display.is-light .defense-network-map {
  background: transparent;
}

/* Hub label is white in the dark theme; flip it for the light canvas. */
.global-map-display.is-light .defense-network-map .hub-label {
  fill: #0f1b2d;
}

/* Hub shield is solid white in the dark theme; on white it disappears.
   Make it brand blue so a white checkmark inside reads. */
.global-map-display.is-light .defense-network-map .hub-shield-bg {
  fill: #2563eb;
}

.global-map-display.is-light .defense-network-map .hub-shield-border {
  stroke: #1e40af;
}

.global-map-display.is-light .defense-network-map .hub-checkmark {
  stroke: #ffffff;
}

/* Pulse rings on a light canvas need stronger blue to stay visible. */
.global-map-display.is-light .defense-network-map .hub-pulse-ring {
  stroke: #2563eb;
  opacity: 0.9;
}

/* Threat-map decorative elements (added in inline SVG, not previously styled) */
.global-map-display.is-light .threat-arc {
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 6 7;
  opacity: 0.85;
}
.global-map-display.is-light .threat-arc.is-critical { stroke: #dc2626; }
.global-map-display.is-light .threat-arc.is-high     { stroke: #ea580c; }
.global-map-display.is-light .threat-arc.is-intel    { stroke: #2563eb; }
.global-map-display.is-light .threat-arc.is-mitigated{ stroke: #10b981; }

.global-map-display.is-light .threat-origin-ring {
  fill: none;
  stroke-width: 1.4;
  opacity: 0.65;
  transform-origin: center;
  transform-box: fill-box;
}

.global-map-display.is-light .threat-origin-ring.is-critical { stroke: #dc2626; }
.global-map-display.is-light .threat-origin-ring.is-high     { stroke: #ea580c; }
.global-map-display.is-light .threat-origin-ring.is-intel    { stroke: #2563eb; }
.global-map-display.is-light .threat-origin-ring.is-mitigated{ stroke: #10b981; }

.global-map-display.is-light .threat-origin-dot.is-critical { fill: #dc2626; }
.global-map-display.is-light .threat-origin-dot.is-high     { fill: #ea580c; }
.global-map-display.is-light .threat-origin-dot.is-intel    { fill: #2563eb; }
.global-map-display.is-light .threat-origin-dot.is-mitigated{ fill: #10b981; }

.global-map-display.is-light .threat-bead.is-critical  { fill: #dc2626; }
.global-map-display.is-light .threat-bead.is-high      { fill: #ea580c; }
.global-map-display.is-light .threat-bead.is-intel     { fill: #2563eb; }
.global-map-display.is-light .threat-bead.is-mitigated { fill: #10b981; }

.global-map-display.is-light .threat-legend-chip text {
  fill: #475569;
  font-family: ui-monospace, "SFMono-Regular", "Cascadia Mono", Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

/* HUD elements & coordinates on light canvas */
.global-map-display.is-light .map-hud {
  stroke: #2563eb;
  opacity: 0.40;
}
.global-map-display.is-light .map-coords text {
  fill: #475569;
  font-family: ui-monospace, "SFMono-Regular", "Cascadia Mono", Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  opacity: 0.7;
}
.global-map-display.is-light .map-graticule {
  stroke: #94a3b8;
  stroke-dasharray: 2 6;
  opacity: 0.35;
}

/* Pulsing rings on threat origin pings (CSS-driven so the SVG stays clean) */
@keyframes threatRingPulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  70%  { transform: scale(2.2); opacity: 0;   }
  100% { transform: scale(2.2); opacity: 0;   }
}

.global-map-display.is-light .threat-origin-ring.is-anim {
  animation: threatRingPulse 2.6s ease-out infinite;
}
.global-map-display.is-light .threat-origin-ring.is-anim.delay-1 { animation-delay: 0.4s; }
.global-map-display.is-light .threat-origin-ring.is-anim.delay-2 { animation-delay: 0.9s; }
.global-map-display.is-light .threat-origin-ring.is-anim.delay-3 { animation-delay: 1.4s; }
.global-map-display.is-light .threat-origin-ring.is-anim.delay-4 { animation-delay: 1.9s; }
.global-map-display.is-light .threat-origin-ring.is-anim.delay-5 { animation-delay: 2.3s; }

@media (prefers-reduced-motion: reduce) {
  .global-map-display.is-light .threat-origin-ring.is-anim {
    animation: none;
  }
}

/* =====================================================
   EXECUTIVE CYBER BRIEF — hero visual panel
   Replaces decorative hero orb/SVG illustrations with a
   calm, credible "briefing report" preview built in pure
   HTML/CSS. Single dark navy treatment (matching the
   Incident Response panel) on every hero. Scoped names only.
   ===================================================== */
.hero-brief {
  width: min(100%, 520px);
  margin-inline: auto;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  text-align: left;
  border-radius: 16px;
  padding: clamp(20px, 4.5vw, 28px);
  background: linear-gradient(160deg, #0d1b2a 0%, #16243b 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 26px 54px -28px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-brief__header {
  padding-bottom: 16px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-brief__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #93c5fd;
}

.hero-brief__dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.hero-brief__dot--alert {
  background: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.16);
}

.hero-brief__title {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.18rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.hero-brief__rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.hero-brief__row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-brief__row:last-child {
  border-bottom: 0;
  padding-bottom: 4px;
}

.hero-brief__index {
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: #bcd4ff;
  background: rgba(96, 165, 250, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 7px;
  padding: 6px 7px;
}

.hero-brief__label {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.hero-brief__value {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
}

.hero-brief__status {
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: #bcd4ff;
  background: rgba(96, 165, 250, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.30);
  border-radius: 999px;
  padding: 4px 11px;
}

.hero-brief__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.70);
}

.hero-brief__footer-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  color: #bcd4ff;
  background: rgba(96, 165, 250, 0.16);
}

.hero-brief__footer-icon svg {
  width: 13px;
  height: 13px;
}

/* Compact phones — keep the panel readable at 360px */
@media (max-width: 420px) {
  .hero-brief {
    border-radius: 14px;
  }
  .hero-brief__row {
    gap: 10px;
    padding: 11px 0;
  }
  .hero-brief__label {
    font-size: 0.9rem;
  }
  .hero-brief__status {
    padding: 4px 9px;
  }
}


/* ============================================================
   NIS2 quiz — constatari (findings) + punte email + CTA rezultat
   ============================================================ */
.nis2-findings {
  margin: 18px 0 4px;
  padding: 16px 18px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.nis2-findings__title {
  margin: 0 0 10px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-muted);
}

.nis2-finding {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}

.nis2-finding:last-child { border-bottom: none; }

.nis2-finding__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.nis2-finding__dot--red   { background: #dc2626; }
.nis2-finding__dot--amber { background: #d97706; }
.nis2-finding__dot--green { background: #059669; }

.nis2-finding__text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-deep);
}

.nis2-result__bridge {
  margin: 16px 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.nis2-result__cta {
  margin-top: 20px;
  padding: 20px;
  background: var(--gradient-hero);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
}

.nis2-result__cta-intro {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-deep);
}

/* CTA de booking de pe rezultat: aceeasi dimensiune cu butonul "Trimite rezultatul"
   ca sa nu para mai mic. */
.nis2-result__cta-btn {
  display: inline-flex;
  min-width: 260px;
  min-height: 58px;
  font-size: 1rem;
  font-weight: 800;
}

@media (max-width: 640px) {
  .nis2-result__cta-btn {
    width: 100%;
    min-height: 64px;
    font-size: 1.05rem;
  }
}

/* ============================================================
   Card "Primeste rezultatul pe email" — accentuat (brand)
   ca sa iasa in evidenta fata de restul paginii.
   ============================================================ */
.nis2-contact-form .nis2-question {
  background: var(--gradient-hero);
  border: 1px solid var(--brand-border, var(--color-border));
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-card);
}

.nis2-contact-form .nis2-question__title {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* iconita de plic inaintea titlului */
.nis2-contact-form .nis2-question__title::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background-color: var(--color-accent);
  -webkit-mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-10 5L2 7'/%3E%3C/svg%3E");
  mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-10 5L2 7'/%3E%3C/svg%3E");
}

/* input-urile pe fundalul accentuat raman albe, ca sa fie clare */
.nis2-contact-form .nis2-field input {
  background: #ffffff;
}

/* Separator "sau" intre formularul de email si CTA-ul de booking (alternativa) */
.nis2-or {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 4px;
  color: var(--color-muted);
}

.nis2-or::before,
.nis2-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.nis2-or__label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
