/*
Theme Name: MedoraCare
Theme URI: https://medoracare.de
Description: Internationale Ärztegewinnung — Produzierendes Landing Page Theme
Version: 2.3.77
Author: MedoraCare
Text Domain: medoracare
*/

/* ═══════════════════════════════════════════════
   0. CSS CUSTOM PROPERTIES (Design Tokens)
   ═══════════════════════════════════════════════ */
:root {
  /* ── Colors ── */
  --white:       #FFFFFF;
  --off-white:   #FAFBFD;
  --gray-50:     #F7F8FA;
  --gray-100:    #F1F3F5;
  --gray-200:    #E9ECEF;
  --gray-300:    #DEE2E6;
  --gray-400:    #ADB5BD;
  --gray-500:    #868E96;
  --gray-600:    #6C757D;
  --gray-700:    #495057;
  --gray-800:    #343A40;
  --gray-900:    #212529;

  --navy-900:    #0B1D3A;
  --navy-800:    #0F2847;
  --navy-700:    #14325A;
  --navy-600:    #1A5298;
  --navy-500:    #2563A8;
  --navy-400:    #4A8FE7;
  --navy-100:    #E8F0FE;

  --orange-500:  #F97316;
  --orange-600:  #EA6C0B;
  --orange-400:  #FB923C;
  --orange-100:  #FFF7ED;
  --orange-50:   #FFFBF5;

  --gold-500:    #D4A843;
  --gold-600:    #B8922E;
  --gold-100:    #FDF8E8;

  --green-500:   #22C55E;
  --green-100:   #F0FDF4;

  /* ── Typography ── */
  --font-heading: 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --fs-h1:  clamp(2rem, 5vw, 3.5rem);
  --fs-h2:  clamp(1.625rem, 3.5vw, 2.5rem);
  --fs-h3:  clamp(1.125rem, 2vw, 1.375rem);
  --fs-body: clamp(0.9375rem, 1.2vw, 1.0625rem);
  --fs-small: 0.875rem;
  --fs-xs:    0.8125rem;

  --lh-heading: 1.2;
  --lh-body:    1.7;

  /* ── Spacing ── */
  --section-py:    clamp(80px, 10vw, 140px);
  --section-py-sm: clamp(60px, 8vw, 100px);
  --container-max: 1200px;
  --container-px:  clamp(20px, 4vw, 40px);
  --card-radius:   16px;
  --btn-radius:    12px;

  /* ── Shadows ── */
  --shadow-sm:  0 1px 3px rgba(11,29,58,0.06);
  --shadow-md:  0 4px 16px rgba(11,29,58,0.08);
  --shadow-lg:  0 8px 32px rgba(11,29,58,0.10);
  --shadow-xl:  0 16px 48px rgba(11,29,58,0.12);

  /* ── Transitions ── */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.3s;
}


/* ═══════════════════════════════════════════════
   1. RESET & BASE
   ═══════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 11px 16px;
  border-radius: 7px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(241, 102, 35, 0.65);
  outline-offset: 3px;
}

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

a {
  color: var(--navy-600);
  text-decoration: none;
  transition: color var(--duration) var(--ease-out);
}
a:hover {
  color: var(--navy-400);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--lh-heading);
  color: var(--navy-900);
}

h1 { font-size: var(--fs-h1); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: var(--fs-h3); font-weight: 600; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { list-style: none; }

::selection {
  background: var(--navy-100);
  color: var(--navy-900);
}


/* ═══════════════════════════════════════════════
   2. LAYOUT
   ═══════════════════════════════════════════════ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(48px, 5vw, 72px);
}

.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy-600);
  margin-bottom: 12px;
}

.section-sub {
  font-size: var(--fs-body);
  color: var(--gray-600);
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════
   3. BUTTONS
   ═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-body);
  padding: 16px 32px;
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}
.btn-primary:hover {
  background: var(--orange-600);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(249,115,22,0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--navy-700);
  border: 2px solid var(--gray-200);
}
.btn-secondary:hover {
  border-color: var(--navy-600);
  color: var(--navy-600);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 20px 40px;
  font-size: 1.0625rem;
  border-radius: 14px;
}


/* ═══════════════════════════════════════════════
   4. NAVIGATION
   ═══════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--duration) var(--ease-out);
}

.site-nav.scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo-img {
  height: 36px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all var(--duration) var(--ease-out);
}
.nav-link:hover {
  color: var(--navy-900);
  background: var(--gray-50);
}

.nav-cta {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--white);
  background: var(--orange-500);
  padding: 10px 24px;
  border-radius: 10px;
  margin-left: 8px;
  transition: all var(--duration) var(--ease-out);
  box-shadow: 0 2px 8px rgba(249,115,22,0.25);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--orange-600);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(249,115,22,0.35);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: all 0.3s;
}


/* ═══════════════════════════════════════════════
   5. HERO SECTION
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background: var(--white);
}

/* Animated gradient mesh background */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 80%;
  height: 120%;
  background: 
    radial-gradient(ellipse 600px 600px at 70% 30%, rgba(26,82,152,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 400px 400px at 90% 60%, rgba(249,115,22,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 500px 500px at 40% 80%, rgba(74,143,231,0.03) 0%, transparent 50%);
  animation: heroMesh 20s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroMesh {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-30px, 20px) scale(1.05); }
  100% { transform: translate(20px, -10px) scale(1); }
}

/* Floating geometric shapes */
.hero::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 8%;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(26,82,152,0.06);
  border-radius: 50%;
  animation: heroFloat 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 48px 40px;
  background: radial-gradient(circle at 0% 50%, rgba(11, 29, 58, 0.75) 0%, rgba(11, 29, 58, 0.4) 60%, transparent 100%);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  font-weight: 800;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange-400);
}

.hero-tagline {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-sub {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Animated dots */
.hero-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0.15;
  animation: dotPulse 4s ease-in-out infinite;
}
.hero-dot:nth-child(1) { top: 20%; right: 15%; background: var(--navy-600); animation-delay: 0s; }
.hero-dot:nth-child(2) { top: 40%; right: 25%; background: var(--orange-500); animation-delay: 1s; width: 8px; height: 8px; }
.hero-dot:nth-child(3) { top: 60%; right: 10%; background: var(--navy-400); animation-delay: 2s; width: 5px; height: 5px; }
.hero-dot:nth-child(4) { top: 30%; right: 35%; background: var(--navy-600); animation-delay: 0.5s; width: 4px; height: 4px; }
.hero-dot:nth-child(5) { top: 70%; right: 30%; background: var(--orange-400); animation-delay: 1.5s; }
.hero-dot:nth-child(6) { top: 50%; right: 5%; background: var(--navy-500); animation-delay: 3s; width: 7px; height: 7px; }

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(2); opacity: 0.3; }
}


/* ═══════════════════════════════════════════════
   6. PARTNER LOGOS
   ═══════════════════════════════════════════════ */
.partners {
  background: #F4F6F8;
  padding: 32px 0;
  border-top: 1px solid rgba(10, 35, 66, 0.08);
  border-bottom: 1px solid rgba(10, 35, 66, 0.08);
}

.partners-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 4fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.partners-intro {
  padding-right: 28px;
  border-right: 1px solid rgba(10, 35, 66, 0.12);
}

.partners-intro::before {
  content: '';
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 11px;
  background: var(--orange-500);
}

.partners-label {
  max-width: 190px;
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
}

.partners-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
}

.partner-item {
  display: flex;
  min-width: 0;
  min-height: 74px;
  padding: 12px 14px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 35, 66, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  transition: border-color var(--duration) var(--ease-out), background var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.partner-item:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 35, 66, 0.16);
  background: var(--white);
}

.partner-logo {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 42px;
  opacity: 0.68;
  filter: grayscale(100%);
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: opacity var(--duration) var(--ease-out), filter var(--duration) var(--ease-out);
}

.partner-logo-wegweiser {
  max-height: 58px;
}

.partner-item:hover .partner-logo,
.partner-item:hover > img {
  opacity: 0.9;
  filter: grayscale(0%);
}

.partner-item-named {
  gap: 9px;
  justify-content: flex-start;
}

.partner-item-named img {
  max-width: 38px;
  height: 38px;
  flex: 0 0 auto;
  opacity: 0.72;
  filter: grayscale(70%);
  width: auto;
  object-fit: contain;
}

.partner-item-named span {
  color: #526176;
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .partners-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .partners-intro {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 35, 66, 0.1);
  }

  .partners-label {
    max-width: none;
  }

  .partner-item-named {
    min-height: 84px;
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .partner-item-named span {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 768px) {
  .partners {
    padding: 26px 0;
  }

  .partners-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-item {
    min-height: 70px;
    padding: 10px;
  }

  .partner-item-named {
    gap: 7px;
  }

  .partner-item-named span {
    font-size: 0.62rem;
  }

  .partners-track > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 5px);
    justify-self: center;
  }
}

/* ═══════════════════════════════════════════════
   7. HERAUSFORDERUNG (Challenge)
   ═══════════════════════════════════════════════ */
.challenge {
  padding: clamp(76px, 8vw, 118px) 0;
  background: var(--white);
}

.challenge-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(60px, 8vw, 118px);
  align-items: start;
}

.challenge-heading-wrap {
  position: relative;
  padding-top: 20px;
}

.challenge-accent {
  display: block;
  width: 48px;
  height: 3px;
  margin-bottom: 26px;
  background: var(--orange-500);
}

.challenge-headline {
  max-width: 590px;
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.1rem, 3.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.challenge-content {
  min-width: 0;
}

.challenge-points {
  margin: 0;
  border-top: 1px solid rgba(10, 35, 66, 0.16);
}

.challenge-point {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 27px 0;
  border-bottom: 1px solid rgba(10, 35, 66, 0.12);
  color: #526176;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.58;
}

.challenge-point-number {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 87, 145, 0.2);
  border-radius: 50%;
  color: var(--navy-600);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.challenge-resolution {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 3px solid var(--orange-500);
  background: #F4F6F8;
}

.challenge-resolution-mark {
  color: var(--orange-500);
  font-size: 1.45rem;
  line-height: 1;
}

.challenge-cta-text {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  font-weight: 750;
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .challenge-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .challenge-headline {
    max-width: 760px;
  }
}

@media (max-width: 600px) {
  .challenge {
    padding: 68px 0;
  }

  .challenge-shell {
    gap: 36px;
  }

  .challenge-heading-wrap {
    padding-top: 0;
  }

  .challenge-accent {
    margin-bottom: 20px;
  }

  .challenge-headline {
    font-size: clamp(2rem, 9.5vw, 2.65rem);
  }

  .challenge-point {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 0;
  }

  .challenge-point-number {
    width: 30px;
    height: 30px;
  }

  .challenge-resolution {
    padding: 19px 18px;
  }
}

/* ═══════════════════════════════════════════════
   8. WARUM MEDORACARE (Why Us — 6 Cards)
   ═══════════════════════════════════════════════ */
.why-us {
  padding: clamp(76px, 7vw, 104px) 0;
  background: #F4F6F8;
}

.why-us-layout {
  display: block;
}

.why-us-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(56px, 7vw, 104px);
  align-items: end;
  margin-bottom: clamp(44px, 5vw, 64px);
}

.why-us-heading-group {
  min-width: 0;
}

.why-us-accent {
  display: block;
  width: 48px;
  height: 3px;
  margin-bottom: 26px;
  background: var(--orange-500);
}

.why-us-copy .section-header {
  margin: 0 0 28px;
  text-align: left;
}

.why-us-copy .section-header h2 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(2.15rem, 3.25vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  hyphens: auto;
  overflow-wrap: break-word;
}

.why-us-intro {
  max-width: 620px;
  margin: 0;
  padding-left: 22px;
  border-left: 1px solid rgba(10, 35, 66, 0.16);
  color: #5A687B;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.72;
}

.why-us-intro p {
  margin: 0;
}

.why-us-intro p + p {
  margin-top: 18px;
}

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

.why-card {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 23px 23px 25px;
  border: 1px solid rgba(10, 35, 66, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  transition: border-color var(--duration) var(--ease-out), background var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 0;
  width: 2px;
  height: 36px;
  background: var(--orange-500);
  opacity: 0.55;
}

.why-card:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 35, 66, 0.17);
  background: var(--white);
}

.why-card-featured {
  background: #EDF2F6;
  border-color: rgba(16, 87, 145, 0.12);
}

.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.why-card-icon {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 87, 145, 0.15);
  border-radius: 50%;
  background: var(--white);
}

.why-card-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--navy-600);
}

.why-card-number {
  color: rgba(10, 35, 66, 0.34);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.why-card-title {
  margin-bottom: 7px;
  color: var(--navy-900);
  font-size: clamp(1.04rem, 1.25vw, 1.2rem);
  line-height: 1.25;
}

.why-card-subtitle {
  margin-bottom: 13px;
  color: var(--navy-600);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.why-card-text {
  margin: 0;
  color: #5E6C7E;
  font-size: 0.84rem;
  line-height: 1.62;
}

@media (max-width: 1120px) {
  .why-us-copy {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 48px;
  }

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

  .why-us-copy .section-header h2,
  .why-us-intro {
    max-width: 760px;
  }
}

@media (max-width: 768px) {
  .why-us {
    padding: 72px 0;
  }

  .why-us-copy .section-header h2 {
    font-size: clamp(2rem, 9.5vw, 2.7rem);
  }

  .why-us-intro {
    padding-left: 17px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: 0;
    padding: 24px 22px 26px;
  }
}


/* ═══════════════════════════════════════════════
   9. QUALITÄTSSTANDARDS (Quality Seals)
   ═══════════════════════════════════════════════ */
.quality {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.quality-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 5vw, 64px);
  font-size: var(--fs-body);
  color: var(--gray-600);
  line-height: 1.8;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.quality-seal {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 32px 20px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--duration) var(--ease-out);
  position: relative;
}

.quality-seal:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold-500);
}

/* German quality seal badge */
.seal-badge {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seal-badge img {
  filter: drop-shadow(0 4px 8px rgba(11,29,58,0.1));
  transition: transform var(--duration) var(--ease-spring);
}

.quality-seal:hover .seal-badge img {
  transform: scale(1.1) rotate(5deg);
}

.seal-title {
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.seal-text {
  font-size: var(--fs-xs);
  color: var(--gray-600);
  line-height: 1.6;
}

.quality-footer {
  text-align: center;
  margin-top: clamp(40px, 4vw, 56px);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--navy-900);
}


/* ═══════════════════════════════════════════════
   10. LÖSUNGEN (Solutions — 3 Format Cards)
   ═══════════════════════════════════════════════ */
.solutions {
  padding: clamp(68px, 6vw, 88px) 0;
  background: var(--white);
}

.solutions-header {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: clamp(44px, 6vw, 82px);
  align-items: end;
  margin-bottom: clamp(36px, 4vw, 48px);
  text-align: left;
}

.solutions-header h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.15rem, 3.25vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.solutions-header .section-sub {
  max-width: 500px;
  margin: 0;
  padding-left: 22px;
  border-left: 2px solid var(--orange-500);
  text-align: left;
}

.solutions-list {
  border-top: 1px solid rgba(10, 35, 66, 0.14);
}

.solution-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(145px, 0.42fr) minmax(0, 1.25fr) minmax(230px, 0.72fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: center;
  padding: 26px 22px;
  border-bottom: 1px solid rgba(10, 35, 66, 0.12);
  background: transparent;
  transition: background var(--duration) var(--ease-out), padding var(--duration) var(--ease-out);
}

.solution-card:hover {
  padding-right: 28px;
  padding-left: 28px;
  background: #F7F9FB;
}

.solution-card-meta {
  align-self: start;
}

.solution-card-number {
  display: block;
  margin-bottom: 18px;
  color: rgba(10, 35, 66, 0.35);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.solution-card-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--navy-700);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.solution-card-label::before {
  content: '';
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--navy-600);
}

.solution-card:nth-child(1) .solution-card-label::before {
  background: #3F8C70;
}

.solution-card:nth-child(3) .solution-card-label::before {
  background: var(--orange-500);
}

.solution-card-title {
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
  line-height: 1.25;
}

.solution-card-text {
  max-width: 650px;
  margin: 0;
  color: #5D6B7E;
  font-size: 0.92rem;
  line-height: 1.65;
}

.solution-card-ideal {
  margin: 0;
  padding-left: 22px;
  border-left: 1px solid rgba(10, 35, 66, 0.14);
  color: var(--navy-700);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.55;
}

.solution-card-ideal span {
  display: block;
  margin-bottom: 6px;
  color: #8390A1;
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solutions-footer {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding: 22px 26px;
  border-left: 3px solid var(--orange-500);
  background: #F4F6F8;
  text-align: left;
}

.solutions-footer-text {
  max-width: 690px;
  margin: 0;
  color: #536176;
  font-size: 0.96rem;
  line-height: 1.65;
}

.solutions-footer .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .solutions-header {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .solution-card {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 24px 36px;
  }

  .solution-card-ideal {
    grid-column: 2;
    padding: 16px 0 0;
    border-top: 1px solid rgba(10, 35, 66, 0.1);
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .solutions {
    padding: 72px 0;
  }

  .solutions-header h2 {
    font-size: clamp(2rem, 9.5vw, 2.7rem);
  }

  .solution-card,
  .solution-card:hover {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 0;
  }

  .solution-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .solution-card-number {
    margin: 0;
  }

  .solution-card-ideal {
    grid-column: auto;
  }

  .solutions-footer {
    display: block;
    padding: 24px 22px;
  }

  .solutions-footer .btn {
    width: 100%;
    margin-top: 22px;
    padding: 16px 18px;
    line-height: 1.3;
    white-space: normal;
    text-align: center;
  }
}


/* ═══════════════════════════════════════════════
   11. TEAM
   ═══════════════════════════════════════════════ */
.team {
  padding: var(--section-py) 0;
  background: #F4F6F8;
}

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

.team-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--duration) var(--ease-out);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.team-card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.team-card-photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-600);
}

.team-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px 25px 24px;
}

.team-card-name {
  font-size: var(--fs-h3);
  color: var(--navy-900);
  margin-bottom: 4px;
}

.team-card-role {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--navy-600);
  margin-bottom: 12px;
}

.team-contact {
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 35, 66, 0.1);
}

.team-contact a {
  display: inline-flex;
  width: fit-content;
  gap: 8px;
  align-items: center;
  color: var(--navy-700);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.4;
  transition: color var(--duration) var(--ease-out);
}

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

.team-contact svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-linkedin {
  display: inline-flex;
  width: fit-content;
  margin-top: 15px;
  padding: 8px 12px;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(10, 102, 194, 0.15);
  border-radius: 999px;
  background: #F2F7FB;
  color: #0A66C2;
  font-size: 0.74rem;
  font-weight: 700;
  transition: color var(--duration) var(--ease-out), border-color var(--duration) var(--ease-out), background var(--duration) var(--ease-out);
}

.team-linkedin svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-linkedin:hover {
  border-color: rgba(10, 102, 194, 0.28);
  background: #E8F2FA;
  color: #084E96;
}


/* ═══════════════════════════════════════════════
   12. FAQ ACCORDION
   ═══════════════════════════════════════════════ */
.faq {
  padding: clamp(82px, 8vw, 118px) 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(580px, 1.38fr);
  gap: clamp(64px, 9vw, 132px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 126px;
}

.faq-accent {
  display: block;
  width: 48px;
  height: 3px;
  margin-bottom: 26px;
  background: var(--orange-500);
}

.faq-heading .section-header {
  margin: 0;
  text-align: left;
}

.faq-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.faq-list {
  max-width: none;
  margin: 0;
  border-top: 1px solid rgba(10, 35, 66, 0.15);
  counter-reset: faq-item;
}

.faq-item {
  counter-increment: faq-item;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(10, 35, 66, 0.12);
  border-radius: 0;
  overflow: hidden;
  transition: background var(--duration) var(--ease-out);
}

.faq-item:hover {
  background: #FAFBFC;
}

.faq-item.active {
  border-color: rgba(10, 35, 66, 0.12);
  background: #F6F8FA;
  box-shadow: none;
}

.faq-question {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 18px;
  padding: 25px 18px;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-weight: 650;
  color: var(--navy-900);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  line-height: 1.5;
}

.faq-question::before {
  content: counter(faq-item, decimal-leading-zero);
  color: #8B97A7;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.faq-question:hover {
  color: var(--navy-700);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(10, 35, 66, 0.1);
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--navy-600);
  transition: transform var(--duration);
}

.faq-item.active .faq-icon {
  border-color: rgba(241, 102, 35, 0.24);
  background: #FFF4ED;
}

.faq-item.active .faq-icon svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer-inner {
  max-width: 690px;
  padding: 0 56px 26px 74px;
  color: #5D6B7E;
  font-size: 0.9rem;
  line-height: 1.72;
}

.faq-answer-inner p {
  margin-bottom: 12px;
}

.faq-answer-inner ul {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-answer-inner li {
  padding-left: 20px;
  position: relative;
}
.faq-answer-inner li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--navy-600);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 600px) {
  .faq {
    padding: 72px 0;
  }

  .faq-question {
    grid-template-columns: 28px minmax(0, 1fr) 32px;
    gap: 12px;
    padding: 22px 4px;
  }

  .faq-answer-inner {
    padding: 0 36px 24px 44px;
  }
}


/* ═══════════════════════════════════════════════
   13. FINAL CTA
   ═══════════════════════════════════════════════ */
.final-cta {
  padding: var(--section-py) 0;
  background: var(--white);
}

.final-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-headline {
  font-size: var(--fs-h2);
  color: var(--navy-900);
  margin-bottom: 16px;
}

.final-cta-sub {
  font-size: var(--fs-body);
  color: var(--gray-600);
  margin-bottom: 48px;
  line-height: 1.7;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 28px;
}

.final-cta-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: left;
}

.final-cta-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--fs-small);
  color: var(--gray-700);
  line-height: 1.6;
}

.final-cta-check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.final-cta-check-icon svg {
  width: 12px;
  height: 12px;
  fill: var(--green-500);
}

.final-cta-meta {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
}


/* ═══════════════════════════════════════════════
   14. FOOTER
   ═══════════════════════════════════════════════ */
.site-footer {
  padding: 36px 0 20px;
  border-top: 1px solid rgba(10, 35, 66, 0.1);
  background: var(--white);
}

.footer-container {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(210px, 0.8fr) minmax(230px, 0.8fr);
  column-gap: clamp(40px, 7vw, 100px);
  row-gap: 20px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo-img {
  height: 36px;
  width: auto;
}

.footer-brand p {
  max-width: 330px;
  margin: 12px 0 0;
  color: #5B687A;
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-label {
  margin: 2px 0 14px;
  color: #8A96A8;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact {
  display: grid;
  align-content: start;
}

.footer-contact a {
  width: fit-content;
  margin-bottom: 8px;
  color: var(--navy-800);
  font-size: 0.88rem;
  font-weight: 650;
  transition: color var(--duration);
}

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

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #5B687A;
  font-size: 0.86rem;
  transition: color var(--duration);
}
.footer-links a:hover {
  color: var(--orange-600);
}

.footer-copy {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 20px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 35, 66, 0.09);
  color: #8A96A8;
  font-size: 0.72rem;
}


/* ═══════════════════════════════════════════════
   16. SCROLL ANIMATIONS
   ═══════════════════════════════════════════════ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for grid children */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }


/* ═══════════════════════════════════════════════
   17. CTA FORM (Kontakt section)
   ═══════════════════════════════════════════════ */
.cta-section {
  padding: var(--section-py) 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.cta-left h2 {
  font-size: var(--fs-h2);
  margin-bottom: 16px;
}

.cta-left > p {
  color: var(--gray-600);
  margin-bottom: 32px;
}

.cta-form {
  display: flex;
  gap: 12px;
}

.cta-input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--navy-900);
  background: var(--white);
  transition: border-color var(--duration);
  outline: none;
}
.cta-input:focus {
  border-color: var(--navy-400);
}
.cta-input::placeholder {
  color: var(--gray-400);
}

.cta-btn {
  padding: 14px 28px;
  background: var(--orange-500);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-body);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--duration) var(--ease-out);
  box-shadow: 0 2px 8px rgba(249,115,22,0.25);
}
.cta-btn:hover {
  background: var(--orange-600);
  box-shadow: 0 4px 14px rgba(249,115,22,0.35);
  transform: translateY(-1px);
}

.cta-info {
  margin-top: 20px;
  font-size: var(--fs-small);
  color: var(--gray-500);
}
.cta-info a {
  color: var(--navy-600);
  font-weight: 500;
}

.cta-form-container.cta-form-submitted .cta-form { display: none; }
.cta-success-msg {
  display: none;
  padding: 20px;
  background: var(--green-100);
  border-radius: 12px;
  color: var(--green-500);
  font-weight: 600;
}
.cta-form-container.cta-form-submitted .cta-success-msg { display: block; }

/* Booking widget */
.cta-bookings-wrapper {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--card-radius);
  overflow: hidden;
}

.cta-bookings-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-200);
}

.cta-bookings-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-bookings-header strong {
  display: block;
  font-size: var(--fs-small);
  color: var(--navy-900);
}
.cta-bookings-header span {
  font-size: var(--fs-xs);
  color: var(--gray-500);
}

.cta-calendly-iframe {
  width: 100%;
  min-height: 480px;
  border: 0;
}

.cta-bookings-footer {
  padding: 12px 24px;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}
.cta-bookings-link {
  font-size: var(--fs-xs);
  color: var(--navy-600);
  font-weight: 500;
}


/* ═══════════════════════════════════════════════
   18. STICKY CTA BAR
   ═══════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy-900);
  padding: 14px 0;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-cta-text {
  color: rgba(255,255,255,0.8);
  font-size: var(--fs-small);
}
.sticky-cta-text strong {
  color: var(--white);
}

.sticky-cta .btn-primary {
  padding: 10px 24px;
  font-size: var(--fs-small);
}


/* ═══════════════════════════════════════════════
   19. RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solutions-grid .solution-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid .team-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
  }

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

@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 40px;
    gap: 4px;
    box-shadow: var(--shadow-xl);
    transition: right 0.35s var(--ease-out);
    z-index: 999;
  }

  .nav-menu.mc-menu-open {
    right: 0;
  }

  .nav-link,
  .nav-cta {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 10px;
    display: block;
  }

  .nav-cta {
    text-align: center;
    margin-left: 0;
    margin-top: 12px;
  }

  .menu-toggle {
    display: flex;
  }
  .menu-toggle.mc-is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.mc-is-active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.mc-is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-content {
    padding: 40px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Grids → single column */
  .why-us-grid,
  .quality-grid,
  .solutions-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .solutions-grid .solution-card:last-child,
  .team-grid .team-card:last-child {
    max-width: 100%;
    grid-column: auto;
  }

  /* Final CTA checklist */
  .final-cta-checklist {
    grid-template-columns: 1fr;
  }

  /* Partners */
  .partners-track {
    gap: 24px;
  }

  /* Sticky CTA */
  .sticky-cta-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .sticky-cta .btn-primary {
    width: 100%;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  /* CTA form */
  .cta-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .quality-seal {
    padding: 24px 16px;
  }

  .seal-badge {
    width: 56px;
    height: 56px;
  }

  .seal-badge-inner {
    width: 44px;
    height: 44px;
  }

  .nav-container {
    height: 64px;
  }
}

/* ═══════════════════════════════════════════════
   20. PRINT STYLES
   ═══════════════════════════════════════════════ */
@media print {
  .site-nav,
  .sticky-cta,
  .hero-dots {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
  }

  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ═══════════════════════════════════════════════
   21. REFINED CLINICAL LANDING PAGE
   ═══════════════════════════════════════════════ */
:root {
  --orange-500: #E9682A;
  --orange-600: #CE5520;
  --navy-900: #0A2342;
  --navy-800: #123459;
  --navy-600: #1E5A91;
  --gray-50: #F6F8FA;
  --card-radius: 14px;
  --shadow-md: 0 12px 34px rgba(10, 35, 66, 0.08);
  --shadow-lg: 0 20px 54px rgba(10, 35, 66, 0.11);
}

body {
  color: #405065;
}

.site-nav {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(10, 35, 66, 0.08);
}

.nav-container {
  height: 76px;
}

.nav-link {
  color: #3C4B5E;
}

.nav-cta,
.btn-primary {
  box-shadow: none;
}

.nav-cta:hover,
.btn-primary:hover {
  box-shadow: 0 8px 22px rgba(206, 85, 32, 0.22);
}

/* Bright, editorial hero with the motion contained in one visual panel. */
.hero {
  min-height: min(880px, 100vh);
  padding: 132px 0 72px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFCFE 100%);
}

.hero::before {
  top: -20%;
  right: -15%;
  width: 64%;
  height: 100%;
  background: radial-gradient(circle at 60% 42%, rgba(30, 90, 145, 0.08), transparent 62%);
  animation: none;
}

.hero::after,
.hero-dots {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 650px;
  padding: 0;
  background: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--navy-600);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--orange-500);
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--navy-900);
  font-size: clamp(2.55rem, 4.7vw, 4.65rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-shadow: none;
}

.hero-tagline {
  max-width: 590px;
  margin-bottom: 12px;
  color: var(--navy-800);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  font-weight: 650;
  line-height: 1.55;
  text-shadow: none;
}

.hero-sub {
  margin-bottom: 34px;
  color: #657287;
  line-height: 1.7;
  text-shadow: none;
}

.hero-actions {
  align-items: center;
  gap: 24px;
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-800);
  font-size: var(--fs-small);
  font-weight: 700;
}

.hero-text-link span {
  color: var(--orange-500);
  font-size: 1.1rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid #E3E8EE;
}

.hero-proof span {
  position: relative;
  padding-left: 18px;
  color: #536176;
  font-size: 0.78rem;
  font-weight: 650;
}

.hero-proof span::before {
  content: '';
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 2px solid var(--navy-600);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(10, 35, 66, 0.12);
  border-radius: 20px;
  background: var(--navy-900);
  box-shadow: 0 30px 70px rgba(10, 35, 66, 0.18);
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  opacity: 0.84;
}

.hero-visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 52, 0.04) 25%, rgba(7, 27, 52, 0.82) 100%);
}

.hero-process-card {
  position: absolute;
  right: 38px;
  bottom: 34px;
  left: 38px;
  z-index: 3;
  color: var(--white);
}

.hero-process-kicker {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-process-list li {
  position: relative;
  padding: 16px 12px 0 0;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-process-list li::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-500);
}

.hero-process-list span {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.67rem;
}

.team-card,
.faq-item,
.quality-seal {
  border-color: rgba(10, 35, 66, 0.1);
}

.team-card:hover,
.quality-seal:hover {
  transform: translateY(-3px);
}

.quality {
  background: #F4F7FA;
}

.quality-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(64px, 8vw, 112px);
  align-items: start;
}

.quality-copy {
  position: sticky;
  top: 132px;
  padding-top: 10px;
}

.quality-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--navy-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quality-kicker::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange-500);
}

.quality-copy h2 {
  max-width: 490px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.quality-copy .quality-intro {
  max-width: 510px;
  margin: 0 0 38px;
  color: #5E6C80;
  font-size: var(--fs-body);
  line-height: 1.75;
  text-align: left;
}

.quality-promise {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  max-width: 500px;
  padding: 24px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--white);
}

.quality-promise-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.quality-promise-icon svg {
  width: 17px;
  height: 17px;
  fill: #93D8B2;
}

.quality-promise p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.65;
}

.quality-standards {
  overflow: hidden;
  border: 1px solid rgba(10, 35, 66, 0.1);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(10, 35, 66, 0.07);
}

.quality-standard {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  align-items: start;
  padding: 28px 32px;
  border-bottom: 1px solid #E4E9EF;
  transition: background var(--duration) var(--ease-out);
}

.quality-standard:last-child {
  border-bottom: 0;
}

.quality-standard:hover {
  background: #F8FAFC;
}

.quality-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #EAF1F8;
  color: var(--navy-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.quality-standard h3 {
  margin-bottom: 6px;
  color: var(--navy-900);
  font-size: 1rem;
  font-weight: 750;
}

.quality-standard p {
  max-width: 520px;
  margin: 0;
  color: #617086;
  font-size: 0.84rem;
  line-height: 1.65;
}

.team-card-photo {
  aspect-ratio: 4 / 3;
}

.team-card-photo img {
  object-position: center 18%;
}

.faq {
  background: var(--white);
}

/* Conversion-focused final section and real inquiry form. */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 8vw, 118px) 0;
  border-top: 1px solid rgba(10, 35, 66, 0.08);
  background: #F4F6F8;
}

.final-cta::before {
  display: none;
}

.final-cta-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.72fr);
  gap: clamp(52px, 7vw, 100px);
  align-items: start;
}

.final-cta-inner {
  max-width: none;
  margin: 0;
  padding-top: 12px;
  text-align: left;
}

.final-cta-accent {
  display: block;
  width: 48px;
  height: 3px;
  margin-bottom: 26px;
  background: var(--orange-500);
}

.final-cta-headline,
.final-cta-subtitle {
  color: var(--navy-900);
}

.final-cta-headline {
  max-width: 680px;
  font-size: clamp(2.15rem, 3.6vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.final-cta-sub {
  max-width: 610px;
  margin: 0 0 36px;
  color: #5D6B7E;
}

.final-cta-checklist {
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 620px;
  margin: 0 0 34px;
}

.final-cta-check {
  color: #536176;
}

.final-cta-check-icon {
  border: 1px solid rgba(241, 102, 35, 0.16);
  background: #FFF3EB;
}

.final-cta-check-icon svg {
  fill: var(--orange-500);
}

.final-cta-meta {
  display: inline-flex;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(10, 35, 66, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #657287;
}

.contact-card {
  padding: clamp(30px, 3.5vw, 40px);
  border: 1px solid rgba(10, 35, 66, 0.1);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(10, 35, 66, 0.08);
}

.contact-card-kicker {
  margin-bottom: 8px;
  color: var(--orange-500);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
}

.contact-card-intro {
  margin-bottom: 28px;
  color: #657287;
  font-size: var(--fs-small);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 14px;
}

.form-field-wide,
.form-consent,
.contact-submit {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-900);
  font-size: 0.76rem;
  font-weight: 750;
}

.form-field label span {
  color: var(--orange-500);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #D8DEE6;
  border-radius: 8px;
  outline: none;
  background: #FBFCFD;
  color: var(--navy-900);
  font: inherit;
  font-size: 0.9rem;
  transition: border-color var(--duration), box-shadow var(--duration), background var(--duration);
}

.form-field textarea {
  resize: vertical;
  min-height: 92px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--orange-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(241, 102, 35, 0.1);
}

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: #657287;
  font-size: 0.7rem;
  line-height: 1.55;
  cursor: pointer;
}

.form-consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--orange-500);
}

.form-consent a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-submit {
  width: 100%;
  margin-top: 2px;
  padding: 17px 24px;
  border-radius: 9px;
}

.appointment-booking {
  display: inline-flex;
  justify-content: center;
  text-align: center;
}

.final-cta-simple {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-simple .final-cta-accent {
  margin-right: auto;
  margin-left: auto;
}

.final-cta-simple .final-cta-headline {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}

.final-cta-simple .final-cta-sub {
  max-width: 760px;
  margin: 0 auto 32px;
}

.final-cta-booking {
  min-width: min(100%, 340px);
}

.final-cta-simple .final-cta-meta {
  display: flex;
  width: fit-content;
  margin: 16px auto 0;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 11px;
  align-items: center;
  justify-content: center;
  margin-top: 17px;
  color: #8792A3;
  font-size: 0.76rem;
  line-height: 1.45;
}

.contact-direct > span {
  font-weight: 650;
}

.contact-direct a {
  color: var(--navy-700);
  font-weight: 700;
  transition: color var(--duration);
}

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

.contact-direct i {
  width: 1px;
  height: 14px;
  background: #CDD3DC;
}

.contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}

.contact-success {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid #BDE4CD;
  border-radius: 10px;
  background: #F1FAF5;
  color: #24643F;
}

.contact-success span {
  font-size: var(--fs-small);
}

.contact-error {
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid #F0C7BC;
  border-radius: 9px;
  background: #FFF5F2;
  color: #8B3A25;
  font-size: var(--fs-small);
  line-height: 1.55;
}

@media (max-width: 600px) {
  .final-cta {
    padding: 72px 0;
  }

  .final-cta-headline {
    font-size: clamp(2rem, 9.5vw, 2.7rem);
  }

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

  .form-field-wide,
  .form-consent,
  .contact-submit {
    grid-column: auto;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .final-cta-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 480px;
  }

  .hero-video {
    min-height: 480px;
  }

  .final-cta-inner {
    max-width: 760px;
  }

  .contact-card {
    max-width: 680px;
  }

  .footer-container {
    grid-template-columns: minmax(280px, 1.3fr) repeat(2, minmax(180px, 0.7fr));
    gap: 36px;
  }

  .quality-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .quality-copy {
    position: static;
    max-width: 760px;
  }

  .quality-promise {
    max-width: 620px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 108px 0 52px;
  }

  .hero-grid {
    gap: 42px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .footer-brand,
  .footer-copy {
    grid-column: 1 / -1;
  }

  .footer-copy {
    flex-direction: column;
    gap: 6px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-text-link {
    justify-content: center;
    padding: 10px;
  }

  .hero-visual,
  .hero-video {
    min-height: 420px;
  }

  .hero-process-card {
    right: 28px;
    bottom: 28px;
    left: 28px;
  }

  .challenge-points {
    grid-template-columns: 1fr;
  }

  .quality-standard {
    grid-template-columns: 46px 1fr;
    gap: 16px;
    padding: 24px 22px;
  }

  .quality-number {
    width: 40px;
    height: 40px;
  }

  .partner-placeholder span {
    white-space: normal;
  }

  .final-cta-layout {
    gap: 42px;
  }
}

/* ═══════════════════════════════════════════════
   40. HERO — FINAL CUSTOMER COPY
   The longer outcome-led promise keeps the existing hierarchy responsive.
   ═══════════════════════════════════════════════ */
.hero h1 {
  max-width: 760px;
  margin-bottom: 25px;
  font-size: clamp(2.55rem, 3vw, 3.15rem);
  line-height: 1.02;
}

.hero-title-main {
  display: inline;
  max-width: none;
}

.hero-title-promise {
  display: inline;
  max-width: none;
  margin-top: 0;
  font-size: inherit;
  line-height: inherit;
}

.hero-tagline-final {
  max-width: 650px;
  margin-bottom: 28px;
  color: #52647A;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 550;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .hero h1 {
    font-size: clamp(2.25rem, 3.7vw, 2.55rem);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2rem, 8.3vw, 2.35rem);
    line-height: 1.035;
  }

  .hero-title-promise {
    max-width: 100%;
  }

  .hero-tagline-final {
    margin-bottom: 25px;
    font-size: 0.98rem;
    line-height: 1.55;
  }
}

@media (max-width: 480px) {
  .hero-visual,
  .hero-video {
    min-height: 360px;
  }

  .hero-process-list li {
    font-size: 0.7rem;
  }

  .contact-card {
    padding: 26px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact,
  .footer-legal,
  .footer-copy {
    grid-column: 1;
  }

  .contact-direct {
    display: grid;
    justify-items: center;
  }

  .contact-direct i {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Header resilience for laptop screens and Windows 125% display scaling. */
@media (max-width: 1260px) and (min-width: 1121px) {
  .nav-container {
    height: 72px;
  }

  .site-logo-img {
    height: 32px;
  }

  .nav-menu {
    gap: 2px;
  }

  .nav-link {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .nav-cta {
    margin-left: 4px;
    padding: 10px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 1120px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav-container {
    height: 72px;
  }

  .site-logo-img {
    height: 34px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(86vw, 360px);
    height: 100vh;
    height: 100dvh;
    padding: 96px 28px 40px;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    visibility: hidden;
    pointer-events: none;
    transition: right 0.35s var(--ease-out), visibility 0.35s;
    z-index: 999;
  }

  .nav-menu.mc-menu-open {
    right: 0;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-link,
  .nav-cta {
    display: block;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 1rem;
  }

  .nav-cta {
    margin-top: 12px;
    margin-left: 0;
    text-align: center;
    white-space: normal;
  }

  .menu-toggle {
    display: flex;
  }

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

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

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

/* ── Hero coordination field and laptop-height refinements ── */
.hero {
  --grid-x: 72%;
  --grid-y: 42%;
  min-height: 100vh;
  min-height: 100svh;
  isolation: isolate;
}

.hero::before {
  z-index: 0;
}

.hero > .container {
  max-width: 1340px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  gap: clamp(40px, 4.5vw, 68px);
}

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

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 4.2vw, 4.3rem);
}

.hero-visual,
.hero-video {
  min-height: clamp(500px, 61vh, 590px);
}

.coordination-field {
  position: absolute;
  inset: 76px 0 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.coordination-field::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 90, 145, 0.085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 90, 145, 0.085) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(circle 540px at var(--grid-x) var(--grid-y), #000 0%, rgba(0, 0, 0, 0.78) 48%, transparent 100%);
  mask-image: radial-gradient(circle 540px at var(--grid-x) var(--grid-y), #000 0%, rgba(0, 0, 0, 0.78) 48%, transparent 100%);
}

.hero-journey-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.96;
}

.coordination-field::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 210px at var(--grid-x) var(--grid-y), rgba(233, 104, 42, 0.065), transparent 72%),
    radial-gradient(circle 430px at var(--grid-x) var(--grid-y), rgba(30, 90, 145, 0.055), transparent 76%);
}

.coordination-node {
  --node-scale: 1;
  --node-alpha: 0.24;
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(30, 90, 145, 0.68);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 7px rgba(30, 90, 145, 0.045);
  opacity: var(--node-alpha);
  transform: scale(var(--node-scale));
  transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
}

.coordination-node-1 { top: 16%; left: 12%; }
.coordination-node-2 { top: 29%; left: 38%; }
.coordination-node-3 { top: 15%; left: 71%; }
.coordination-node-4 { top: 52%; left: 22%; }
.coordination-node-5 { top: 64%; left: 52%; }
.coordination-node-6 { top: 43%; left: 82%; }
.coordination-node-7 { top: 78%; left: 73%; }
.coordination-node-8 { top: 84%; left: 31%; }

/* Short laptop viewports, including Windows 125% display scaling. */
@media (min-width: 1181px) and (max-height: 850px) {
  .hero {
    min-height: auto;
    padding: 108px 0 48px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(3rem, 3.7vw, 3.65rem);
    line-height: 1.02;
  }

  .hero-tagline {
    font-size: 1.05rem;
  }

  .hero-sub {
    margin-bottom: 22px;
  }

  .hero .btn-lg {
    padding: 17px 30px;
  }

  .hero-proof {
    margin-top: 22px;
    padding-top: 18px;
  }

  .hero-visual,
  .hero-video {
    min-height: 520px;
  }
}

@media (max-width: 1180px) {
  .hero {
    min-height: auto;
    padding: 116px 0 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .hero h1 {
    max-width: 780px;
    font-size: clamp(3rem, 7vw, 4.2rem);
  }

  .hero-visual,
  .hero-video {
    min-height: 480px;
  }
}

/* ── Consultation CTA shown only after the hero ── */
.sticky-cta {
  display: none;
  padding: 10px 0;
  border-top: 1px solid rgba(10, 35, 66, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -12px 34px rgba(10, 35, 66, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.sticky-cta-inner {
  min-height: 52px;
}

.sticky-cta-text {
  margin: 0;
  color: #5B687A;
}

.sticky-cta-text strong {
  color: var(--navy-900);
}

.sticky-cta .btn-primary {
  padding: 13px 22px;
  border-radius: 9px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .coordination-field {
    inset: 72px 0 0;
  }

  .coordination-node {
    display: none;
  }

  .sticky-cta {
    display: block;
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
  }

  .sticky-cta-inner {
    display: block;
    min-height: 0;
  }

  .sticky-cta-text {
    display: none;
  }

  .sticky-cta .btn-primary {
    width: 100%;
  }
}


/* ═══════════════════════════════════════════════
   23. CROSS-BORDER PRECISION DESIGN SYSTEM
   A restrained visual language unique to MedoraCare.
   ═══════════════════════════════════════════════ */
.hero-visual {
  border-radius: 26px 8px 26px 8px;
  box-shadow: 0 34px 80px rgba(5, 25, 49, 0.18);
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

.hero-visual::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  width: 78px;
  height: 5px;
  background: var(--orange-500);
}

.hero-visual-shade {
  background:
    linear-gradient(180deg, rgba(4, 20, 40, 0.16), rgba(4, 20, 40, 0.56)),
    linear-gradient(115deg, rgba(4, 20, 40, 0.28), transparent 58%);
}

.crossborder-atlas {
  position: absolute;
  inset: 26px;
  z-index: 3;
  display: grid;
  grid-template-rows: auto minmax(230px, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(190, 218, 240, 0.24);
  border-radius: 16px 3px 16px 3px;
  background: rgba(5, 25, 49, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.crossborder-atlas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(151, 194, 226, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 194, 226, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 78%);
  mask-image: linear-gradient(180deg, #000, transparent 78%);
  pointer-events: none;
}

.atlas-header {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 52px;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(190, 218, 240, 0.17);
}

.atlas-system,
.atlas-status {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.atlas-status {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: rgba(255, 255, 255, 0.84);
}

.atlas-status i,
.quality-dossier-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #63C58C;
  box-shadow: 0 0 0 4px rgba(99, 197, 140, 0.12);
}

.atlas-map {
  position: relative;
  z-index: 1;
  min-height: 260px;
}

.atlas-graphic {
  position: absolute;
  inset: 0 2%;
  width: 96%;
  height: 100%;
  overflow: visible;
}

.atlas-country-shape {
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.14));
}

.atlas-country {
  position: absolute;
  z-index: 0;
  overflow: visible;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.14));
}

.atlas-country path,
.atlas-country-shape path {
  fill: rgba(135, 184, 219, 0.09);
  stroke: rgba(181, 215, 238, 0.38);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.atlas-country-uz {
  bottom: 4%;
  left: 0;
  width: 48%;
}

.atlas-country-de {
  top: 17%;
  right: 7%;
  width: 31%;
}

.atlas-city-ring {
  fill: rgba(241, 102, 35, 0.08);
  stroke: rgba(241, 125, 68, 0.72);
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
  animation: atlas-city-pulse 2.8s ease-out infinite;
}

.atlas-city {
  fill: var(--orange-400);
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 0.7;
}

.atlas-route {
  position: absolute;
  inset: 20px 6% 12px;
  width: 88%;
  height: calc(100% - 32px);
  overflow: visible;
}

.atlas-route-ghost,
.atlas-route-line {
  fill: none;
  stroke-linecap: round;
}

.atlas-route-ghost {
  stroke: rgba(196, 222, 241, 0.2);
  stroke-width: 3;
}

.atlas-route-line {
  stroke: var(--orange-500);
  stroke-width: 2;
  stroke-dasharray: 4 13;
  animation: atlas-route-flow 9s linear infinite;
}

.atlas-route-node {
  fill: #D5E6F3;
  stroke: rgba(5, 25, 49, 0.92);
  stroke-width: 5;
}

.atlas-route-node-start,
.atlas-route-node-end {
  fill: var(--orange-500);
  stroke: rgba(255, 255, 255, 0.2);
  animation: atlas-node-pulse 2.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.atlas-location {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  min-width: 170px;
  padding: 10px 12px;
  border: 1px solid rgba(190, 218, 240, 0.18);
  border-radius: 10px 2px 10px 2px;
  background: rgba(5, 25, 49, 0.76);
  color: var(--white);
}

.atlas-location-uz {
  bottom: 18px;
  left: 18px;
}

.atlas-location-de {
  top: 18px;
  right: 18px;
}

.atlas-country-code {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--orange-400);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.atlas-location strong,
.atlas-location small {
  display: block;
}

.atlas-location strong {
  font-size: 0.79rem;
  letter-spacing: 0.01em;
}

.atlas-location small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.58rem;
}

.atlas-coordinate {
  position: absolute;
  color: rgba(204, 225, 240, 0.42);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.atlas-coordinate-uz {
  bottom: 8px;
  left: 204px;
}

.atlas-coordinate-de {
  top: 8px;
  right: 204px;
}

.atlas-process {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid rgba(190, 218, 240, 0.2);
  background: rgba(3, 18, 36, 0.52);
}

.atlas-process li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 9px;
  padding: 18px 16px 17px;
  border-right: 1px solid rgba(190, 218, 240, 0.14);
  color: var(--white);
}

.atlas-process li:last-child {
  border-right: 0;
}

.atlas-process li::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 34%;
  height: 2px;
  background: var(--orange-500);
}

.atlas-process span {
  grid-row: 1 / 3;
  color: var(--orange-400);
  font-size: 0.59rem;
  font-weight: 850;
}

.atlas-process strong {
  font-size: 0.72rem;
}

.atlas-process small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.55rem;
}

@keyframes atlas-route-flow {
  to { stroke-dashoffset: -170; }
}

@keyframes atlas-node-pulse {
  0%, 100% { opacity: 0.78; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.22); }
}

@keyframes atlas-city-pulse {
  0% { opacity: 0.9; transform: scale(0.65); }
  70%, 100% { opacity: 0; transform: scale(1.75); }
}

/* Connected capability system: two foundations, four operating modules. */
.why-us {
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0 0 0 46%;
  background-image:
    linear-gradient(rgba(30, 90, 145, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 90, 145, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(circle at 70% 42%, #000, transparent 72%);
  mask-image: radial-gradient(circle at 70% 42%, #000, transparent 72%);
  pointer-events: none;
}

.why-us .container {
  position: relative;
  z-index: 1;
}

.why-us-system-head {
  display: flex;
  margin-bottom: 14px;
  padding: 13px 17px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(10, 35, 66, 0.11);
  border-radius: 9px 2px 9px 2px;
  background: rgba(255, 255, 255, 0.72);
}

.why-us-copy .section-header h2 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.why-us-system-head span {
  color: var(--navy-700);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.why-us-system-head p {
  margin: 0;
  color: #778395;
  font-size: 0.76rem;
}

.why-us-grid {
  position: relative;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.why-card {
  grid-column: span 3;
  min-height: 250px;
  padding: 24px 22px 26px;
  border-radius: 12px 3px 12px 3px;
  box-shadow: none;
}

.why-card-featured {
  position: relative;
  grid-column: span 6;
  min-height: 270px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 88% 12%, rgba(44, 113, 169, 0.42), transparent 34%),
    var(--navy-900);
  color: var(--white);
}

.why-card-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: linear-gradient(90deg, transparent 20%, #000);
  mask-image: linear-gradient(90deg, transparent 20%, #000);
  pointer-events: none;
}

.why-card-featured > * {
  position: relative;
  z-index: 1;
}

.why-card-featured .why-card-title {
  color: var(--white);
}

.why-card-featured .why-card-subtitle {
  color: #91C2E5;
}

.why-card-featured .why-card-text {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.68);
}

.why-card-featured .why-card-icon {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--orange-400);
}

.why-card-featured .why-card-number {
  color: rgba(255, 255, 255, 0.32);
}

.why-card-featured:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 88% 12%, rgba(44, 113, 169, 0.5), transparent 34%),
    var(--navy-900);
  box-shadow: 0 18px 42px rgba(5, 25, 49, 0.16);
}

.why-card-featured:hover .why-card-title {
  color: var(--white);
}

.why-card-featured:hover .why-card-subtitle {
  color: #91C2E5;
}

.why-card-featured:hover .why-card-text {
  color: rgba(255, 255, 255, 0.68);
}

.why-card:not(.why-card-featured) {
  border-top: 3px solid #C9D8E5;
  background: rgba(255, 255, 255, 0.88);
}

.why-card:not(.why-card-featured)::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 22px;
  width: 11px;
  height: 11px;
  border: 3px solid #EDF2F6;
  border-radius: 50%;
  background: var(--navy-600);
}

.why-card:not(.why-card-featured):hover {
  border-top-color: var(--orange-500);
}

/* Quality criteria now read as a controlled verification dossier. */
.quality {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(30, 90, 145, 0.06), transparent 24%),
    #F4F7FA;
}

.quality::after {
  content: 'MC / QUALIT\00C4 TSDOSSIER / 05';
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  width: 100%;
  color: rgba(10, 35, 66, 0.045);
  font-size: clamp(2.15rem, 4.5vw, 4.6rem);
  font-weight: 850;
  letter-spacing: 0.045em;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

.quality .container {
  position: relative;
  z-index: 1;
}

.quality-standards {
  border-radius: 18px 4px 18px 4px;
}

.quality-dossier-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quality-dossier-head span:last-child {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
}

.quality-standard {
  position: relative;
  padding-right: 112px;
}

.quality-standard::after {
  content: 'Geprüft';
  position: absolute;
  top: 50%;
  right: 28px;
  padding: 5px 8px;
  border: 1px solid #CFE6D8;
  border-radius: 999px;
  background: #F2FAF5;
  color: #39805A;
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.quality-standard:hover {
  background: linear-gradient(90deg, #F8FAFC, #FFFFFF);
}

@media (max-width: 1100px) {
  .why-card:not(.why-card-featured) {
    grid-column: span 6;
  }

  .crossborder-atlas {
    grid-template-rows: auto minmax(250px, 1fr) auto;
  }
}

@media (max-width: 768px) {
  .hero-visual {
    border-radius: 18px 5px 18px 5px;
  }

  .crossborder-atlas {
    inset: 14px;
    grid-template-rows: auto minmax(210px, 1fr) auto;
  }

  .atlas-header {
    min-height: 44px;
    padding: 0 13px;
  }

  .atlas-system {
    max-width: 180px;
    line-height: 1.4;
  }

  .atlas-map {
    min-height: 220px;
  }

  .atlas-country-uz {
    bottom: 7%;
    left: -5%;
    width: 54%;
  }

  .atlas-country-de {
    top: -3%;
    right: -2%;
    width: 35%;
  }

  .atlas-location {
    min-width: 145px;
    grid-template-columns: 30px 1fr;
    gap: 7px;
    padding: 8px;
  }

  .atlas-country-code {
    width: 30px;
    height: 30px;
  }

  .atlas-location-de {
    top: 10px;
    right: 10px;
  }

  .atlas-location-uz {
    bottom: 10px;
    left: 10px;
  }

  .atlas-coordinate {
    display: none;
  }

  .atlas-process li {
    display: block;
    padding: 13px 10px;
  }

  .atlas-process span,
  .atlas-process strong {
    display: block;
  }

  .atlas-process small {
    display: none;
  }

  .why-us-system-head {
    display: block;
  }

  .why-us-system-head p {
    margin-top: 5px;
  }

  .why-card,
  .why-card-featured,
  .why-card:not(.why-card-featured) {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .quality-dossier-head {
    grid-template-columns: 1fr auto;
  }

  .quality-dossier-head span:nth-child(2) {
    display: none;
  }

  .quality-standard {
    padding-right: 22px;
  }

  .quality-standard::after {
    display: none;
  }

}

@media (max-width: 480px) {
  .atlas-system {
    font-size: 0.54rem;
  }

  .atlas-status {
    font-size: 0;
  }

  .atlas-location {
    min-width: 132px;
  }

  .atlas-location small {
    font-size: 0.51rem;
  }

  .atlas-route {
    inset-inline: 2%;
    width: 96%;
  }

  .quality-dossier-head {
    padding: 0 17px;
    font-size: 0.52rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-journey-canvas {
    opacity: 0.72;
  }

  .atlas-route-line,
  .atlas-route-node-start,
  .atlas-route-node-end,
  .atlas-city-ring {
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════
   24. BRAND COHERENCE PASS
   The coordination model is the signature; evidence replaces decoration.
   ═══════════════════════════════════════════════ */
.hero {
  min-height: min(840px, 100svh);
  padding-block: 116px 58px;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(500px, 1.04fr);
  gap: clamp(44px, 5vw, 78px);
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(2.8rem, 3.85vw, 4rem);
  line-height: 1.02;
}

.hero-visual {
  min-height: clamp(500px, 59vh, 560px);
  border-color: rgba(10, 35, 66, 0.22);
  background:
    radial-gradient(circle at 82% 16%, rgba(44, 113, 169, 0.36), transparent 34%),
    linear-gradient(145deg, #0D2C50 0%, #071D38 60%, #041426 100%);
  box-shadow: 0 26px 64px rgba(5, 25, 49, 0.16);
}

.hero-video,
.hero-visual-shade {
  display: none;
}

.crossborder-atlas {
  inset: 22px;
  background: rgba(4, 21, 41, 0.58);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.atlas-country path,
.atlas-country-shape path {
  fill: rgba(135, 184, 219, 0.16);
  stroke: rgba(190, 221, 242, 0.66);
  stroke-width: 1.65;
}

.atlas-route-ghost {
  stroke: rgba(196, 222, 241, 0.28);
  stroke-width: 4;
}

.atlas-route-line {
  stroke-width: 2.5;
}

.atlas-location {
  background: rgba(5, 25, 49, 0.92);
}

.coordination-field::before {
  opacity: 0.34;
}

.coordination-node {
  display: none;
}

.coordination-node-1,
.coordination-node-3,
.coordination-node-7 {
  display: none;
}

.atlas-system,
.atlas-status {
  font-size: 0.68rem;
}

.atlas-location strong {
  font-size: 0.86rem;
}

.atlas-location small {
  font-size: 0.64rem;
}

.atlas-coordinate {
  font-size: 0.54rem;
}

.atlas-process span {
  font-size: 0.65rem;
}

.atlas-process strong {
  font-size: 0.8rem;
}

.atlas-process small {
  font-size: 0.61rem;
}

.evidence-rail {
  position: relative;
  border-top: 1px solid rgba(10, 35, 66, 0.1);
  border-bottom: 1px solid rgba(10, 35, 66, 0.1);
  background: #F2F5F7;
}

.evidence-rail::before {
  content: '';
  position: absolute;
  top: -1px;
  left: max(20px, calc((100% - 1280px) / 2));
  width: 88px;
  height: 3px;
  background: var(--orange-500);
}

.evidence-rail-grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.82fr) minmax(0, 3.18fr);
  align-items: stretch;
}

.evidence-rail-intro {
  display: flex;
  min-height: 128px;
  padding: 28px clamp(24px, 3vw, 42px) 28px 0;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(10, 35, 66, 0.12);
}

.evidence-rail-intro span {
  margin-bottom: 7px;
  color: var(--orange-600);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.evidence-rail-intro strong {
  max-width: 220px;
  color: var(--navy-900);
  font-size: 1rem;
  line-height: 1.4;
}

.evidence-rail-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

.evidence-rail-list li {
  display: grid;
  min-width: 0;
  padding: 25px clamp(16px, 2vw, 26px);
  align-content: center;
  border-right: 1px solid rgba(10, 35, 66, 0.1);
}

.evidence-rail-list li:last-child {
  border-right: 0;
}

.evidence-rail-list span {
  margin-bottom: 11px;
  color: var(--navy-600);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.evidence-rail-list strong,
.evidence-rail-list small {
  display: block;
}

.evidence-rail-list strong {
  color: var(--navy-900);
  font-size: 0.78rem;
  line-height: 1.35;
}

.evidence-rail-list small {
  margin-top: 5px;
  color: #68768A;
  font-size: 0.66rem;
  line-height: 1.5;
}

.partners {
  background: var(--white);
  border-top: 0;
}

/* Ordinary content now appears quietly; meaningful process motion remains in the hero. */
.animate-on-scroll {
  transform: none;
  transition: opacity 0.38s ease-out;
}

.hero .animate-on-scroll {
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.hero .animate-on-scroll.is-visible {
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.02s; }
.stagger-2 { transition-delay: 0.04s; }
.stagger-3 { transition-delay: 0.06s; }
.stagger-4 { transition-delay: 0.08s; }
.stagger-5 { transition-delay: 0.1s; }
.stagger-6 { transition-delay: 0.12s; }

.partner-item:hover,
.team-card:hover {
  transform: translateY(-1px);
}

@media (min-width: 1181px) and (max-height: 850px) {
  .hero {
    padding-block: 104px 46px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 3.45vw, 3.45rem);
  }

  .hero-visual {
    min-height: 500px;
  }
}

@media (max-width: 1180px) {
  .hero {
    padding-block: 112px 58px;
  }

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

  .hero h1 {
    max-width: 780px;
    font-size: clamp(2.8rem, 6.4vw, 4rem);
  }

  .hero-visual {
    min-height: 500px;
  }

  .evidence-rail-grid {
    grid-template-columns: 1fr;
  }

  .evidence-rail-intro {
    min-height: 0;
    padding: 24px 0 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 35, 66, 0.1);
  }

  .evidence-rail-intro strong {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-block: 104px 44px;
  }

  .hero-grid {
    gap: 0;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.35rem);
  }

  .hero-visual {
    display: none;
  }

  .crossborder-atlas {
    inset: 12px;
  }

  .atlas-system,
  .atlas-status {
    font-size: 0.6rem;
  }

  .atlas-location strong {
    font-size: 0.76rem;
  }

  .atlas-location small {
    font-size: 0.56rem;
  }

  .atlas-process span {
    font-size: 0.58rem;
  }

  .atlas-process strong {
    font-size: 0.72rem;
  }

  .evidence-rail-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evidence-rail-list li {
    border-bottom: 1px solid rgba(10, 35, 66, 0.1);
  }

  .evidence-rail-list li:nth-child(2n) {
    border-right: 0;
  }

  .evidence-rail-list li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    display: none;
  }

  .atlas-status {
    font-size: 0;
  }

  .atlas-system {
    font-size: 0.56rem;
  }

  .atlas-status i {
    display: block;
  }

  .evidence-rail-list {
    grid-template-columns: 1fr;
  }

  .evidence-rail-list li,
  .evidence-rail-list li:nth-child(2n),
  .evidence-rail-list li:nth-last-child(-n + 2) {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 35, 66, 0.1);
  }

  .evidence-rail-list li:last-child {
    border-bottom: 0;
  }
}

/* ═══════════════════════════════════════════════
   25. CUSTOMER REVIEW — EDITORIAL HERO
   Human expertise replaces the process diagram in the opening screen.
   ═══════════════════════════════════════════════ */
.hero {
  min-height: min(790px, 100svh);
  padding-block: 118px 56px;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  gap: clamp(48px, 5.2vw, 82px);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 30px;
  font-size: clamp(3rem, 4.15vw, 4.35rem);
}

.hero-title-main,
.hero-title-promise {
  display: block;
}

.hero-title-main {
  max-width: 650px;
}

.hero-title-promise {
  max-width: 600px;
  margin-top: 0.32em;
  color: var(--navy-700);
  font-size: 0.52em;
  font-weight: 680;
  line-height: 1.24;
  letter-spacing: -0.025em;
}

.hero-actions {
  display: block;
}

.hero-actions .btn {
  width: min(100%, 430px);
}

.hero-visual {
  min-height: clamp(480px, 57vh, 550px);
  border-color: rgba(10, 35, 66, 0.16);
  background: #E8ECEF;
  box-shadow: 0 26px 64px rgba(5, 25, 49, 0.15);
}

.hero-visual::before {
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px 5px 18px 5px;
}

.hero-visual::after {
  z-index: 3;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% center;
}

@media (min-width: 1181px) and (max-height: 850px) {
  .hero {
    min-height: 730px;
    padding-block: 104px 44px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 3.65vw, 3.7rem);
  }

  .hero-visual {
    min-height: 480px;
  }
}

@media (max-width: 1180px) {
  .hero {
    min-height: auto;
    padding-block: 112px 62px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.88fr);
    gap: clamp(36px, 4vw, 54px);
  }

  .hero h1 {
    font-size: clamp(2.85rem, 5.2vw, 3.75rem);
  }

  .hero-visual {
    min-height: 460px;
  }
}

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

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

  .hero-visual {
    min-height: 460px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-block: 104px 48px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(2.55rem, 11.5vw, 3.35rem);
  }

  .hero-title-promise {
    max-width: 360px;
    font-size: 0.5em;
  }

  .hero-tagline {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-sub {
    margin-bottom: 26px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   26. CUSTOMER REVIEW — PARTNER TRUST TAPE
   A restrained continuous logo loop separates the opening sections.
   ═══════════════════════════════════════════════ */
.partners {
  padding: 30px 0 34px;
  overflow: hidden;
  border-top: 1px solid rgba(10, 35, 66, 0.08);
  border-bottom: 1px solid rgba(10, 35, 66, 0.08);
  background: #F5F7F9;
}

.partners-layout {
  display: block;
}

.partners-intro {
  display: flex;
  margin-bottom: 18px;
  padding: 0 0 15px;
  align-items: center;
  border-right: 0;
  border-bottom: 1px solid rgba(10, 35, 66, 0.1);
}

.partners-intro::before {
  width: 34px;
  height: 2px;
  margin: 0 12px 0 0;
  flex: 0 0 auto;
}

.partners-label {
  max-width: none;
  color: var(--navy-800);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.partners-marquee {
  position: relative;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.partners-track {
  display: flex;
  width: max-content;
  align-items: stretch;
  gap: 14px;
  animation: partnerTrustLoop 32s linear infinite;
  will-change: transform;
}

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

.partners-marquee-group {
  display: flex;
  align-items: stretch;
  gap: 14px;
}

.partner-item {
  width: 246px;
  min-width: 246px;
  min-height: 82px;
  padding: 13px 18px;
  border-color: rgba(10, 35, 66, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 3px 14px rgba(10, 35, 66, 0.025);
}

.partner-item:hover {
  transform: translateY(-1px);
  border-color: rgba(10, 35, 66, 0.17);
  box-shadow: 0 8px 22px rgba(10, 35, 66, 0.06);
}

.partner-logo {
  max-height: 48px;
}

.partner-logo-wegweiser {
  max-height: 66px;
  transform: scale(1.08);
}

.partner-item-named img {
  max-width: 46px;
  height: 46px;
}

.partner-item-named span {
  max-width: 158px;
  font-size: 0.72rem;
}

@keyframes partnerTrustLoop {
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@media (max-width: 768px) {
  .partners {
    padding: 25px 0 29px;
  }

  .partners-intro {
    margin-bottom: 14px;
    padding-bottom: 13px;
  }

  .partners-label {
    font-size: 0.69rem;
  }

  .partners-marquee {
    margin-inline: -20px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  }

  .partners-track,
  .partners-marquee-group {
    gap: 10px;
  }

  .partners-track {
    animation-duration: 27s;
  }

  .partner-item {
    width: 205px;
    min-width: 205px;
    min-height: 76px;
    padding: 11px 14px;
  }

  .partner-item-named {
    min-height: 76px;
    flex-direction: row;
    gap: 9px;
    text-align: left;
  }

  .partner-item-named span {
    font-size: 0.66rem;
  }

  .partner-logo {
    max-height: 42px;
  }

  .partner-logo-wegweiser {
    max-height: 58px;
  }

  @keyframes partnerTrustLoop {
    to {
      transform: translateX(calc(-50% - 5px));
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: thin;
  }

  .partners-track {
    animation: none;
    transform: none;
  }

  .partners-marquee-group[aria-hidden="true"] {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   27. ABOVE-THE-FOLD TRUST TAPE
   Partners form the closing edge of the first screen.
   ═══════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  padding: 96px 0 0;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}

.hero-grid {
  min-height: 0;
  padding-block: 18px 22px;
  flex: 1 1 auto;
}

.hero-visual {
  min-height: clamp(400px, 50svh, 480px);
}

.hero-partners {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 14px 0 16px;
  flex: 0 0 auto;
  background: rgba(245, 247, 249, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-partners .animate-on-scroll {
  opacity: 1;
  transform: none;
}

.hero-partners .partners-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.76fr) minmax(0, 3.24fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: center;
}

.hero-partners .partners-intro {
  margin: 0;
  padding: 4px 24px 4px 0;
  border-right: 1px solid rgba(10, 35, 66, 0.11);
  border-bottom: 0;
}

.hero-partners .partners-label {
  font-size: 0.7rem;
  line-height: 1.45;
}

.hero-partners .partners-marquee {
  margin: 0;
}

.hero-partners .partner-item {
  width: 208px;
  min-width: 208px;
  min-height: 62px;
  padding: 9px 13px;
}

.hero-partners .partner-logo {
  max-height: 38px;
}

.hero-partners .partner-logo-wegweiser {
  max-height: 51px;
}

.hero-partners .partner-item-named img {
  max-width: 37px;
  height: 37px;
}

.hero-partners .partner-item-named span {
  max-width: 140px;
  font-size: 0.64rem;
}

@media (min-width: 1181px) and (max-height: 760px) {
  .hero {
    padding-top: 86px;
  }

  .hero-grid {
    padding-block: 12px 16px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.65rem, 3.45vw, 3.45rem);
  }

  .hero-tagline {
    margin-bottom: 8px;
  }

  .hero-sub {
    margin-bottom: 24px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-partners {
    padding-block: 11px 12px;
  }

  .hero-partners .partner-item {
    min-height: 58px;
  }
}

@media (max-width: 1180px) {
  .hero {
    min-height: 100svh;
    padding: 96px 0 0;
  }

  .hero-grid {
    padding-block: 18px 24px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-partners .partners-layout {
    grid-template-columns: minmax(175px, 0.7fr) minmax(0, 3.3fr);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-partners .partners-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-partners .partners-intro {
    padding: 0 0 11px;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 35, 66, 0.1);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 104px 0 0;
    display: block;
  }

  .hero-grid {
    padding-block: 0 42px;
  }

  .hero-partners {
    padding: 20px 0 23px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-partners .partners-layout {
    gap: 13px;
  }

  .hero-partners .partners-intro {
    padding-bottom: 12px;
  }

  .hero-partners .partner-item {
    width: 194px;
    min-width: 194px;
    min-height: 68px;
  }

  .hero-partners .partner-item-named {
    min-height: 68px;
  }
}

/* ═══════════════════════════════════════════════
   28. CUSTOMER REVIEW — CHALLENGE RHYTHM
   A wide diagnostic statement replaces the heavy split screen.
   ═══════════════════════════════════════════════ */
.challenge {
  position: relative;
  padding: clamp(76px, 7vw, 96px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(30, 90, 145, 0.045), transparent 27%),
    var(--white);
}

.challenge-shell {
  display: block;
}

.challenge-heading-wrap {
  padding-top: 0;
}

.challenge-accent {
  width: 44px;
  height: 2px;
  margin-bottom: 22px;
}

.challenge-headline {
  max-width: 1040px;
  font-size: clamp(2.75rem, 4.15vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.042em;
  text-wrap: balance;
}

.challenge-content {
  margin-top: clamp(42px, 5vw, 62px);
}

.challenge-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(10, 35, 66, 0.14);
  border-bottom: 1px solid rgba(10, 35, 66, 0.12);
}

.challenge-point {
  min-height: 156px;
  padding: 27px clamp(20px, 2.4vw, 34px);
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 15px;
  align-content: start;
  border-right: 1px solid rgba(10, 35, 66, 0.1);
  border-bottom: 0;
  font-size: clamp(0.95rem, 1.05vw, 1.04rem);
  line-height: 1.58;
}

.challenge-point:first-child {
  padding-left: 0;
}

.challenge-point:last-child {
  padding-right: 0;
  border-right: 0;
}

.challenge-point-number {
  width: 31px;
  height: 31px;
  margin-top: 1px;
  background: #F7F9FB;
}

.challenge-resolution {
  width: fit-content;
  max-width: 100%;
  margin: 26px 0 0 auto;
  padding: 16px 20px;
  background: #F4F6F8;
}

.challenge-cta-text {
  font-size: clamp(1rem, 1.2vw, 1.16rem);
}

.why-us-copy {
  margin-bottom: clamp(34px, 4vw, 48px);
}

@media (max-width: 900px) {
  .challenge-headline {
    max-width: 760px;
    font-size: clamp(2.45rem, 6.6vw, 3.45rem);
  }

  .challenge-points {
    grid-template-columns: 1fr;
  }

  .challenge-point,
  .challenge-point:first-child,
  .challenge-point:last-child {
    min-height: 0;
    padding: 23px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 35, 66, 0.1);
  }

  .challenge-point:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 600px) {
  .challenge {
    padding: 66px 0 70px;
  }

  .challenge-accent {
    margin-bottom: 18px;
  }

  .challenge-headline {
    font-size: clamp(2.1rem, 9.6vw, 2.65rem);
    line-height: 1.08;
  }

  .challenge-content {
    margin-top: 34px;
  }

  .challenge-point {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    font-size: 0.96rem;
  }

  .challenge-resolution {
    width: 100%;
    margin-top: 22px;
  }
}

/* ═══════════════════════════════════════════════
   29. CHALLENGE BALANCE CORRECTION
   Compact evidence cards keep the wide composition intentional.
   ═══════════════════════════════════════════════ */
.challenge {
  padding: clamp(70px, 6vw, 88px) 0;
}

.challenge-headline {
  max-width: 920px;
  font-size: clamp(2.65rem, 3.55vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: -0.038em;
}

.challenge-content {
  margin-top: clamp(34px, 4vw, 48px);
}

.challenge-points {
  gap: 14px;
  border: 0;
}

.challenge-point,
.challenge-point:first-child,
.challenge-point:last-child {
  min-height: 132px;
  padding: 23px 22px;
  border: 1px solid rgba(10, 35, 66, 0.09);
  border-radius: 11px 3px 11px 3px;
  background: #F6F8FA;
}

.challenge-point-number {
  background: var(--white);
}

.challenge-resolution {
  width: 100%;
  margin: 14px 0 0;
  padding: 18px 22px;
  justify-content: flex-start;
  border-left-width: 3px;
}

@media (max-width: 900px) {
  .challenge-headline {
    font-size: clamp(2.35rem, 6.2vw, 3.2rem);
  }

  .challenge-points {
    gap: 10px;
  }

  .challenge-point,
  .challenge-point:first-child,
  .challenge-point:last-child {
    min-height: 0;
    padding: 21px 19px;
    border: 1px solid rgba(10, 35, 66, 0.09);
  }
}

@media (max-width: 600px) {
  .challenge {
    padding: 62px 0 66px;
  }

  .challenge-headline {
    font-size: clamp(2.05rem, 9.2vw, 2.5rem);
  }

  .challenge-point,
  .challenge-point:first-child,
  .challenge-point:last-child {
    padding: 20px 17px;
  }

  .challenge-resolution {
    margin-top: 12px;
    padding: 17px 16px;
    justify-content: flex-start;
  }
}

/* ═══════════════════════════════════════════════
   30. CUSTOMER REVIEW — QUALITY THROUGH PROCESS
   Trust is shown through document verification, not a fictional seal.
   ═══════════════════════════════════════════════ */
.quality {
  padding: clamp(58px, 5.5vw, 78px) 0;
  background: var(--white);
}

.quality > .container {
  width: min(94%, 1240px);
  max-width: 1240px;
}

.quality::after {
  display: none;
}

.quality-layout {
  display: grid;
  grid-template-columns: minmax(400px, 0.94fr) minmax(530px, 1.06fr);
  grid-template-areas:
    "visual copy"
    "visual standards"
    "visual promise";
  column-gap: clamp(38px, 4vw, 58px);
  row-gap: 12px;
  align-items: start;
}

.quality-content {
  display: contents;
}

.quality-visual {
  position: sticky;
  top: 112px;
  grid-area: visual;
  min-height: 544px;
  overflow: hidden;
  border: 1px solid rgba(10, 35, 66, 0.12);
  border-radius: 20px 5px 20px 5px;
  background: #E9ECEF;
  box-shadow: 0 22px 55px rgba(10, 35, 66, 0.11);
}

.quality-visual::before {
  content: '';
  position: absolute;
  inset: 15px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 14px 3px 14px 3px;
  pointer-events: none;
}

.quality-visual::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 88px;
  height: 4px;
  background: var(--orange-500);
}

.quality-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.quality-copy {
  position: static;
  grid-area: copy;
  padding-top: 0;
}

.quality-copy::before {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  margin-bottom: 14px;
  background: var(--orange-500);
}

.quality-copy h2 {
  max-width: 580px;
  margin-bottom: 12px;
  font-size: clamp(2.35rem, 3vw, 3.05rem);
  line-height: 1.05;
}

.quality-copy .quality-intro {
  max-width: 610px;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

.quality-standards {
  grid-area: standards;
  overflow: visible;
  border: 0;
  border-top: 1px solid rgba(10, 35, 66, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quality-standard {
  min-height: 64px;
  padding: 10px 0;
  padding-right: 0;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid rgba(10, 35, 66, 0.1);
}

.quality-standard:last-child {
  border-bottom: 1px solid rgba(10, 35, 66, 0.1);
}

.quality-standard::after {
  display: none;
}

.quality-standard:hover {
  background: transparent;
}

.quality-number {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(16, 87, 145, 0.15);
  background: #F5F8FB;
  font-size: 0.65rem;
}

.quality-standard h3 {
  margin-bottom: 2px;
  font-size: 0.94rem;
}

.quality-standard p {
  font-size: 0.77rem;
  line-height: 1.38;
}

.quality-promise {
  grid-area: promise;
  max-width: none;
  padding: 13px 17px;
  border-left: 3px solid var(--orange-500);
  border-radius: 0 10px 10px 0;
  background: #F4F6F8;
  color: var(--navy-900);
}

.quality-promise-icon {
  border-color: rgba(16, 87, 145, 0.15);
  background: var(--white);
}

.quality-promise-icon svg {
  fill: #39805A;
}

.quality-promise p {
  color: var(--navy-900);
  font-size: 0.8rem;
}

@media (max-width: 1040px) {
  .quality-layout {
    grid-template-columns: minmax(340px, 0.9fr) minmax(470px, 1.1fr);
    column-gap: 32px;
  }

  .quality-visual {
    min-height: 520px;
  }
}

@media (max-width: 900px) {
  .quality-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "standards"
      "promise";
    gap: 28px;
  }

  .quality-visual {
    position: relative;
    top: auto;
    min-height: 430px;
  }
}

@media (max-width: 600px) {
  .quality {
    padding: 66px 0 70px;
  }

  .quality-copy h2 {
    font-size: clamp(2.15rem, 9.5vw, 2.7rem);
  }

  .quality-visual {
    min-height: 340px;
    border-radius: 15px 4px 15px 4px;
  }

  .quality-standard {
    min-height: 0;
    padding: 18px 0;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
  }

  .quality-number {
    width: 32px;
    height: 32px;
  }

  .quality-promise {
    padding: 18px 17px;
  }
}

/* ═══════════════════════════════════════════════
   31. MEDORACARE QUALITY MARK
   A proprietary verification cue replaces generic photography.
   ═══════════════════════════════════════════════ */
.quality-visual {
  display: flex;
  padding: 21px;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 32%, rgba(30, 90, 145, 0.08), transparent 42%),
    #EEF2F5;
}

.quality-assurance-card {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 500px;
  padding: 21px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(142, 177, 207, 0.28);
  border-radius: 6px 2px 6px 2px;
  background:
    linear-gradient(rgba(151, 183, 211, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 183, 211, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 46%, #133B61 0, #0B2B4C 46%, #071E36 100%);
  background-size: 34px 34px;
  box-shadow: 0 14px 34px rgba(10, 35, 66, 0.16);
}

.quality-assurance-card::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(158, 190, 218, 0.13);
  pointer-events: none;
}

.quality-assurance-head,
.quality-mark-stage,
.quality-mark-center {
  position: relative;
  z-index: 1;
}

.quality-assurance-head {
  display: flex;
  padding-bottom: 13px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(164, 194, 220, 0.16);
  color: #D4E0EB;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quality-assurance-head span:last-child {
  color: var(--orange-400);
  font-size: 0.78rem;
}

.quality-mark-stage {
  display: flex;
  min-height: 290px;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
}

.quality-mark-svg {
  width: min(100%, 268px);
  height: auto;
  overflow: visible;
}

.quality-mark-ring {
  fill: none;
  transform-origin: center;
}

.quality-mark-ring-outer {
  stroke: rgba(177, 202, 224, 0.38);
  stroke-width: 1.5;
}

.quality-mark-ring-dashed {
  stroke: rgba(177, 202, 224, 0.44);
  stroke-width: 2;
  stroke-dasharray: 3 9;
  animation: none;
}

.quality-mark-pentagon {
  fill: rgba(25, 79, 124, 0.18);
  stroke: rgba(177, 202, 224, 0.3);
  stroke-width: 1;
}

.quality-mark-nodes circle {
  fill: var(--orange-500);
  stroke: #0B2B4C;
  stroke-width: 4;
  transform-box: fill-box;
  transform-origin: center;
  animation: none;
}

.quality-mark-nodes circle:nth-child(2) { animation-delay: 0.35s; }
.quality-mark-nodes circle:nth-child(3) { animation-delay: 0.7s; }
.quality-mark-nodes circle:nth-child(4) { animation-delay: 1.05s; }
.quality-mark-nodes circle:nth-child(5) { animation-delay: 1.4s; }

.quality-mark-monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border: 1px solid rgba(188, 210, 228, 0.48);
  border-radius: 50%;
  background: #0A2745;
  box-shadow: 0 0 0 10px rgba(177, 202, 224, 0.055);
  color: #F5F8FB;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transform: translate(-50%, -50%);
}

.quality-mark-center {
  display: flex;
  width: max-content;
  margin: 0 auto 12px;
  padding: 7px 14px;
  align-items: baseline;
  gap: 7px;
  border: 1px solid rgba(177, 202, 224, 0.28);
  border-radius: 3px;
  background: rgba(4, 20, 37, 0.34);
  color: #D7E3ED;
  white-space: nowrap;
}

.quality-mark-center strong {
  color: var(--orange-400);
  font-size: 0.82rem;
}

.quality-mark-center span {
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes qualityRingRotate {
  to { transform: rotate(360deg); }
}

@keyframes qualityNodePulse {
  0%, 100% { opacity: 0.72; transform: scale(0.86); }
  50% { opacity: 1; transform: scale(1.12); }
}

@media (max-width: 900px) {
  .quality-visual {
    min-height: 520px;
    padding: 23px;
  }

  .quality-assurance-card {
    min-height: 470px;
  }

  .quality-mark-stage {
    min-height: 300px;
  }

  .quality-mark-svg {
    width: min(100%, 280px);
  }
}

@media (max-width: 600px) {
  .quality-visual {
    min-height: 470px;
    padding: 14px;
  }

  .quality-assurance-card {
    min-height: 438px;
    padding: 18px;
  }

  .quality-mark-stage {
    min-height: 260px;
  }

  .quality-mark-svg {
    width: min(100%, 245px);
  }

  .quality-mark-center {
    margin-bottom: 8px;
  }

  .quality-mark-monogram {
    width: 96px;
    height: 96px;
    font-size: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .quality-mark-ring-dashed,
  .quality-mark-nodes circle {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════
   32. SOLUTIONS — APPROVED 2.3.33 LAYOUT
   Keep the original structure; distinguish the section with a medical blue tint.
   ═══════════════════════════════════════════════ */
.solutions {
  background:
    radial-gradient(circle at 92% 12%, rgba(16, 87, 145, 0.055), transparent 34%),
    #F4F8FB;
}

.solutions-header {
  display: block;
  width: 100%;
  max-width: 900px;
  text-align: center;
}

.solutions-header h2 {
  max-width: 760px;
  margin: 0 auto 14px;
  font-size: clamp(2.2rem, 3vw, 3rem);
}

.solutions-header .section-sub {
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
  border-left: 0;
  text-align: center;
}

.solutions-header h2 span {
  display: block;
  white-space: nowrap;
}

@media (min-width: 1025px) {
  .solutions {
    padding: 34px 0 42px;
  }

  .solutions-header {
    margin-bottom: 22px;
  }

  .solutions-header h2 {
    font-size: clamp(2.1rem, 2.7vw, 2.7rem);
  }

  .solutions-header .section-sub {
    align-self: center;
    padding-top: 2px;
    padding-bottom: 2px;
    font-size: 0.92rem;
    line-height: 1.55;
    white-space: nowrap;
  }

  .solution-card,
  .solution-card:hover {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .solution-card-number {
    margin-bottom: 10px;
  }

  .solution-card-title {
    margin-bottom: 6px;
    font-size: clamp(1.16rem, 1.55vw, 1.42rem);
  }

  .solution-card-text {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .solution-card-ideal {
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .solution-card-ideal span {
    margin-bottom: 4px;
    font-size: 0.58rem;
  }

  .solutions-footer {
    margin-top: 18px;
    padding: 14px 22px;
  }

  .solutions-footer-text {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .solutions-footer .btn {
    min-height: 50px;
    padding: 13px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 1024px) {
  .solutions-header {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .solutions-header h2 span {
    display: inline;
    white-space: normal;
  }

  .solutions-header h2 span + span::before {
    content: ' ';
  }
}

/* ═══════════════════════════════════════════════
   33. TEAM — EDITORIAL CONTACT CARDS
   Preserve the real portraits and content; remove the generic app-card feel.
   ═══════════════════════════════════════════════ */
.team {
  padding: clamp(64px, 6vw, 86px) 0;
  background: var(--white);
}

.team > .container {
  width: min(94%, 1240px);
  max-width: 1240px;
}

.team .section-header {
  margin-bottom: 34px;
}

.team .section-header h2 {
  font-size: clamp(2.25rem, 3vw, 3.05rem);
}

.team-intro p {
  margin: 0;
}

.team-intro p + p {
  margin-top: 10px;
}

.team-intro .team-intro-lead {
  color: var(--navy-900);
  font-weight: 700;
}

.team-card {
  border-color: rgba(10, 35, 66, 0.12);
  border-radius: 4px;
  background: #FBFCFD;
  box-shadow: 0 7px 20px rgba(10, 35, 66, 0.035);
}

.team-card:hover {
  border-color: rgba(10, 35, 66, 0.2);
  box-shadow: 0 12px 28px rgba(10, 35, 66, 0.07);
  transform: none;
}

.team-card-photo {
  aspect-ratio: 4 / 5;
}

.team-card-photo img {
  object-position: center top;
}

.team-card-body {
  padding: 21px 22px 20px;
}

.team-card-name {
  font-size: clamp(1.15rem, 1.45vw, 1.32rem);
}

.team-card-role {
  margin-bottom: 10px;
  font-size: 0.76rem;
}

.team-contact {
  margin-top: 4px;
  padding-top: 13px;
}

.team-linkedin {
  width: 34px;
  height: 34px;
  margin-top: 12px;
  padding: 0;
  justify-content: center;
  border-radius: 4px;
}

@media (min-width: 1025px) {
  .team {
    padding: 30px 0 42px;
  }

  .team .section-header {
    max-width: 1200px;
    margin-bottom: 18px;
  }

  .team .section-header h2 {
    margin-bottom: 10px;
    font-size: clamp(2.15rem, 2.7vw, 2.75rem);
  }

  .team .section-header .section-sub {
    max-width: 1120px;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .team-card-photo {
    aspect-ratio: 1 / 1;
  }

  .team-card-body {
    position: relative;
    padding: 15px 18px 14px;
    padding-right: 58px;
  }

  .team-card-name {
    font-size: 1.12rem;
  }

  .team-card-role {
    margin-bottom: 6px;
    font-size: 0.7rem;
  }

  .team-contact {
    gap: 5px;
    margin-top: 2px;
    padding-top: 9px;
  }

  .team-contact a {
    font-size: 0.72rem;
  }

  .team-linkedin {
    position: absolute;
    right: 18px;
    bottom: 14px;
    width: 31px;
    height: 31px;
    margin-top: 0;
  }

  .team-linkedin svg {
    width: 15px;
    height: 15px;
  }
}

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

  .team .section-header {
    margin-bottom: 28px;
  }
}

/* ═══════════════════════════════════════════════
   34. FINAL CTA — FOCUSED CONVERSION LAYOUT
   Keep the message concise and let the form carry the action.
   ═══════════════════════════════════════════════ */
.final-cta {
  padding: clamp(64px, 6.2vw, 88px) 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(241, 102, 35, 0.07), transparent 26%),
    linear-gradient(120deg, #F7F9FB 0%, #EEF4F8 100%);
}

.final-cta-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(410px, 0.72fr);
  gap: clamp(48px, 6.5vw, 92px);
  align-items: center;
}

.final-cta-inner {
  padding-top: 0;
}

.final-cta-accent {
  margin-bottom: 22px;
}

.final-cta-headline {
  max-width: 650px;
  margin-bottom: 22px;
}

.final-cta-sub {
  max-width: 590px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.7;
}

.final-cta .final-cta-meta {
  margin-top: 22px;
  margin-bottom: 0;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.82);
}

@media (min-width: 1025px) {
  .final-cta {
    padding: 70px 0 74px;
  }

  .final-cta > .container {
    width: min(92%, 1240px);
    max-width: 1240px;
  }

  .contact-card {
    padding: 24px 28px;
  }

  .contact-card-intro {
    margin-bottom: 16px;
  }

  .contact-form {
    gap: 10px 12px;
  }

  .form-field input,
  .form-field textarea {
    padding: 10px 13px;
  }

  .form-field textarea {
    height: 84px;
    min-height: 84px;
  }

  .contact-submit {
    padding: 13px 22px;
  }

  .contact-direct {
    margin-top: 14px;
  }
}

@media (max-width: 1024px) {
  .final-cta-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .final-cta-inner {
    max-width: 720px;
  }
}

@media (max-width: 600px) {
  .final-cta {
    padding: 56px 0 64px;
  }

  .final-cta-headline {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }
}

/* Footer social link */
.footer-linkedin {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  border: 1px solid rgba(10, 102, 194, 0.18);
  border-radius: 4px;
  background: #F2F7FB;
  color: #0A66C2;
  transition: border-color var(--duration), background var(--duration), color var(--duration);
}

.footer-linkedin svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-linkedin:hover,
.footer-linkedin:focus-visible {
  border-color: rgba(10, 102, 194, 0.34);
  background: #E8F2FA;
  color: #084E96;
}

/* ═══════════════════════════════════════════════
   35. FAQ / CTA — SECTION CONTRAST
   A quiet FAQ surface followed by a decisive steel-blue conversion area.
   ═══════════════════════════════════════════════ */
.faq {
  border-top: 1px solid rgba(10, 35, 66, 0.06);
  border-bottom: 1px solid rgba(10, 35, 66, 0.08);
  background: #F4F7F9;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.58);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.84);
}

.final-cta {
  background:
    radial-gradient(circle at 13% 16%, rgba(255, 255, 255, 0.1), transparent 31%),
    linear-gradient(125deg, #315770 0%, #274A63 48%, #1E3B52 100%);
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.final-cta-headline {
  color: var(--white);
}

.final-cta-sub {
  color: #D6E1E8;
}

.final-cta .final-cta-meta {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #F3F7FA;
}

.contact-card {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 22px 55px rgba(5, 23, 38, 0.24);
}

/* ═══════════════════════════════════════════════
   36. MEDORACARE INTERNAL CERTIFICATE
   Proprietary heraldry creates a certification cue without official symbols.
   ═══════════════════════════════════════════════ */
.quality-visual {
  padding: 18px;
  background: #E8EDF1;
}

.quality-assurance-card {
  min-height: 508px;
  padding: 20px 22px 18px;
  border-color: rgba(141, 164, 184, 0.42);
  background:
    linear-gradient(rgba(65, 103, 136, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 103, 136, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, #FCFDFE 0%, #F3F6F8 100%);
  background-size: 36px 36px, 36px 36px, auto;
  box-shadow: 0 15px 34px rgba(10, 35, 66, 0.09);
}

.quality-assurance-card::before {
  inset: 8px;
  border-color: rgba(70, 105, 135, 0.2);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.72);
}

.quality-assurance-head {
  padding: 2px 5px 12px;
  border-bottom-color: rgba(10, 35, 66, 0.13);
  color: var(--navy-800);
  font-size: 0.6rem;
}

.quality-assurance-head span:last-child {
  color: var(--orange-600);
  font-size: 0.6rem;
}

.quality-certificate-body,
.quality-certificate-footer {
  position: relative;
  z-index: 1;
}

.quality-certificate-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 0 10px;
  text-align: center;
}

.quality-certificate-kicker {
  margin: 0 0 4px;
  color: #6D7E8E;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.quality-crest-stage {
  position: relative;
  width: min(100%, 280px);
  margin: -7px auto -13px;
}

.quality-crest-svg {
  display: block;
  width: 100%;
  height: auto;
}

.quality-crest-laurel,
.quality-crest-shield {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quality-crest-laurel {
  stroke: rgba(60, 91, 117, 0.43);
  stroke-width: 2;
}

.quality-crest-shield-outer {
  fill: rgba(30, 76, 112, 0.045);
  stroke: #315E80;
  stroke-width: 2.2;
}

.quality-crest-shield-inner {
  stroke: rgba(49, 94, 128, 0.38);
  stroke-width: 1;
}

.quality-crest-nodes circle {
  fill: var(--orange-500);
  stroke: #F7F9FB;
  stroke-width: 2;
}

.quality-crest-core {
  position: absolute;
  top: 47%;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--navy-900);
  transform: translate(-50%, -50%);
}

.quality-crest-cross {
  position: relative;
  width: 25px;
  height: 25px;
  margin-bottom: 7px;
}

.quality-crest-cross::before,
.quality-crest-cross::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 1px;
  background: var(--orange-500);
  transform: translate(-50%, -50%);
}

.quality-crest-cross::before {
  width: 25px;
  height: 8px;
}

.quality-crest-cross::after {
  width: 8px;
  height: 25px;
}

.quality-crest-core strong {
  font-size: 2.35rem;
  line-height: 0.92;
  letter-spacing: 0.04em;
}

.quality-crest-core small {
  margin-top: 6px;
  color: #6C7D8D;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quality-certificate-title strong,
.quality-certificate-title span {
  display: block;
}

.quality-certificate-title strong {
  color: var(--navy-900);
  font-size: 1.12rem;
  letter-spacing: 0.015em;
}

.quality-certificate-title span {
  margin-top: 4px;
  color: #637587;
  font-size: 0.67rem;
  font-weight: 650;
}

.quality-certificate-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 5px 1px;
  border-top: 1px solid rgba(10, 35, 66, 0.13);
  color: #607183;
  font-size: 0.56rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quality-certificate-footer strong {
  margin-right: 4px;
  color: var(--orange-600);
  font-size: 0.74rem;
}

@media (max-width: 600px) {
  .quality-visual {
    min-height: 430px;
    padding: 12px;
  }

  .quality-assurance-card {
    min-height: 404px;
    padding: 17px 18px 15px;
  }

  .quality-crest-stage {
    width: min(100%, 235px);
  }

  .quality-crest-core strong {
    font-size: 2rem;
  }
}

/* ═══════════════════════════════════════════════
   37. QUALITY CERTIFICATE — INSTITUTIONAL VERSION
   The document structure, not an oversized emblem, carries authority.
   ═══════════════════════════════════════════════ */
.quality-assurance-card {
  background:
    radial-gradient(circle at 82% 76%, rgba(47, 87, 118, 0.045), transparent 26%),
    linear-gradient(rgba(65, 103, 136, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 103, 136, 0.025) 1px, transparent 1px),
    #FCFDFE;
  background-size: auto, 44px 44px, 44px 44px, auto;
}

.quality-assurance-card::after {
  content: 'MC';
  position: absolute;
  right: 26px;
  bottom: 44px;
  color: rgba(19, 55, 84, 0.025);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 8.5rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.quality-certificate-body {
  align-items: stretch;
  justify-content: flex-start;
  padding: 34px 18px 18px;
  text-align: left;
}

.quality-certificate-heading {
  position: relative;
  z-index: 1;
  max-width: 390px;
}

.quality-certificate-heading p {
  margin: 0 0 17px;
  color: #718191;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quality-certificate-heading strong {
  display: block;
  max-width: 360px;
  color: var(--navy-900);
  font-family: Georgia, Cambria, 'Times New Roman', serif;
  font-size: clamp(2.15rem, 3.4vw, 3rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.quality-certificate-heading span {
  display: block;
  margin-top: 15px;
  color: #617386;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.quality-certificate-register {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
  padding: 18px 0;
  border-top: 1px solid rgba(10, 35, 66, 0.16);
  border-bottom: 1px solid rgba(10, 35, 66, 0.12);
}

.quality-certificate-register div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(10, 35, 66, 0.11);
}

.quality-certificate-register small,
.quality-certificate-register strong {
  display: block;
}

.quality-certificate-register small {
  margin-bottom: 7px;
  color: #8491A0;
  font-size: 0.53rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quality-certificate-register strong {
  color: var(--navy-900);
  font-size: 0.84rem;
}

.quality-certificate-register div:last-child strong {
  color: #397A57;
}

.quality-certificate-approval {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 28px;
}

.quality-certificate-process {
  min-width: 175px;
}

.quality-certificate-process > span {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  border-top: 1px solid rgba(10, 35, 66, 0.28);
}

.quality-certificate-process small,
.quality-certificate-process strong {
  display: block;
}

.quality-certificate-process small {
  color: #8793A0;
  font-size: 0.5rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quality-certificate-process strong {
  margin-top: 4px;
  color: var(--navy-800);
  font-size: 0.72rem;
}

.quality-certificate-seal {
  display: flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(39, 79, 111, 0.45);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 5px #FCFDFE,
    inset 0 0 0 6px rgba(39, 79, 111, 0.18);
  color: #315E80;
  transform: rotate(-5deg);
}

.quality-certificate-seal span {
  font-family: Georgia, Cambria, 'Times New Roman', serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.quality-certificate-seal small {
  margin-top: 4px;
  font-size: 0.42rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .quality-certificate-body {
    padding: 25px 10px 14px;
  }

  .quality-certificate-heading strong {
    font-size: 2.15rem;
  }

  .quality-certificate-register {
    margin-top: 27px;
  }

  .quality-certificate-process {
    min-width: 145px;
  }

  .quality-certificate-seal {
    width: 66px;
    height: 66px;
  }
}

/* ═══════════════════════════════════════════════
   38. CHALLENGE — EDITORIAL HEADING BALANCE
   Preserve the left axis while reducing the top-heavy desktop composition.
   ═══════════════════════════════════════════════ */
.challenge-headline {
  max-width: 1240px;
  font-size: clamp(2.55rem, 3.3vw, 3.35rem);
  line-height: 1.055;
  letter-spacing: -0.036em;
  text-wrap: pretty;
}

.challenge-content {
  margin-top: clamp(30px, 3vw, 38px);
}

@media (max-width: 900px) {
  .challenge-headline {
    max-width: 780px;
    font-size: clamp(2.35rem, 6.2vw, 3.2rem);
  }

  .challenge-content {
    margin-top: 34px;
  }
}

@media (max-width: 600px) {
  .challenge-headline {
    font-size: clamp(2.05rem, 9.2vw, 2.5rem);
    line-height: 1.08;
  }

  .challenge-content {
    margin-top: 30px;
  }
}

/* ═══════════════════════════════════════════════
   39. FOOTER — MOBILE COMPOSITION
   Rebuild the desktop grid as one deliberate, compact information column.
   ═══════════════════════════════════════════════ */
@media (max-width: 600px) {
  .site-footer {
    padding: 34px 0 20px;
  }

  .footer-container {
    row-gap: 0;
    column-gap: 0;
  }

  .footer-brand {
    position: relative;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(10, 35, 66, 0.09);
  }

  .footer-logo-img {
    height: 34px;
  }

  .footer-brand p {
    max-width: 270px;
    margin: 14px 48px 0 0;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .footer-linkedin {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 0;
  }

  .footer-contact,
  .footer-legal {
    padding: 22px 0;
    border-bottom: 1px solid rgba(10, 35, 66, 0.09);
  }

  .footer-label {
    margin-bottom: 11px;
    font-size: 0.62rem;
  }

  .footer-contact a,
  .footer-links a {
    font-size: 0.84rem;
  }

  .footer-contact a:last-child {
    margin-bottom: 0;
  }

  .footer-links {
    justify-content: start;
    justify-items: start;
    gap: 8px;
  }

  .footer-copy {
    display: grid;
    gap: 5px;
    margin-top: 0;
    padding-top: 18px;
    border-top: 0;
    font-size: 0.68rem;
    line-height: 1.45;
  }
}

/* ═══════════════════════════════════════════════
   41. HERO — UNIFIED FINAL HEADLINE
   The customer's complete promise is one headline with one visual weight.
   ═══════════════════════════════════════════════ */
.hero h1 {
  max-width: 720px;
  font-size: clamp(2.65rem, 3.25vw, 3.5rem);
}

.hero-title-main,
.hero-title-promise {
  display: inline;
  max-width: none;
  margin-top: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

@media (max-width: 1180px) {
  .hero h1 {
    font-size: clamp(2.2rem, 3.65vw, 2.5rem);
  }
}

@media (min-width: 769px) {
  .hero-title-promise {
    display: block;
    font-size: 0.9em;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(1.95rem, 8.1vw, 2.25rem);
  }
}

/* Keep the decorative hero frame transparent in WP Accessibility contrast mode. */
html body main .hero .hero-visual::before {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* Preserve transparent MedoraCare logos in WP Accessibility contrast mode. */
html body .nav-logo,
html body .nav-logo .site-logo-img,
html body .footer-logo,
html body .footer-logo .footer-logo-img {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* Clean FAQ presentation in WP Accessibility high-contrast mode. */
body.contrast .faq,
body.contrast .faq-list,
body.contrast .faq-item,
body.contrast .faq-answer,
body.contrast .faq-answer-inner {
  background: #000 !important;
  background-color: #000 !important;
  color: #fff !important;
}

body.contrast .faq-item {
  border-color: #fff !important;
}

body.contrast .faq-question {
  background: #000 !important;
  background-color: #000 !important;
  color: #fff !important;
  border: 1px solid #fff !important;
}

body.contrast .faq-question *,
body.contrast .faq-number,
body.contrast .faq-question-text,
body.contrast .faq-toggle {
  background: transparent !important;
  background-color: transparent !important;
  color: #fff !important;
}

body.contrast .faq-toggle {
  border: 1px solid #fff !important;
}

/* Keep partner marks readable against the black contrast background. */
body.contrast .partner-logo,
body.contrast .partner-item > img {
  padding: 6px !important;
  background: #fff !important;
  background-color: #fff !important;
  filter: none !important;
  opacity: 1 !important;
  border-radius: 4px !important;
}

/* Render the CSS-built quality certificate as a clear monochrome document. */
body.contrast .quality-visual,
body.contrast .quality-assurance-card {
  background: #000 !important;
  background-color: #000 !important;
  background-image: none !important;
  border-color: #fff !important;
}

body.contrast .quality-assurance-card *,
body.contrast .quality-assurance-head,
body.contrast .quality-certificate-body,
body.contrast .quality-certificate-heading,
body.contrast .quality-certificate-register,
body.contrast .quality-certificate-approval,
body.contrast .quality-certificate-process,
body.contrast .quality-certificate-seal {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: #fff !important;
  border-color: #fff !important;
}

body.contrast .quality-assurance-card::before {
  background: transparent !important;
  border-color: #fff !important;
}

body.contrast .quality-assurance-card::after {
  display: none !important;
}
