/* ===== CS Travel Group — Premium Editorial Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  /* Brand palette — CS Travel Group Premium */
  --primary: #062B55;
  --primary-light: #0F5EA8;
  --secondary: #6A9BC8;
  --secondary-light: #BFD8F4;
  --sky: #BFD8F4;
  --sky-soft: #EAF6FF;
  --accent: #FFD21F;
  --accent-strong: #FFC928;
  --accent-light: #FFD21F;
  --navy-deep: #031B34;
  --gold-glow: rgba(255,210,31,.12);
  
  --bg: #F7FAFC;
  --bg-alt: #EAF6FF;
  --surface: #FFFFFF;
  
  --text: #0B2545;
  --text-secondary: #4B6078;
  --text-light: #94A3B8;
  --border: #DCE8F4;
  
  /* Shadows - Softer for premium feel */
  --shadow-sm: 0 10px 26px rgba(6,43,85,.07);
  --shadow-md: 0 18px 40px rgba(6,43,85,.10);
  --shadow-lg: 0 28px 60px rgba(6,43,85,.14);
  --shadow-xl: 0 40px 86px rgba(6,43,85,.18);
  
  /* Border radius - Premium rounded */
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  
  /* Typography */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing & Transitions */
  --transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.3s ease;
  --max-width: 1240px;
  --section-py: 120px;
  --section-py-mobile: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: #0F5EA8 transparent;
  width: 100%;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #0F5EA8;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #062B55;
}

body {
  font-family: var(--font-body);
  font-synthesis: none;
  font-size: 1.02rem;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(191,216,244,.42), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, var(--bg) 36%, #F6FAFE 100%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

p, li, h1, h2, h3, h4, h5 {
  overflow-wrap: break-word;
}

p, li {
  text-wrap: pretty;
}

.nowrap {
  white-space: nowrap;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section[id] { scroll-margin-top: 104px; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.1; font-weight: 800; color: var(--text); text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

.section-label { display: none !important; }
.section-label::before { display: none !important; }
.section-subtitle {
  font-size: clamp(1.08rem, 1.6vw, 1.24rem); color: var(--text-secondary);
  max-width: 640px; line-height: 1.7;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-sm); font-weight: 700;
  font-size: 0.95rem; transition: all var(--transition); position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.btn-primary {
  background: var(--primary); color: #fff;
}
.btn-primary:hover { background: var(--primary); transform: none; box-shadow: none; }
.btn-secondary {
  background: transparent; color: var(--surface); border: 1.5px solid rgba(255,255,255,.3);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.nav-portal,
.mobile-nav a[href="/portal/"] {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.nav-portal:hover,
.mobile-nav a[href="/portal/"]:hover {
  background: #ffd84d;
  color: var(--primary);
  border-color: #ffd84d;
}
.btn-dark {
  background: var(--primary); color: var(--surface);
}
.btn-dark:hover { background: var(--primary-light); transform: none; box-shadow: none; }
.btn-outline {
  background: transparent; color: var(--primary); border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--secondary); color: var(--secondary); }
.btn svg, .btn i { font-size: 1.1em; }

/* ===== Header / Nav ===== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 20px 0; transition: all var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,.92); padding: 12px 0; box-shadow: 0 1px 24px rgba(6,43,85,.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(6,43,85,.05);
}
.header.scrolled .nav-links a { color: var(--text); }
.header.scrolled .nav-logo { color: var(--primary); }
.header .container { max-width: 100%; padding: 0 4%; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 40px; }

.nav-logo {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-img {
  height: 80px;
  max-width: 300px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: rgba(255,255,255,.9); font-size: 0.95rem; font-weight: 600;
  transition: color var(--transition-fast); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--accent); transition: width var(--transition);
}
.nav-links a:hover { color: inherit; }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-cta { margin-left: 0; }

.lang-switcher {
  position: relative;
  z-index: 100;
}
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #fff;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: all 0.3s ease;
  padding: 5px 0;
}
.lang-trigger:hover {
  opacity: 0.7;
}
.lang-trigger .current-lang {
  font-weight: 500;
  letter-spacing: 0.2px;
}
.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: transparent;
  min-width: 150px;
  display: none;
  flex-direction: column;
  padding: 0 0 12px 0;
  z-index: 1001;
}
.lang-switcher:hover .lang-dropdown,
.lang-switcher.open .lang-dropdown {
  display: flex;
  animation: fadeIn 0.2s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
.lang-divider {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 4px 0 12px 0;
}
.lang-btn {
  background: #3a3a3a;
  color: #fff;
  border: none;
  padding: 8px 0;
  margin: 0 5px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: var(--font-sans);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  display: block;
  width: 130px; /* Fixed width to ensure consistency */
  font-weight: 500;
}
.lang-btn:hover {
  background: #4a4a4a;
}
.lang-btn.active {
  display: none;
}

/* Header scrolled state adjustments */
.header.scrolled .lang-trigger {
  color: var(--text);
}
.header.scrolled .lang-dropdown {
  background: transparent;
}
.header.scrolled .lang-divider {
  background: rgba(0,0,0,0.1);
}
.header.scrolled .lang-btn {
  background: #f0f0f0;
  color: var(--text);
}
.header.scrolled .lang-btn:hover {
  background: #e5e5e5;
}
.header.scrolled .nav-logo-img {
  height: 55px;
}
.lang-sep { opacity: 0.3; }

body.b2b-landing .nav-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
body.b2b-landing .header.scrolled .nav-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.b2b-landing .header {
  background: rgba(255,255,255,.88);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16,42,76,.08);
}

body.b2b-landing .header .nav-links a,
body.b2b-landing .header .lang-trigger {
  color: var(--text);
}

body.b2b-landing .header .nav-logo-img {
  height: 55px;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; padding: 4px; cursor: pointer;
}
.hamburger span {
  width: 24px; height: 2px; background: #fff; border-radius: 2px;
  transition: all var(--transition-fast);
}
.header.scrolled .hamburger span { background: var(--primary); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero Section (Premium) ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--primary); overflow: hidden; text-align: center;
}
.pin-spacer:has(> .hero) {
  background: var(--primary);
}
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 58vh;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6,43,85,0) 0%, rgba(6,43,85,0.12) 18%, rgba(6,43,85,.38) 36%, rgba(6,43,85,.68) 54%, rgba(6,43,85,.92) 72%, var(--primary) 100%);
}
.hero-slides {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
}
.hero-slide.active {
  opacity: 1; visibility: visible;
}
.hero-slide img.ken-burns {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenBurns 20s ease-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.15); }
}
.hero-overlay {
  position: absolute; inset: -2px 0 -12vh 0; z-index: 2;
  background:
    radial-gradient(circle at 50% 44%, rgba(191,216,244,.10), transparent 34%),
    linear-gradient(180deg, rgba(6,43,85,.56) 0%, rgba(6,43,85,.46) 18%, rgba(6,43,85,.50) 36%, rgba(6,43,85,.62) 50%, rgba(6,43,85,.78) 65%, rgba(6,43,85,.94) 82%, var(--primary) 100%);
}

.hero-flight-path {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.flight-svg { width: 100%; height: 100%; }
.flight-route { opacity: .26; }
.flight-route-active { opacity: .62; filter: none; }
.airplane { opacity: .86; }

.hero-content {
  position: relative; z-index: 4; padding-top: 40px;
  display: flex; flex-direction: column; align-items: center; width: 100%;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 100px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: none;
}
.hero-text-container {
  position: relative; width: 100%; min-height: 260px; display: flex; justify-content: center; align-items: center;
}
.hero-text-slide {
  position: absolute; width: 100%; opacity: 0; visibility: hidden; filter: blur(3px);
  transition: opacity 0.45s ease, visibility 0.45s ease, filter 0.45s ease, transform 0.45s ease;
  display: flex; flex-direction: column; align-items: center;
}
.hero-text-slide.active {
  opacity: 1; visibility: visible; filter: blur(0);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
  padding: 8px 20px; border-radius: 100px; margin-bottom: 32px;
  font-size: 0.85rem; font-weight: 600; color: #fff; border: 1px solid rgba(255,255,255,.2);
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.hero-title {
  color: #fff; font-size: clamp(3.2rem, 6.2vw, 5.5rem);
  line-height: 1.05; max-width: 980px; margin-bottom: 26px;
  margin-top: 18px;
  letter-spacing: 0;
  text-shadow: 0 22px 60px rgba(0,0,0,.34);
}
.hero-title em {
  font-family: var(--font-heading);
  color: var(--accent);
  font-style: italic;
  font-weight: 800;
  display: inline-block;
  transform: skewX(-11deg);
  transform-origin: left center;
}
.hero-desc {
  color: rgba(255,255,255,.88); font-size: clamp(1.12rem, 1.6vw, 1.32rem);
  max-width: 760px; line-height: 1.65; margin-bottom: 0;
}
.hero-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.hero-progress-dot {
  width: 34px;
  height: 3px;
  border-radius: 20px;
  background: rgba(255,255,255,.28);
  transition: width .35s ease, background .35s ease, opacity .35s ease;
}
.hero-progress-dot.active {
  width: 58px;
  background: var(--accent);
  opacity: 1;
}
.hero-cta-container {
  display: flex;
  justify-content: center;
  margin-top: clamp(34px, 5.5vh, 78px);
  text-align: center;
  width: 100%;
}
.hero-cta {
  background: var(--accent);
  color: var(--primary);
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 800;
  min-width: 190px;
  padding: 16px 34px;
}
.hero-cta:hover {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
  transform: none;
}
.hero-search-bar {
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.16); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  padding: 8px 8px 8px 24px; border-radius: 100px; max-width: 640px; width: 100%;
  box-shadow: 0 28px 70px rgba(0,0,0,0.26);
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-top: 110px;
}
.search-input-wrap {
  display: flex; align-items: center; gap: 12px; flex: 1; color: rgba(255,255,255,0.7);
}
.search-input-wrap input {
  border: none; background: transparent; width: 100%; outline: none;
  font-family: var(--font-body); font-size: 1.05rem; color: #fff;
}
.search-input-wrap input::placeholder { color: rgba(255,255,255,0.5); }
.search-btn { padding: 16px 32px; border-radius: 100px; font-weight: 600; white-space: nowrap; }

/* ===== Trust Banner ===== */
.trust-banner {
  background: rgba(255,255,255,.82); border-bottom: 1px solid var(--border);
  padding: 28px 0;
  backdrop-filter: blur(14px);
}
.trust-grid {
  display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(234,244,255,.78));
  border: 1px solid rgba(16,42,76,.08);
  box-shadow: 0 18px 36px rgba(16,42,76,.05);
}
.trust-item strong { color: var(--primary); font-weight: 600; font-size: 1.1rem; }
.trust-item span { color: var(--text-secondary); font-size: 0.95rem; }
.trust-divider {
  width: 1px; height: 24px; background: var(--border);
}

/* ===== Evaneos Services Parallax ===== */
.ev-services {
  position: relative; min-height: 80vh; display: flex; align-items: center; justify-content: center;
  padding: 120px 0; overflow: hidden;
}
.ev-services::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
}
.ev-bg {
  position: absolute; inset: 0; z-index: 1;
}
.ev-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.6; filter: brightness(0.6);
}
.ev-container { position: relative; z-index: 2; width: 100%; }
.ev-card {
  background: rgba(255,255,255,.96); border-radius: 28px;
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr); max-width: 1180px; margin: 0 auto;
  box-shadow: 0 32px 80px rgba(6,43,85,.12); overflow: hidden;
  border: none;
  backdrop-filter: blur(18px);
}
.ev-card-content { padding: 48px 56px; display: flex; flex-direction: column; justify-content: center; }
.ev-title { font-size: clamp(2rem, 3vw, 2.5rem); margin-bottom: 24px; color: var(--primary); }
.ev-title em { font-style: normal; color: var(--accent); font-family: var(--font-heading); }
.ev-card-content p { color: var(--text-secondary); margin-bottom: 32px; font-size: 1.12rem; line-height: 1.75; }
.ev-list { display: flex; flex-direction: column; gap: 24px; list-style: none; }
.ev-list li { display: flex; flex-direction: column; gap: 4px; }
.ev-list strong { color: var(--primary); font-size: 1.05rem; }
.ev-list span { color: var(--text-secondary); font-size: 0.95rem; }
.ev-card-image {
  background: transparent;
  overflow: hidden;
  border: none;
  padding: 0;
  margin: 0;
}
.ev-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  outline: none;
}

/* ===== Editorial Promise ===== */
.editorial-promise {
  padding: 80px 0; background: linear-gradient(180deg, var(--bg) 0%, #FFFFFF 100%);
}
.ed-header {
  display: flex; flex-direction: column; gap: 16px; margin-bottom: 50px; max-width: 760px; margin-left: auto; margin-right: auto; text-align: center;
}
.ed-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.1; color: var(--primary);
}
.ed-header h2 em {
  font-style: normal; color: var(--accent); font-family: var(--font-heading); font-weight: 800;
}
.ed-header p {
  font-size: 1.18rem; color: var(--text-secondary); line-height: 1.72;
}
.ed-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px;
}
.ed-card {
  display: flex; flex-direction: column; gap: 16px;
  padding: 28px 24px;
  border-left: 1px solid rgba(16,42,76,.12);
}
.ed-number {
  font-family: var(--font-heading); font-size: 4rem; color: var(--accent);
  line-height: 1; font-weight: 800; font-style: normal;
}
.ed-card h3 {
  font-size: 1.25rem; color: var(--primary); font-weight: 600; font-family: var(--font-body);
}
.ed-line {
  width: 40px; height: 2px; background: var(--secondary-light); margin: 8px 0;
}
.ed-card p {
  color: var(--text-secondary); font-size: 1.03rem; line-height: 1.72;
}
.ed-card p strong {
  display: block; color: var(--primary); margin-bottom: 8px; font-weight: 600;
}

/* ===== Process ===== */
.process { padding: var(--section-py) 0; background: linear-gradient(180deg, #FFFFFF 0%, var(--sky-soft) 100%); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}
.step {
  text-align: center; position: relative; padding: 0 20px;
}
.step-number {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 28px;
  background: var(--surface); border: 2px solid rgba(106,155,200,.28);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
  color: var(--secondary); position: relative; z-index: 2;
  transition: all var(--transition);
}
.step:hover .step-number {
  background: var(--secondary); color: #fff; border-color: var(--secondary);
  transform: scale(1.08); box-shadow: 0 12px 36px rgba(106,155,200,.35);
}
.step h4 { margin-bottom: 8px; }
.step p { color: var(--text-secondary); font-size: 0.98rem; line-height: 1.7; }

/* ===== Destinations (Editorial Masonry) ===== */
.destinations { padding: 80px 0 120px; background: var(--bg-alt); }
.dest-masonry {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
}
.dest-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer;
}
.dest-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.25,.46,.45,.94);
}
.dest-item:hover img { transform: scale(1.05); }
.dest-info {
  position: absolute; bottom: 0; left: 0; width: 100%;
  background: linear-gradient(0deg, rgba(18,38,64,0.95) 0%, rgba(18,38,64,0.6) 50%, rgba(18,38,64,0) 100%);
  padding: 60px 32px 32px; color: #fff;
}
.dest-info h3 {
  font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 8px; font-weight: 600;
}
.dest-info p {
  color: rgba(255,255,255,.85); font-size: 1.03rem;
}
.dest-large { grid-column: span 7; aspect-ratio: 16/10; }
.dest-tall { grid-column: span 5; grid-row: span 2; }
.dest-wide { grid-column: span 7; aspect-ratio: 16/9; }
@media (max-width: 900px) {
  .dest-large, .dest-tall, .dest-wide { grid-column: span 12; grid-row: auto; aspect-ratio: 16/12; }
}

/* ===== Wave Divider ===== */
.wave-divider {
  width: 100%; height: 60px; overflow: hidden; line-height: 0;
  background: var(--surface);
  box-shadow: 0 28px 70px rgba(0,0,0,0.26);
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-top: 110px;
}
.search-input-wrap {
  display: flex; align-items: center; gap: 12px; flex: 1; color: rgba(255,255,255,0.7);
}
.search-input-wrap input {
  border: none; background: transparent; width: 100%; outline: none;
  font-family: var(--font-body); font-size: 1.05rem; color: #fff;
}
.search-input-wrap input::placeholder { color: rgba(255,255,255,0.5); }
.search-btn { padding: 16px 32px; border-radius: 100px; font-weight: 600; white-space: nowrap; }

/* ===== Trust Banner ===== */
.trust-banner {
  background: rgba(255,255,255,.82); border-bottom: 1px solid var(--border);
  padding: 28px 0;
  backdrop-filter: blur(14px);
}
.trust-grid {
  display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(234,244,255,.78));
  border: 1px solid rgba(16,42,76,.08);
  box-shadow: 0 18px 36px rgba(16,42,76,.05);
}
.trust-item strong { color: var(--primary); font-weight: 600; font-size: 1.1rem; }
.trust-item span { color: var(--text-secondary); font-size: 0.95rem; }
.trust-divider {
  width: 1px; height: 24px; background: var(--border);
}

/* ===== Evaneos Services Parallax ===== */
.ev-services {
  position: relative; min-height: 80vh; display: flex; align-items: center; justify-content: center;
  padding: 120px 0; overflow: hidden;
}
.ev-services::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
}
.ev-bg {
  position: absolute; inset: 0; z-index: 1;
}
.ev-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.6; filter: brightness(0.6);
}
.ev-container { position: relative; z-index: 2; width: 100%; }
.ev-card {
  background: rgba(255,255,255,.96); border-radius: 28px;
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr); max-width: 1180px; margin: 0 auto;
  box-shadow: 0 32px 80px rgba(6,43,85,.12); overflow: hidden;
  border: none;
  backdrop-filter: blur(18px);
}
.ev-card-content { padding: 48px 56px; display: flex; flex-direction: column; justify-content: center; }
.ev-title { font-size: clamp(2rem, 3vw, 2.5rem); margin-bottom: 24px; color: var(--primary); }
.ev-title em { font-style: normal; color: var(--accent); font-family: var(--font-heading); }
.ev-card-content p { color: var(--text-secondary); margin-bottom: 32px; font-size: 1.12rem; line-height: 1.75; }
.ev-list { display: flex; flex-direction: column; gap: 24px; list-style: none; }
.ev-list li { display: flex; flex-direction: column; gap: 4px; }
.ev-list strong { color: var(--primary); font-size: 1.05rem; }
.ev-list span { color: var(--text-secondary); font-size: 0.95rem; }
.ev-card-image {
  background: transparent;
  overflow: hidden;
  border: none;
  padding: 0;
  margin: 0;
}
.ev-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  outline: none;
}

/* ===== Editorial Promise ===== */
.editorial-promise {
  padding: 80px 0; background: linear-gradient(180deg, var(--bg) 0%, #FFFFFF 100%);
}
.ed-header {
  display: flex; flex-direction: column; gap: 16px; margin-bottom: 50px; max-width: 760px; margin-left: auto; margin-right: auto; text-align: center;
}
.ed-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.1; color: var(--primary);
}
.ed-header h2 em {
  font-style: normal; color: var(--accent); font-family: var(--font-heading); font-weight: 800;
}
.ed-header p {
  font-size: 1.18rem; color: var(--text-secondary); line-height: 1.72;
}
.ed-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px;
}
.ed-card {
  display: flex; flex-direction: column; gap: 16px;
  padding: 28px 24px;
  border-left: 1px solid rgba(16,42,76,.12);
}
.ed-number {
  font-family: var(--font-heading); font-size: 4rem; color: var(--accent);
  line-height: 1; font-weight: 800; font-style: normal;
}
.ed-card h3 {
  font-size: 1.25rem; color: var(--primary); font-weight: 600; font-family: var(--font-body);
}
.ed-line {
  width: 40px; height: 2px; background: var(--secondary-light); margin: 8px 0;
}
.ed-card p {
  color: var(--text-secondary); font-size: 1.03rem; line-height: 1.72;
}
.ed-card p strong {
  display: block; color: var(--primary); margin-bottom: 8px; font-weight: 600;
}

/* ===== Process ===== */
.process { padding: var(--section-py) 0; background: linear-gradient(180deg, #FFFFFF 0%, var(--sky-soft) 100%); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}
.step {
  text-align: center; position: relative; padding: 0 20px;
}
.step-number {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 28px;
  background: var(--surface); border: 2px solid rgba(106,155,200,.28);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
  color: var(--secondary); position: relative; z-index: 2;
  transition: all var(--transition);
}
.step:hover .step-number {
  background: var(--secondary); color: #fff; border-color: var(--secondary);
  transform: scale(1.08); box-shadow: 0 12px 36px rgba(106,155,200,.35);
}
.step h4 { margin-bottom: 8px; }
.step p { color: var(--text-secondary); font-size: 0.98rem; line-height: 1.7; }

/* ===== Destinations (Editorial Masonry) ===== */
.destinations { padding: 80px 0 120px; background: var(--bg-alt); }
.dest-masonry {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
}
.dest-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer;
}
.dest-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.25,.46,.45,.94);
}
.dest-item:hover img { transform: scale(1.05); }
.dest-info {
  position: absolute; bottom: 0; left: 0; width: 100%;
  background: linear-gradient(0deg, rgba(18,38,64,0.95) 0%, rgba(18,38,64,0.6) 50%, rgba(18,38,64,0) 100%);
  padding: 60px 32px 32px; color: #fff;
}
.dest-info h3 {
  font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 8px; font-weight: 600;
}
.dest-info p {
  color: rgba(255,255,255,.85); font-size: 1.03rem;
}
.dest-large { grid-column: span 7; aspect-ratio: 16/10; }
.dest-tall { grid-column: span 5; grid-row: span 2; }
.dest-wide { grid-column: span 7; aspect-ratio: 16/9; }
@media (max-width: 900px) {
  .dest-large, .dest-tall, .dest-wide { grid-column: span 12; grid-row: auto; aspect-ratio: 16/12; }
}

/* ===== Wave Divider ===== */
.wave-divider {
  width: 100%; height: 60px; overflow: hidden; line-height: 0;
  background: var(--surface);
}
.wave-divider svg {
  display: block; width: calc(100% + 1.3px); height: 100px;
}

/* ===== Credentials (Values Style) ===== */
.credentials { padding: 80px 0; background: var(--bg); }
.cred-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.cred-list-item {
  display: flex; gap: 28px; align-items: flex-start;
  background: #fff;
  border-radius: 22px;
  padding: 36px 40px;
  box-shadow: 0 8px 32px rgba(6,43,85,.06);
  border: 1px solid rgba(6,43,85,.05);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.cred-list-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(6,43,85,.10);
}
.cred-icon {
  flex-shrink: 0; width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  background: var(--bg-alt);
  border-radius: 50%;
}
.cred-text h4 { font-size: 1.25rem; margin-bottom: 8px; color: var(--primary); }
.cred-text p { color: var(--text-secondary); line-height: 1.72; font-size: 1.03rem; }

/* ===== About ===== */
.about { padding: var(--section-py) 0; background: #F7FAFC; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 56px; }
.about-image { border-radius: 32px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 20px 60px rgba(6,43,85,.10); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text p { color: var(--text-secondary); margin-bottom: 20px; line-height: 1.85; font-size: 1.04rem; }
.about-founders-img {
  margin-top: 32px;
  width: 100%;
}
.about-founders-img img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: block;
}

/* ===== Contact ===== */
.contact {
  padding: var(--section-py) 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(191,216,244,.15), transparent 28%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--primary) 52%, var(--primary-light) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.contact::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(191,216,244,.22), transparent 70%);
}
.contact h2 { color: #fff; }
.contact .section-subtitle { color: rgba(255,255,255,.65); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 56px; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .ci-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.1);
  font-size: 1.1rem; color: var(--accent);
}
.contact-item h4 { color: #fff; margin-bottom: 4px; font-size: 1rem; }
.contact-item p { color: rgba(255,255,255,.78); font-size: 0.98rem; line-height: 1.65; }
.contact-item a { color: var(--accent); }
.contact-item a:hover { color: var(--accent); }

.contact-page .contact {
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: calc(var(--section-py) + 72px);
}

.contact-page .contact-grid,
.contact-page .contact-info,
.contact-page .contact-form {
  min-width: 0;
}

.contact-page .contact h1 {
  color: #fff;
  font-size: clamp(2.35rem, 1.35rem + 3.2vw, 4.4rem);
  line-height: 1.05;
  max-width: 920px;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.contact-form {
  background: rgba(255,255,255,.1); backdrop-filter: blur(24px);
  border: 1px solid rgba(191,216,244,.26); border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,.8); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  color: #fff; font-family: var(--font-body); font-size: 1rem;
  transition: border-color var(--transition-fast);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.48); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--sky);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--primary); color: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row.compact { grid-template-columns: minmax(0, 1fr); }
.form-submit { width: 100%; justify-content: center; }
.form-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.form-step-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.22);
  font-size: .86rem;
  font-weight: 700;
}
.form-step-dot.active,
.form-step-dot.complete {
  color: var(--primary);
  background: var(--accent);
  border-color: var(--accent);
}
.form-step-line { flex: 1; height: 1px; background: rgba(255,255,255,.2); }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step-copy { margin-bottom: 22px; }
.form-step-copy span {
  display: block;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  margin-bottom: 8px;
}
.form-step-copy p { color: rgba(255,255,255,.68); line-height: 1.65; font-size: 1rem; margin: 0; }
.form-actions { display: grid; grid-template-columns: .42fr 1fr; gap: 14px; }
.form-next { width: 100%; justify-content: center; }

/* ===== Home final CTA ===== */
.home-final-cta {
  background:
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  padding: clamp(64px, 8vw, 110px) 0;
}

.home-final-cta-inner {
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.82) 48%, rgba(255,255,255,.64) 100%),
    url("../assets/images/optimized/booking-sky-cta.webp") center / cover no-repeat;
  border: 1px solid rgba(106,155,200,.18);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(16,42,76,.1);
  color: var(--primary);
  margin-inline: auto;
  max-width: 1060px;
  overflow: hidden;
  padding: clamp(30px, 4.6vw, 58px) clamp(24px, 5vw, 72px);
  position: relative;
  text-align: left;
}

.home-final-cta-inner::before {
  background:
    radial-gradient(circle at 12% 50%, rgba(191,216,244,.24), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,.3), transparent);
  content: "";
  inset: 0;
  opacity: .78;
  position: absolute;
}

.home-final-cta-inner > * {
  position: relative;
  z-index: 1;
}

.home-final-cta .section-label {
  color: var(--accent);
  justify-content: flex-start;
}

.home-final-cta h2 {
  color: var(--primary);
  font-size: clamp(2rem, 1.42rem + 1.9vw, 3.15rem);
  line-height: 1.04;
  margin: 0 0 14px;
  max-width: 650px;
  text-wrap: balance;
}

.home-final-cta p {
  color: var(--text-secondary);
  font-size: clamp(.98rem, .92rem + .22vw, 1.12rem);
  line-height: 1.62;
  margin: 0 0 24px;
  max-width: 620px;
}

.home-final-contact-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-final-contact-pill {
  align-items: center;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(106,155,200,.26);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(16,42,76,.07);
  color: var(--primary);
  display: inline-flex;
  font-size: .96rem;
  font-weight: 800;
  gap: 10px;
  min-height: 48px;
  padding: 10px 16px 10px 12px;
  text-decoration: none;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.home-final-contact-pill:hover {
  border-color: rgba(106,155,200,.5);
  box-shadow: 0 16px 34px rgba(16,42,76,.11);
  transform: translateY(-1px);
}

.home-final-contact-icon {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(106,155,200,.24);
  border-radius: 50%;
  color: var(--secondary);
  display: inline-flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.home-final-button {
  border-radius: 16px;
  min-height: 48px;
  padding-inline: 24px;
  white-space: nowrap;
}

/* ===== Footer ===== */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px;
  padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { margin-top: 16px; font-size: 0.98rem; line-height: 1.7; max-width: 320px; color: rgba(255,255,255,.7); }
.footer h5 {
  color: #fff; font-family: var(--font-heading); font-size: .85rem;
  margin-bottom: 22px; letter-spacing: 0.05em; text-transform: uppercase;
}
.footer ul li { margin-bottom: 14px; }
.footer ul a { font-size: 0.95rem; color: rgba(255,255,255,.6); transition: color var(--transition-fast); }
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0; font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.45);
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all var(--transition-fast);
  border: 1px solid rgba(255,255,255,.08);
}
.footer-social a:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }

/* ===== GSAP Setup & Premium UI ===== */
/* Keep content visible if JavaScript or an external animation library fails. */
.reveal, .reveal-text { visibility: visible; }

/* Native scrollbars hidden by design. */
* {
  scrollbar-width: none;
}

*::-webkit-scrollbar {
  display: none;
}

/* Mouse Effects Disabled */
.cursor-dot, .cursor-outline {
  display: none !important;
}

/* Noise Overlay */
.noise-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ===== Mobile Nav Overlay ===== */
.mobile-nav {
  position: fixed; inset: 0; background: rgba(18,38,64,.97); backdrop-filter: blur(20px);
  z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.mobile-nav.active { opacity: 1; pointer-events: all; }
.mobile-nav a {
  color: #fff; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600;
  transition: color var(--transition-fast);
}
.mobile-nav a:hover { color: var(--accent); }

/* ===== Profiles Section (B2B Focus) ===== */
.profiles-section {
  padding: var(--section-py) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(191,216,244,.18), transparent 50%),
    linear-gradient(180deg, #EAF6FF 0%, #FFFFFF 100%);
  position: relative;
}
.profiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
  align-items: stretch;
}
.profile-card {
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(6,43,85,.08);
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid rgba(6,43,85,.06);
  display: flex;
  flex-direction: column;
}
.profile-card:hover, .profile-card.active {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(106,155,200,.45);
}
.profile-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  min-height: 240px;
}
.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.profile-card:hover .profile-image img, .profile-card.active .profile-image img {
  transform: scale(1.05);
}
.profile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,24,46,0.9) 0%, rgba(16,42,76,0.24) 100%);
}
.profile-title {
  position: absolute;
  bottom: 24px;
  left: 32px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.1;
  z-index: 2;
}
.profile-title em {
  font-family: var(--font-heading);
  color: var(--accent);
  font-style: normal;
}
.profile-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.profile-content p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 1.04rem;
  line-height: 1.72;
}
.profile-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.profile-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
}
.profile-features svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.profile-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.profile-details-wrapper,
.profile-details {
  display: none !important;
}

/* ===== Chatbot Widget ===== */
.chatbot-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  font-family: var(--font-body);
}
.chatbot-toggle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-fast);
  position: relative;
}
.chatbot-toggle:hover {
  transform: scale(1.08);
  background: var(--primary-light);
}
.chatbot-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #E63946;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--surface);
  animation: pulseBadge 2s infinite;
}
@keyframes pulseBadge {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 360px;
  height: 520px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transform-origin: bottom right;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid var(--border);
}
.chatbot-window.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chatbot-header {
  background: var(--primary);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chatbot-agent {
  display: flex;
  align-items: center;
  gap: 12px;
}
.agent-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--accent);
}
.chatbot-agent strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}
.chatbot-agent span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 4px;
}
.chatbot-agent span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
}
.chatbot-close {
  background: none;
  color: #fff;
  font-size: 1.5rem;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}
.chatbot-close:hover {
  opacity: 1;
}

.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg);
}
.chat-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.5;
  animation: slideInChat 0.3s ease-out;
}
@keyframes slideInChat {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg.bot {
  background: var(--surface);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.chat-msg.user {
  background: var(--primary);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 8px rgba(18,38,64,0.2);
}
.chat-action-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background var(--transition-fast);
}
.chat-action-btn:hover {
  background: var(--accent-light);
}

.chatbot-input-area {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px;
}
.chatbot-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chat-option-btn {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 100px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-align: left;
  transition: all var(--transition-fast);
  white-space: normal;
  line-height: 1.4;
}
.chat-option-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.typing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  align-self: flex-start;
}
.typing-indicator span {
  width: 6px;
  height: 6px;
  background: var(--text-light);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}
.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }
@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  :root { --section-py: 92px; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-image { max-height: 400px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 769px) and (max-width: 1180px) {
  .container { padding: 0 28px; }
  .hero-title { font-size: clamp(2.75rem, 5.4vw, 4.15rem); }
  .hero-text-container { min-height: 224px; }
  .hero-cta-container { margin-top: clamp(26px, 4vh, 48px); }
  .hero-search-bar { max-width: 590px; }
  .profiles-grid { gap: 24px; }
  .profile-image { min-height: 220px; }
  .profile-content { padding: 28px; }
  .profile-title { font-size: clamp(1.85rem, 3vw, 2.55rem); }
  .srv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }
  html { scroll-padding-top: 76px; }
  body.menu-open { overflow: hidden; }
  .container { padding: 0 18px; }
  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    min-height: 48px;
    text-align: center;
  }
  #perfiles,
  #destinos,
  #contacto,
  .profile-details-wrapper {
    scroll-margin-top: 88px;
  }
  .header {
    padding: 10px 0;
    background: rgba(16,42,76,.86);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .header.scrolled { padding: 8px 0; }
  .header .container { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav { gap: 14px; }
  .nav-right { gap: 14px; }
  .nav-logo { font-size: 1.12rem; white-space: nowrap; }
  .nav-logo-img,
  .header.scrolled .nav-logo-img {
    height: 48px;
    max-width: 172px;
  }
  .lang-trigger .current-lang { display: none; }
  .lang-trigger {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    padding: 8px;
  }
  .lang-dropdown {
    right: -52px;
    padding-top: 8px;
  }
  .hamburger {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .hero {
    min-height: 100svh;
    padding: 96px 0 44px;
    align-items: center;
  }
  .hero-flight-path { opacity: .56; }
  .hero-content { padding-top: 0; }
  .hero-kicker { font-size: 0.62rem; max-width: calc(100vw - 48px); justify-content: center; }
  .hero-text-container {
    min-height: 284px;
    align-items: center;
  }
  .hero-title {
    font-size: clamp(2.24rem, 12vw, 3.2rem);
    line-height: 1.08;
    margin-top: 0;
    margin-bottom: 18px;
    max-width: 100%;
  }
  .hero-desc { font-size: 1rem; line-height: 1.55; max-width: 92vw; }
  .hero-cta-container {
    margin-top: 22px;
  }
  .hero-cta {
    width: auto;
    min-height: 48px;
    min-width: min(220px, 100%);
    padding: 14px 26px;
  }
  .hero-search-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: 22px;
  }
  .search-input-wrap input { min-height: 44px; font-size: 1rem; }
  .search-btn { justify-content: center; }
  .stats-section { padding: 52px 0; }
  .stat-number { font-size: 3rem; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .clients-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .profiles-grid { grid-template-columns: 1fr; gap: 18px; margin-bottom: 22px; }
  .profile-card {
    border-radius: var(--radius-md);
    box-shadow: 0 18px 42px rgba(16,42,76,.08);
  }
  .profile-card:hover,
  .profile-card.active {
    transform: none;
  }
  .profile-card.active {
    box-shadow: 0 24px 56px rgba(16,42,76,.14);
    border-color: rgba(106,155,200,.38);
  }
  .profile-content { padding: 24px 20px; }
  .profile-image { aspect-ratio: 5/3; min-height: 0; }
  .profile-title { font-size: 1.6rem; left: 24px; bottom: 20px; }
  .profile-features { margin-bottom: 24px; }
  .profile-features li {
    align-items: flex-start;
    line-height: 1.45;
  }
  .profile-btn {
    min-height: 50px;
    font-size: 0.98rem;
  }
  .profile-details-wrapper {
    border-radius: 24px;
    margin-top: 4px;
  }
  .details-inner { padding: 28px 20px; }
  .details-text h4 { font-size: 1.3rem; }
  .details-text p {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  .details-text ul {
    gap: 12px;
    margin-bottom: 24px;
  }
  .details-text ul li {
    padding-left: 20px;
    line-height: 1.55;
  }
  .ev-services {
    min-height: 100vh;
    padding: 64px 0;
  }
  .ev-card {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .ev-card-content { padding: 32px 24px; }
  .ev-card-image { min-height: 220px; }
  .process-steps { grid-template-columns: 1fr; }
  .destinations-scroll {
    padding: 72px 0 56px;
    overflow: hidden;
  }
  .scroll-container {
    height: auto;
    display: block;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 6px;
  }
  .scroll-container::-webkit-scrollbar { display: none; }
  .scroll-wrapper {
    gap: 16px;
    padding: 0 18px 8px;
    min-width: 100%;
  }
  .scroll-title {
    min-width: min(82vw, 320px);
    padding-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .scroll-title h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }
  .scroll-title p {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 14px;
  }
  .scroll-title::after {
    content: '⟷';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255,255,255,.76);
    color: var(--primary);
    border: 1px solid rgba(16,42,76,.08);
    box-shadow: 0 12px 30px rgba(16,42,76,.08);
  }
  .destinations-grid { grid-template-columns: 1fr; }
  .dest-card {
    width: min(78vw, 320px);
    height: 430px;
    scroll-snap-align: start;
  }
  .dest-card-content { padding: 28px 22px; }
  .dest-card-content h3 { font-size: 1.55rem; }
  .dest-card-content p {
    font-size: 0.95rem;
    line-height: 1.55;
  }
  .credentials { padding: 52px 0; }
  .cred-list { gap: 30px; }
  .cred-list-item { gap: 16px; }
  .cred-icon { width: 44px; height: 44px; }
  .about { padding: 64px 0; }
  .about-grid { gap: 28px; margin-top: 32px; }
  .about-image { border-radius: var(--radius-md); }
  .cred-grid { gap: 16px; }
  .cred-item { min-width: 100px; padding: 16px 20px; }
  .about-founders { flex-direction: column; gap: 20px; }
  .contact { padding: 64px 0; }
  .contact-grid { gap: 34px; margin-top: 36px; }
  .contact-info { grid-template-columns: 1fr; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .form-actions { grid-template-columns: 1fr; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 48px;
    font-size: 16px;
  }
  .form-submit { white-space: normal; }
  .chatbot-window {
    position: fixed;
    width: calc(100vw - 24px);
    right: 12px;
    left: 12px;
    bottom: 88px;
    height: min(68vh, 560px);
  }
  .chatbot-widget {
    bottom: 16px;
    right: 16px;
    transition: transform var(--transition-fast), opacity var(--transition-fast), bottom var(--transition-fast);
  }
  .chatbot-widget.contact-overlap {
    transform: scale(.94);
    opacity: .82;
    bottom: 88px;
  }
  .chatbot-toggle {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 768px) {
  .mobile-nav {
    inset: 68px 0 0;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 18px;
    overflow-y: auto;
    background: rgba(16,42,76,.98);
    transform: translateY(-12px);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
  }
  .mobile-nav.active {
    transform: translateY(0);
  }
  .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 54px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
  }
  .mobile-nav .btn {
    margin-top: 18px;
    border-bottom: 0;
    color: var(--primary);
  }
  .mobile-nav .lang-switcher {
    margin-top: 18px !important;
    width: 100%;
  }
  .mobile-nav .lang-trigger {
    justify-content: flex-start;
    color: #fff;
  }
  .mobile-nav .lang-trigger .current-lang { display: inline; }
  .mobile-nav .lang-dropdown {
    position: static;
    display: flex;
    padding: 8px 0 0;
    min-width: 0;
    width: 100%;
  }
  .mobile-nav .lang-divider { display: none; }
  .mobile-nav .lang-btn {
    width: 100%;
    margin: 0;
    min-height: 44px;
    background: rgba(255,255,255,.12);
  }
}

/* ===== Horizontal Destinations Scroll ===== */
.destinations-scroll {
  background: linear-gradient(180deg, var(--sky-soft) 0%, #FFFFFF 100%);
  overflow: hidden; padding: 120px 0; position: relative;
}
.destinations-scroll::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(106,155,200,.22), transparent 32%);
  pointer-events: none;
}
.scroll-container {
  height: 100vh; display: flex; align-items: center; position: relative;
}
.scroll-wrapper {
  display: flex; gap: 60px; padding: 0 15vw; width: max-content; align-items: center;
}
.scroll-title {
  min-width: 500px; padding-right: 100px;
}
.scroll-title h2 { margin-bottom: 24px; font-size: clamp(2.5rem, 5vw, 4rem); }
.scroll-title p { color: var(--text-secondary); line-height: 1.7; font-size: 1.1rem; }

.dest-card {
  flex-shrink: 0; width: 500px; height: 650px;
}
.dest-card-inner {
  position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 20px;
  box-shadow: 0 34px 90px rgba(6,43,85,.16);
  border: 1px solid rgba(255,255,255,.40);
}
.dest-card img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.dest-card:hover img { transform: scale(1.08); }

.dest-card-content {
  position: absolute; bottom: 0; left: 0; width: 100%; padding: 48px;
  background: linear-gradient(to top, rgba(8,24,46,0.96) 0%, rgba(16,42,76,0.5) 55%, transparent 100%);
  color: #fff; z-index: 2;
}
.dest-card-content span {
  display: block; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--accent); margin-bottom: 12px;
}
.dest-card-content h3 { color: #fff; margin-bottom: 12px; font-size: 2rem; }
.dest-card-content p { font-size: 1rem; opacity: 0.9; line-height: 1.5; }

/* ===== Section Dividers ===== */
.section-divider {
  position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 5;
}
.section-divider svg {
  display: block; width: 100%; height: 120px;
}

/* ===== Refined B2B Details ===== */
.profile-details-wrapper {
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

/* ===== New B2B Sections ===== */

/* Stats Section — Floating White Bar */
.stats-section {
  background: transparent;
  color: var(--text);
  padding: 0 0 80px;
  position: relative;
  z-index: 10;
  margin-top: -52px;
  border-top: none;
  box-shadow: none;
  isolation: isolate;
}
.stats-section::before {
  display: none;
}
.stats-grid {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(6,43,85,.10);
  border: 1px solid rgba(6,43,85,.06);
  padding: 40px 48px;
  max-width: 1060px;
  margin: 0 auto;
}
.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.stat-item {
  flex: 1;
  text-align: center;
  min-width: 180px;
}
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  opacity: 1;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(6,43,85,.10);
}
@media (max-width: 768px) {
  .stat-divider { display: none; }
}
.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.srv-card {
  background: #fff;
  padding: clamp(28px, 2.7vw, 40px);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(16,42,76,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 250px;
}
.srv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.srv-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-soft);
  border: 1px solid rgba(106,155,200,.28);
  color: var(--primary);
  margin-bottom: 24px;
}
.srv-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.srv-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  margin-bottom: 16px;
  color: var(--primary);
}
.srv-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Philosophy Section */
.philosophy-section {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--sky-soft) 100%);
}
.phil-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
}
.phil-item {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid rgba(16,42,76,0.1);
}
.phil-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.5;
  position: absolute;
  top: -24px;
  right: 0;
  z-index: 0;
}
.phil-item h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary);
  position: relative;
  z-index: 1;
}
.phil-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Instagram Feed */
.instagram-feed {
  padding: var(--section-py) 0;
  background: var(--navy-deep);
  color: #fff;
}
.ig-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.ig-header h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 8px;
  color: #fff;
}
.ig-header p {
  color: rgba(255,255,255,.7);
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ig-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  display: block;
}
.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16,42,76,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.ig-item:hover img {
  transform: scale(1.05);
}
.ig-item:hover .ig-overlay {
  opacity: 1;
}
@media (max-width: 768px) {
  .ig-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Booking CTA */
.booking-cta {
  padding: 80px 0;
  background: var(--bg);
}
.booking-cta-inner {
  background:
    radial-gradient(circle at top right, rgba(106,155,200,.15), transparent 40%),
    linear-gradient(135deg, var(--primary) 0%, var(--navy-deep) 100%);
  border-radius: 28px;
  padding: 72px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.booking-cta-inner::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.03));
  pointer-events: none;
}
.booking-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #fff;
}
.booking-cta-inner p {
  font-size: 1.18rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.booking-cta-inner .btn-primary.btn-large {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  border-radius: 50px;
  padding: 18px 40px;
  font-size: 1.05rem;
  box-shadow: 0 8px 24px rgba(255,210,31,.25);
}



/* ===== B2B Premium Landing Styles ===== */

/* Hero Premium */
.b2b-premium-hero {
  min-height: 100vh;
}
.b2b-premium-hero .hero-title {
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  text-shadow: 0 30px 60px rgba(0,0,0,0.5);
  line-height: 1.05;
}

/* Logos Premium */
.b2b-premium-logos {
  background: var(--bg);
  border-top: 1px solid rgba(16,42,76,.06);
  padding: 48px 0;
}
.b2b-premium-logos .marquee-item-box {
  display: inline-block;
  padding: 0 48px;
  font-family: var(--font-body);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 500;
  opacity: 0.8;
}

/* Statement Dark Section */
.b2b-dark-statement {
  background: linear-gradient(135deg, var(--primary) 0%, #08182E 100%);
  color: #fff;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.b2b-dark-statement::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191,216,244,.08), transparent 70%);
}
.statement-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(96px, 8vw, 132px);
  align-items: center;
}
.statement-title h2 {
  color: #fff;
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  line-height: 1.15;
}
.statement-title em {
  color: var(--accent);
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 800;
}
.statement-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
}
.statement-quote {
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.6;
  font-style: italic;
  margin-top: 40px;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
}

/* Fit Section (Alineación) */
.b2b-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.b2b-fit-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(16,42,76,.05);
}
.b2b-fit-card.pro {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg) 100%);
  border-top: 4px solid var(--accent-strong);
}
.b2b-fit-card.con {
  background: var(--bg);
  box-shadow: none;
  border: 1px dashed var(--border);
}
.b2b-fit-card ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.b2b-fit-card li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.5;
}
.fit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fit-icon.pro { color: var(--primary); }
.fit-icon.con { color: var(--text-light); }

/* Overrides for Profile Cards in B2B */
.b2b-landing .profile-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.b2b-landing .profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: var(--accent);
}

body.b2b-landing .header:not(.scrolled) .nav-links,
body.b2b-landing .header:not(.scrolled) .nav-links li,
body.b2b-landing .header:not(.scrolled) .lang-switcher {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  transform: translateY(0);
}

body.b2b-landing .header.scrolled .nav-links,
body.b2b-landing .header.scrolled .nav-links li,
body.b2b-landing .header.scrolled .lang-switcher {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}

body.b2b-landing .split-hero-kicker {
  color: var(--secondary);
}

body.b2b-landing .hero-highlight {
  display: inline-block;
  color: #102A4C;
  background: #FFD21F;
  padding: .02em .12em .08em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Move testimonial blocks slightly to the right on B2B landings (desktop/tablet) */
body.b2b-landing:not(.medical-landing) .company-proof-cards,
body.medical-landing .medical-proof-cards {
  margin-left: clamp(28px, 3.8vw, 64px);
}

@media (max-width: 900px) {
  body.b2b-landing:not(.medical-landing) .company-proof-cards,
  body.medical-landing .medical-proof-cards {
    margin-left: 0;
  }
}

/* ===== Medical page final coherence pass ===== */
body.medical-landing .medical-hero .hero-highlight {
  display: inline-block;
  margin-top: 0.12em;
  padding-top: 0.02em;
}

body.medical-landing .medical-program-section {
  background-image: url("../assets/images/medical-program-office-bg.webp") !important;
  background-position: center clamp(-104px, -5.2vw, -58px) !important;
  background-repeat: no-repeat !important;
  background-size: 100% auto !important;
  background-color: #fff !important;
  height: 49.6vw !important;
  margin-top: 0 !important;
  min-height: 610px !important;
  padding-block: 0 !important;
}

body.medical-landing .medical-program-section .medical-program-direct {
  margin-left: auto !important;
  margin-right: clamp(0px, .8vw, 16px) !important;
  transform: translateX(clamp(12px, 1.8vw, 34px)) !important;
  width: min(820px, 58vw) !important;
}

body.medical-landing .medical-program-section .medical-program-copy h2 {
  font-size: clamp(2.05rem, 2.25vw, 2.55rem) !important;
  max-width: 100% !important;
}

body.medical-landing .medical-complete-service {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 58%, #f6faff 100%) !important;
}

body.medical-landing .medical-process-light,
body.medical-landing .medical-patient-journey,
body.medical-landing .b2b-faqs {
  background: #fff !important;
}

body.medical-landing .medical-specialty-carousel-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
}

body.medical-landing .medical-complete-service-copy p strong {
  color: var(--primary);
  font-weight: 800;
}

body.medical-landing .medical-standard-card:hover,
body.medical-landing .medical-standard-card:focus-within,
body.medical-landing .medical-standard-card:active {
  border-color: var(--accent) !important;
  outline: 0 !important;
  box-shadow: 0 24px 58px rgba(16, 42, 76, .14) !important;
}

body.medical-landing .medical-behind-scenes.company-trust-proof {
  background: linear-gradient(135deg, #07172b 0%, #062b55 58%, #0a3665 100%) !important;
  padding-block: clamp(64px, 7vw, 104px) !important;
}

body.medical-landing .medical-behind-scenes.company-trust-proof .container {
  max-width: min(1540px, calc(100% - 16px));
}

body.medical-landing .medical-trust-proof-grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 4.5vw, 64px);
  grid-template-columns: minmax(0, .68fr) minmax(760px, 1.32fr);
}

body.medical-landing .medical-behind-scenes .company-trust-panel {
  color: #fff;
  justify-self: start;
  margin-left: clamp(-20px, -1.8vw, -8px);
  max-width: 680px;
  padding: 0;
  text-align: left;
}

body.medical-landing .medical-behind-scenes .company-trust-panel .section-label {
  color: var(--accent) !important;
  justify-content: flex-start;
}

body.medical-landing .medical-behind-scenes .company-trust-panel h2 {
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 3vw, 3.15rem);
  line-height: 1.08;
  margin: 0 0 18px;
  max-width: 14ch;
}

body.medical-landing .medical-behind-scenes .company-trust-panel h2::after {
  background: #E6BC00;
  content: "";
  display: block;
  height: 3px;
  margin: 12px 0 0;
  width: 42px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
}

body.medical-landing .medical-behind-scenes .company-trust-panel p {
  color: rgba(255, 255, 255, .82) !important;
  font-size: clamp(1.02rem, .94rem + .24vw, 1.15rem) !important;
  line-height: 1.66 !important;
  margin: 0 !important;
  max-width: 56ch;
  text-align: left !important;
  text-align-last: left !important;
}

body.medical-landing .medical-behind-scenes .company-trust-highlight {
  color: var(--accent) !important;
  font-weight: 700;
  margin-top: 18px !important;
}

body.medical-landing .medical-behind-scenes .company-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 24px;
}

body.medical-landing .medical-behind-scenes .company-trust-point {
  align-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #fff;
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 12px 16px;
}

body.medical-landing .medical-behind-scenes .company-trust-point-icon svg {
  fill: none;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 20px;
}

body.medical-landing .medical-behind-scenes .company-proof-cards {
  align-self: center;
  align-items: stretch;
  display: grid;
  gap: clamp(14px, 1.6vw, 18px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  max-width: 100%;
  width: 100%;
}

body.medical-landing .medical-behind-scenes .company-proof-cards .b2b-testimonial-card {
  background: rgba(255, 255, 255, .94) !important;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
  min-height: 0 !important;
  padding: clamp(16px, 1.4vw, 22px) !important;
}

body.medical-landing .medical-behind-scenes .company-proof-cards .b2b-testimonial-card p {
  color: #284260 !important;
  font-size: clamp(.88rem, .82rem + .12vw, .96rem) !important;
  line-height: 1.46 !important;
  margin-bottom: 14px !important;
}

body.medical-landing .medical-behind-scenes .company-proof-cards .b2b-testimonial-quote {
  color: var(--secondary);
  display: block;
  font-family: Georgia, serif;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: .75;
  margin-bottom: 8px;
}

body.medical-landing .medical-behind-scenes .company-proof-cards .b2b-testimonial-footer {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: auto;
  min-width: 0;
}

body.medical-landing .medical-behind-scenes .company-proof-cards .testimonial-stars {
  color: var(--accent);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: .95rem;
  justify-content: flex-end;
  line-height: 1;
  white-space: nowrap;
}

body.medical-landing .medical-patient-grid {
  margin-top: clamp(66px, 5.6vw, 92px);
}

@media (max-width: 1180px) {
  body.medical-landing .medical-trust-proof-grid {
    grid-template-columns: 1fr;
  }

  body.medical-landing .medical-behind-scenes .company-trust-panel {
    margin-left: 0;
    max-width: 760px;
  }

  body.medical-landing .medical-behind-scenes .company-proof-cards {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }
}

@media (max-width: 760px) {
  body.medical-landing .medical-behind-scenes .company-proof-cards {
    grid-template-columns: 1fr;
    overflow: visible;
  }
}

/* Final company model card alignment lock. */
body.b2b-landing:not(.medical-landing) .company-model-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

body.b2b-landing:not(.medical-landing) .company-model-copy {
  margin-block: auto !important;
}

/* Hero highlight safety: avoid overlap with upper line (company + medical) */
body.b2b-landing:not(.medical-landing) .split-hero-title,
body.medical-landing .split-hero-title {
  line-height: 1.3 !important;
}

body.b2b-landing .hero-highlight {
  padding: 0 .1em .05em !important;
  line-height: 1.08 !important;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

body.b2b-landing .statement-grid {
  grid-template-columns: .4fr 1.6fr;
  gap: 40px;
}

body.b2b-landing .statement-content {
  padding-left: 20px;
}

body.b2b-landing .statement-title h2 {
  max-width: 720px;
}

body.b2b-landing .statement-content p {
  max-width: none;
}

body.b2b-landing .ed-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

body.b2b-landing .ed-card {
  min-height: 100%;
  padding: 0;
  border: none;
  gap: 0;
  align-items: center;
}

.ed-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  background: #fff;
  cursor: pointer;
}

.ed-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ed-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ed-overlay {
  position: absolute;
  inset: 0;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.ed-card:hover .ed-overlay {
  opacity: 0.85;
}

.ed-card:hover img {
  transform: scale(1.1);
}

.ed-number-large {
  position: absolute;
  bottom: -0.1em;
  right: -0.05em;
  color: #fff;
  font-size: clamp(8rem, 14vw, 12rem);
  font-weight: 900;
  line-height: 0.7;
  z-index: 2;
  font-family: var(--font-heading), sans-serif;
  letter-spacing: -0.05em;
  pointer-events: none;
  -webkit-text-stroke: 2px #fff;
  transition: opacity 0.4s ease;
}

.ed-card:hover .ed-number-large {
  opacity: 0; /* Hide number on hover to show text clearly */
}

.ed-text-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.ed-card:hover .ed-text-content {
  opacity: 1;
  transform: translateY(0);
}

body.b2b-landing .ed-card h3 {
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 14px !important;
}

body.b2b-landing .ed-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  body.b2b-landing .ed-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 640px) {
  body.b2b-landing .ed-grid-4 {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .ed-number-large {
    font-size: 10rem;
  }
}

.ev-director-benefit {
  margin-top: 18px;
}

body.b2b-landing .b2b-fit-section .container {
  max-width: 1080px;
}

body.b2b-landing .b2b-fit-grid {
  gap: clamp(24px, 3vw, 36px);
  max-width: 980px;
  margin-inline: auto;
}

body.b2b-landing .b2b-fit-card {
  padding: clamp(30px, 3vw, 42px);
  border-radius: var(--radius-md);
}

@media (max-width: 900px) {
  .statement-grid,
  .b2b-fit-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .b2b-fit-card {
    padding: 32px 24px;
  }
  .b2b-landing .profiles-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  body.b2b-landing .b2b-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Marquee Container Fix */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}
.marquee-container::before, .marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}
.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Mobile final overrides ===== */
@media (max-width: 768px) {
  .reveal,
  .reveal-text {
    visibility: visible;
  }

  .services-grid-section,
  .philosophy-section,
  .instagram-feed,
  .b2b-dark-statement {
    padding: 64px 0;
  }

  .srv-grid,
  .phil-grid,
  .statement-grid,
  .b2b-fit-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .srv-card,
  .b2b-fit-card,
  .statement-highlight {
    padding: 28px 20px;
  }

  .statement-title h2 {
    font-size: 2.25rem;
  }

  .destinations-scroll {
    overflow: visible;
    padding: 64px 0;
  }

  .scroll-container {
    height: auto;
    display: block;
  }

  .scroll-wrapper {
    width: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 18px;
    transform: none !important;
  }

  .scroll-title {
    min-width: 0;
    padding-right: 0;
  }

  .scroll-title h2 {
    font-size: 2.2rem;
  }

  .dest-card {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
  }

  .dest-card-content {
    padding: 92px 22px 22px;
  }

  .dest-card-content h3 {
    font-size: 1.45rem;
  }

  .marquee-container::before,
  .marquee-container::after {
    width: 42px;
  }

  .b2b-premium-logos .marquee-item {
    padding: 0 24px;
    font-size: .95rem;
  }
}

@media (max-width: 640px) {
  h2 { font-size: 2rem; }

  .section-label {
    font-size: .72rem;
    line-height: 1.4;
  }

  .hero-title { font-size: clamp(2.08rem, 11vw, 2.7rem); }
  .hero-text-container { min-height: 300px; }
  .hero-progress-dot { width: 24px; }
  .hero-progress-dot.active { width: 42px; }
  .stats-grid { gap: 34px; }

  .srv-grid,
  .phil-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .srv-card,
  .b2b-fit-card {
    padding: 26px 20px;
  }

  .ig-grid { gap: 10px; }
  .booking-cta { padding: 52px 0; }
  .booking-cta-inner { padding: 36px 20px; }
  .booking-cta-inner h2 { font-size: 2rem; }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(1.92rem, 10.8vw, 2.28rem);
  }

  .hero-text-container {
    min-height: 338px;
  }

  .profile-title {
    font-size: 1.42rem;
    left: 18px;
    right: 18px;
  }

  .contact-item {
    gap: 12px;
  }

  .contact-item .ci-icon {
    width: 40px;
    height: 40px;
  }
}

/* ===== Split Hero (B2B) ===== */
.split-hero {
  display: flex;
  min-height: 100vh;
  background: var(--surface);
  position: relative;
}
.split-hero-content {
  flex: 0 0 58%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
}
.split-hero-kicker {
  color: var(--accent-strong);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.split-hero-title {
  color: var(--text);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  margin-bottom: 32px;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.split-hero-desc {
  color: var(--text-secondary);
  font-size: 1.22rem;
  line-height: 1.72;
  margin-bottom: 48px;
  max-width: 600px;
}
.split-hero-image {
  flex: 1 1 42%;
  min-width: 0;
  position: relative;
}
.split-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 760px) {
  .split-hero {
    flex-direction: column;
    min-height: 100vh;
  }
  .split-hero-image {
    min-height: 400px;
    width: 100%;
    position: relative;
    order: 2;
  }
  .split-hero-image img {
    position: static;
  }
  .split-hero-content {
    padding: 60px 24px;
    order: 1;
  }
}

/* ===== FAQs ===== */
.b2b-faqs {
  padding: var(--section-py) 0;
  background: var(--bg);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}
.faq-item:hover {
  border-color: var(--secondary);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
}
.faq-question svg {
  transition: transform var(--transition-fast);
  color: var(--secondary);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background: var(--surface);
}
.faq-answer p {
  padding: 0 24px 24px 24px;
  color: var(--text-secondary);
  line-height: 1.72;
  font-size: 1.02rem;
  margin: 0;
}

/* ===== Instagram Modal ===== */
.ig-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ig-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.ig-modal-container {
  width: 90%;
  max-width: 1000px;
  height: 80vh;
  min-height: 500px;
  background: var(--surface);
  border-radius: 8px;
  position: relative;
  display: flex;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.ig-modal-backdrop.active .ig-modal-container {
  transform: scale(1);
}
.ig-modal-content {
  display: flex;
  width: 100%;
  height: 100%;
}
.ig-modal-image {
  flex: 1.5;
  background: #000;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
}
.ig-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ig-modal-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: 0 8px 8px 0;
}
.ig-modal-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.ig-modal-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text);
}
.ig-modal-body {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
.ig-modal-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ig-modal-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.ig-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--text-secondary);
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}
.ig-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  color: var(--text);
  z-index: 10;
  transition: background 0.3s ease;
}
.ig-modal-nav:hover {
  background: #fff;
}
.ig-modal-nav.prev {
  left: -24px;
}
.ig-modal-nav.next {
  right: -24px;
}

@media (max-width: 768px) {
  .ig-modal-container {
    height: 90vh;
  }
  .ig-modal-content {
    flex-direction: column;
  }
  .ig-modal-image {
    flex: 1;
    border-radius: 8px 8px 0 0;
  }
  .ig-modal-sidebar {
    flex: 1;
    border-radius: 0 0 8px 8px;
  }
  .ig-modal-nav {
    display: none;
  }
}

/* Fix for ed-grid mobile layout */
.ed-grid-4 { grid-template-columns: repeat(4, 1fr); }
.profiles-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .ed-grid, .ed-grid-4, .profiles-grid-3 { 
    grid-template-columns: 1fr !important; 
    gap: 32px !important; 
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .split-hero-content {
    padding: 0 5%;
  }

  .split-hero-title {
    font-size: clamp(2.25rem, 4.2vw, 3.2rem);
  }

  .split-hero-desc {
    font-size: 1.05rem;
  }
}

/* ===== Medical Partner Landing ===== */
.medical-landing {
  background:
    radial-gradient(circle at 88% 12%, rgba(191,216,244,.42), transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FBFF 42%, var(--bg) 100%);
}
.medical-hero {
  background:
    linear-gradient(135deg, #FFFFFF 0%, #F4FAFF 54%, #EAF4FF 100%);
}
.medical-hero .split-hero-title {
  max-width: 680px;
}
.medical-hero .split-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16,42,76,.12) 0%, rgba(16,42,76,0) 35%),
    linear-gradient(180deg, rgba(16,42,76,0) 52%, rgba(16,42,76,.42) 100%);
  pointer-events: none;
}
.medical-hero .split-hero-image img {
  filter: saturate(.92) contrast(1.02);
}
.medical-process {
  padding: var(--section-py) 0;
  background: var(--surface);
}
.medical-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.timeline-step {
  position: relative;
  min-height: 360px;
  padding: 40px 32px;
  border: 1px solid rgba(16,42,76,.08);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(234,244,255,.8) 0%, rgba(255,255,255,.96) 44%),
    var(--surface);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.timeline-step::after {
  content: '';
  position: absolute;
  right: -48px;
  top: -48px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(106,155,200,.24);
}
.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent-light);
  font-weight: 700;
  margin-bottom: 36px;
}
.timeline-step h3 {
  font-family: var(--font-body);
  font-size: 1.22rem;
  color: var(--primary);
  margin-bottom: 18px;
}
.timeline-step p {
  color: var(--text-secondary);
}
.medical-services {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
}
.medical-services-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}
.medical-copy p {
  color: var(--text-secondary);
  font-size: 1.16rem;
  margin: 22px 0 32px;
  max-width: 620px;
}
.logistics-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.logistics-list div {
  min-height: 122px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: var(--primary);
  font-weight: 700;
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,255,255,.72)),
    radial-gradient(circle at 20% 20%, rgba(255,210,0,.24), transparent 34%);
  border: 1px solid rgba(16,42,76,.08);
  box-shadow: var(--shadow-md);
}
.medical-specialties {
  padding: var(--section-py) 0;
  background: var(--surface);
}
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.specialty-grid span {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  color: var(--primary);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.medical-brand {
  padding: 110px 0;
  background:
    linear-gradient(135deg, rgba(16,42,76,.96), rgba(24,58,99,.94)),
    var(--primary);
  color: #FFFFFF;
}
.medical-brand-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.medical-brand .section-label,
.medical-brand h2,
.medical-brand p {
  color: #FFFFFF;
}
.medical-brand h2 {
  margin-bottom: 24px;
}
.medical-brand p {
  color: rgba(255,255,255,.78);
  font-size: 1.16rem;
  line-height: 1.8;
}
.medical-landing .b2b-fit-card.con p {
  color: var(--text-secondary);
  font-size: 1.03rem;
  line-height: 1.75;
  margin-top: 18px;
}
.medical-landing .contact {
  background:
    linear-gradient(180deg, rgba(16,42,76,.98), rgba(16,42,76,.94)),
    var(--primary);
}

@media (max-width: 900px) {
  .medical-timeline,
  .medical-services-grid,
  .specialty-grid {
    grid-template-columns: 1fr;
  }
  .medical-timeline {
    gap: 18px;
  }
  .timeline-step {
    min-height: auto;
  }
  .medical-services-grid {
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .logistics-list {
    grid-template-columns: 1fr;
  }
  .timeline-step {
    padding: 32px 24px;
  }
  .medical-brand {
    padding: 76px 0;
  }
}

/* ===== Kaiva-level responsive polish pass ===== */
:root {
  --section-tight: clamp(64px, 8vw, 112px);
  --section-loose: clamp(84px, 10vw, 140px);
}

body {
  text-rendering: optimizeLegibility;
}

.hero {
  min-height: 100svh;
  contain: paint;
}

.hero-slide img.ken-burns {
  will-change: transform;
  transform: translateZ(0);
}

.hero-content,
.stats-section,
.profiles-section,
.ev-services,
.services-grid-section,
.editorial-promise,
.philosophy-section,
.process,
.destinations-scroll,
.credentials,
.instagram-feed,
.booking-cta,
.about,
.contact {
  position: relative;
}

.profiles-section,
.services-grid-section,
.editorial-promise,
.philosophy-section,
.process,
.credentials,
.instagram-feed,
.about {
  padding-block: var(--section-loose);
}

.section-subtitle {
  max-width: 760px;
}

.profiles-grid {
  align-items: stretch;
  gap: clamp(22px, 3vw, 36px);
}

.profile-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.profile-image {
  min-height: clamp(220px, 21vw, 310px);
}

.profile-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.profile-btn {
  margin-top: auto;
}

.profile-features li {
  line-height: 1.45;
}

.ev-services {
  min-height: auto;
  padding-block: var(--section-loose);
}

.ev-card {
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  max-width: 1120px;
}

.ev-card-content {
  padding: clamp(32px, 4vw, 56px);
}

.ev-card-image img {
  min-height: 100%;
}

.srv-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 32px);
}

.srv-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 2.7vw, 40px);
  border-color: rgba(16,42,76,.08);
  box-shadow: 0 16px 46px rgba(16,42,76,.06);
}

.srv-card:hover {
  transform: translateY(-6px);
}

.srv-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-soft);
  border: 1px solid rgba(106,155,200,.28);
  color: var(--primary);
  margin-bottom: 24px;
  font-size: 0;
}

.srv-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.srv-card h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
}

.srv-card p {
  margin-top: auto;
}

.ed-grid,
.phil-grid {
  gap: clamp(24px, 4vw, 56px);
}

.ed-card,
.phil-item {
  min-width: 0;
}

.process-steps {
  gap: clamp(16px, 2.2vw, 28px);
}

.step {
  padding-inline: clamp(10px, 1.4vw, 20px);
}

.destinations-scroll {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--sky-soft) 100%);
}

.dest-card {
  contain: paint;
}

.contact-grid {
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 112px;
}

.contact-form {
  max-width: 720px;
  margin-left: auto;
}

.form-row.compact {
  grid-template-columns: minmax(0, 1fr);
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.form-step-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.22);
  font-size: .86rem;
  font-weight: 700;
}

.form-step-dot.active,
.form-step-dot.complete {
  color: var(--primary);
  background: var(--accent);
  border-color: var(--accent);
}

.form-step-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.2);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step-copy {
  margin-bottom: 22px;
}

.form-step-copy span {
  display: block;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  margin-bottom: 8px;
}

.form-step-copy p {
  color: rgba(255,255,255,.68);
  line-height: 1.55;
  margin: 0;
}

.form-actions {
  display: grid;
  grid-template-columns: .42fr 1fr;
  gap: 14px;
}

.form-next {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1180px) {
  :root {
    --section-py: 92px;
  }

  .container {
    padding-inline: clamp(22px, 3vw, 32px);
  }

  .hero-title {
    font-size: clamp(2.75rem, 5.2vw, 4.05rem);
  }

  .hero-text-container {
    min-height: 222px;
  }

  .hero-cta-container {
    margin-top: clamp(26px, 4vh, 48px);
  }

  .stats-grid {
    gap: clamp(14px, 2vw, 24px);
  }

  .stat-number {
    font-size: clamp(3.15rem, 4.4vw, 3.75rem);
  }

  .stat-label {
    font-size: .78rem;
    letter-spacing: .08em;
  }

  .profiles-grid,
  .srv-grid,
  .phil-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ed-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 34px;
  }
}

@media (max-width: 900px) {
  .profiles-grid,
  .srv-grid,
  .ed-grid,
  .phil-grid,
  .process-steps,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .contact-form {
    max-width: none;
    margin-left: 0;
  }

  .ev-card {
    grid-template-columns: 1fr;
  }

  .ev-card-image {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 68px;
    --section-tight: 58px;
    --section-loose: 76px;
  }

  html {
    scroll-padding-top: 76px;
  }

  .container {
    padding-inline: 18px;
  }

  .hero {
    min-height: 100svh;
    padding: 86px 0 38px;
    align-items: center;
  }

  .hero-flight-path {
    opacity: .54;
  }

  .hero-content {
    justify-content: center;
  }

  .hero-text-container {
    min-height: clamp(250px, 38vh, 330px);
    align-items: center;
  }

  .hero-title {
    font-size: clamp(2rem, 11.4vw, 3.05rem);
    line-height: 1.04;
    margin: 0 0 18px;
    padding-inline: 4px;
  }

  .hero-desc {
    font-size: clamp(.94rem, 3.9vw, 1.03rem);
    max-width: min(92vw, 430px);
  }

  .hero-cta-container {
    margin-top: 22px;
  }

  .hero-cta {
    width: auto;
    min-height: 48px;
    min-width: min(220px, 100%);
    padding: 14px 26px;
  }

  .hero-search-bar {
    width: min(100%, 430px);
    border-radius: 18px;
    padding: 14px;
    margin-top: 16px;
  }

  .stats-section {
    padding: 60px 0 54px;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }

  .stat-item {
    min-width: 0;
  }

  .stat-number {
    font-size: clamp(2.35rem, 12vw, 3.1rem);
  }

  .stat-label {
    font-size: .72rem;
    line-height: 1.45;
  }

  .profile-image {
    aspect-ratio: 5 / 3;
    min-height: 0;
  }

  .profile-card {
    border-radius: 12px;
  }

  .profile-content {
    padding: 24px 20px;
  }

  .ev-services,
  .services-grid-section,
  .editorial-promise,
  .philosophy-section,
  .process,
  .credentials,
  .instagram-feed,
  .booking-cta,
  .about,
  .contact {
    padding-block: var(--section-loose);
  }

  .ev-card-content {
    padding: 30px 22px;
  }

  .ev-card-image {
    min-height: 220px;
  }

  .srv-card {
    min-height: auto;
    padding: 26px 22px;
  }

  .process-steps {
    gap: 28px;
    margin-top: 40px;
  }

  .step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 14px;
    text-align: left;
    align-items: start;
    padding: 0;
  }

  .step-number {
    width: 56px;
    height: 56px;
    margin: 0;
  }

  .destinations-scroll {
    padding: 68px 0;
  }

  .scroll-container {
    overflow: visible;
  }

  .scroll-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 18px;
    transform: none !important;
  }

  .scroll-title,
  .dest-card {
    width: 100%;
    min-width: 0;
  }

  .scroll-title {
    padding: 0;
  }

  .scroll-title::after {
    display: none;
  }

  .dest-card {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .ig-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px 16px;
  }

  .form-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-progress {
    margin-bottom: 18px;
  }

  .contact-page .contact h1 {
    font-size: clamp(1.75rem, 9.5vw, 2.25rem);
    max-width: calc(100vw - 44px);
  }

  .contact-page .contact .section-subtitle {
    font-size: 1rem;
    max-width: calc(100vw - 44px);
  }

  .contact-page .contact-form {
    width: 100%;
  }

  .form-step-copy {
    margin-bottom: 16px;
  }

  .form-step-copy p {
    font-size: .92rem;
  }

  .form-group {
    margin-bottom: 14px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
  }

  .form-group textarea {
    min-height: 96px;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(1.88rem, 10.6vw, 2.28rem);
  }

  .hero-text-container {
    min-height: 300px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20rem;
  color: rgba(16, 42, 76, 0.03);
  font-family: var(--font-heading);
  line-height: 1;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.4;
  color: var(--text);
  font-style: italic;
  margin-bottom: 40px;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.testimonial-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

.testimonial-role {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.b2b-testimonials {
  background: #f8fafc;
  color: var(--primary);
  padding: clamp(92px, 10vw, 140px) 0;
}

.b2b-testimonials::before {
  content: '';
  inset: 0;
  left: auto;
  top: 0;
  transform: none;
  width: 48%;
  height: 100%;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.04)),
    radial-gradient(circle at 70% 34%, rgba(255,234,163,.13), transparent 35%);
  font-size: 0;
}

.b2b-testimonials-header {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.b2b-testimonials-header .section-label {
  justify-content: center;
  color: var(--secondary-light);
}

.b2b-testimonials-header h2 {
  color: #fff;
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  line-height: 1.08;
  margin-bottom: 22px;
}

.b2b-testimonials-header p {
  color: rgba(255,255,255,.72);
  font-size: 1.12rem;
  line-height: 1.7;
}

.b2b-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.b2b-testimonial-card {
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.b2b-testimonial-card:hover {
  transform: translateY(-5px);
}

.b2b-testimonial-card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: normal;
}

.b2b-testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.b2b-testimonial-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  flex: 0 0 44px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  display: block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-role {
  display: block;
  color: var(--primary-light);
  font-size: 0.85rem;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
  font-size: 0.9rem;
}

.nav-arrow:hover {
  transform: scale(1.05);
}

.nav-arrow.prev:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.nav-arrow.next {
  background: var(--primary) !important;
  box-shadow: 0 4px 12px rgba(12, 32, 56, 0.3) !important;
}

.nav-arrow.next:hover {
  background: var(--primary-dark) !important;
}

@media (max-width: 980px) {
  .b2b-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .b2b-testimonial-card {
    min-height: auto;
    transform: none;
  }
}

@media (min-width: 1100px) {
  @supports selector(html:has(body.b2b-landing)) {
    html:has(body.b2b-landing) {
      scroll-snap-type: y proximity;
    }
  }

  body.b2b-landing main > section {
    scroll-snap-align: start;
  }

  body.b2b-landing .split-hero,
  body.b2b-landing .b2b-dark-statement,
  body.b2b-landing .editorial-promise,
  body.b2b-landing .ev-services,
  body.b2b-landing .profiles-section,
  body.b2b-landing .b2b-fit-section,
  body.b2b-landing .philosophy-section,
  body.b2b-landing .booking-cta,
  body.b2b-landing .b2b-testimonials {
    min-height: 100svh;
    display: flex;
    align-items: center;
  }

  body.b2b-landing .profiles-section,
  body.b2b-landing .editorial-promise,
  body.b2b-landing .b2b-fit-section,
  body.b2b-landing .philosophy-section,
  body.b2b-landing .b2b-testimonials {
    padding-block: clamp(72px, 8vh, 104px);
  }

  body.b2b-landing .split-hero {
    align-items: stretch;
  }

  body.b2b-landing .split-hero-image {
    min-height: 100svh;
  }
}

@media (min-width: 769px) {
  body.b2b-landing .b2b-fit-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: min(100%, 980px);
  }

  body.b2b-landing .b2b-fit-card li {
    font-size: clamp(.96rem, 1.1vw, 1.05rem);
  }
}

@media (max-width: 768px) {
  body.b2b-landing .b2b-fit-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Overrides applied for execution plan */
.b2b-premium-logos .marquee-track { display: flex; align-items: center; }
.b2b-premium-logos .marquee-item-box { display: flex; align-items: center; justify-content: center; width: 140px; height: 60px; margin: 0 40px; flex-shrink: 0; }
.b2b-premium-logos .marquee-item-box img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(100%) opacity(0.5); mix-blend-mode: multiply; transition: all 0.3s ease; }
.b2b-premium-logos .marquee-item-box:hover img { filter: grayscale(0%) opacity(1); }


.ed-card { min-height: 400px; aspect-ratio: auto !important; }


body.b2b-landing .profile-card { transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease !important; }
body.b2b-landing .profile-card:hover { transform: translateY(-12px) !important; box-shadow: 0 25px 50px rgba(16,42,76,0.15), 0 0 20px rgba(255, 184, 0, 0.15) !important; border-color: var(--accent) !important; }


.b2b-premium-logos .marquee-track { display: inline-flex !important; width: max-content !important; align-items: center; }


.container { width: 100%; }


body.b2b-landing .ed-card { min-height: 400px !important; aspect-ratio: auto !important; }

/* Company landing responsive pass */
body.b2b-landing:not(.medical-landing) {
  --company-page-x: clamp(20px, 4vw, 64px);
  --company-title: clamp(2rem, 1.08rem + 3.15vw, 4.08rem);
  --company-h2: clamp(1.84rem, 1.16rem + 2.05vw, 3.16rem);
  --company-copy: clamp(.95rem, .84rem + .28vw, 1.08rem);
  --company-section-pad: clamp(52px, 6.6vh, 84px);
  background: #f8fbff;
}

body.b2b-landing:not(.medical-landing) .container {
  padding-inline: var(--company-page-x);
}

body.b2b-landing:not(.medical-landing) .split-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(247,251,255,.96) 48%, rgba(232,243,255,.26) 100%);
}

body.b2b-landing:not(.medical-landing) .split-hero-content {
  flex-basis: 56%;
  min-width: 0;
  opacity: 1 !important;
  padding-inline: clamp(28px, 6vw, 96px);
  padding-top: clamp(12px, 2vh, 28px);
  row-gap: clamp(16px, 2.4vh, 26px);
  transform: none !important;
  visibility: visible !important;
}

body.b2b-landing:not(.medical-landing) .split-hero-kicker {
  color: var(--secondary);
  line-height: 1.45;
  max-width: 34rem;
}

body.b2b-landing:not(.medical-landing) .split-hero-title {
  color: var(--primary) !important;
  font-family: var(--font-heading);
  font-size: var(--company-title);
  letter-spacing: 0;
  line-height: 1.03;
  max-width: 13.7ch;
  margin-bottom: 0;
  text-wrap: balance;
}

body.b2b-landing:not(.medical-landing) .split-hero-copy {
  display: grid;
  gap: 12px;
  max-width: 58ch;
}

body.b2b-landing:not(.medical-landing) .split-hero-desc {
  color: var(--text-secondary) !important;
  font-size: var(--company-copy);
  line-height: 1.65;
  margin: 0;
  max-width: 56ch;
}

body.b2b-landing:not(.medical-landing) .hero-action-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(4px, 1vh, 10px);
}

body.b2b-landing:not(.medical-landing) .split-hero-image {
  overflow: visible;
  background: transparent;
  z-index: 1;
}

body.b2b-landing:not(.medical-landing) .split-hero-image img {
  filter: saturate(.96) contrast(1.03);
}

body.b2b-landing:not(.medical-landing) .split-hero-image img.company-hero-photo {
  filter: none;
  height: 100%;
  left: -12%;
  max-width: none;
  object-fit: contain;
  object-position: right bottom;
  padding-top: 0;
  right: auto;
  width: min(126%, 1020px);
  min-width: 0;
  transform: none;
}

body.b2b-landing:not(.medical-landing) .trust-banner,
body.medical-landing .trust-banner {
  padding-block: clamp(18px, 2.8vh, 34px);
}

/* Medical: keep carousel-to-program spacing tight like company page */
body.medical-landing .trust-banner.b2b-premium-logos {
  padding-top: 14px !important;
  padding-bottom: 14px !important;
  margin-bottom: 0 !important;
}

body.medical-landing .medical-program-section {
  margin-top: 0 !important;
  padding-top: 10px !important;
}

body.b2b-landing:not(.medical-landing) .b2b-dark-statement {
  background:
    radial-gradient(circle at 82% 16%, rgba(255,210,0,.14), transparent 25%),
    linear-gradient(135deg, #07172b 0%, var(--primary) 58%, #17375e 100%);
}

body.b2b-landing:not(.medical-landing) .statement-grid {
  gap: clamp(38px, 6vw, 86px);
  grid-template-columns: .78fr 1.22fr;
}

body.b2b-landing:not(.medical-landing) .statement-content {
  padding-left: 0;
}

body.b2b-landing:not(.medical-landing) .statement-title h2,
body.b2b-landing:not(.medical-landing) .ed-header h2,
body.b2b-landing:not(.medical-landing) .section-header h2,
body.b2b-landing:not(.medical-landing) .profiles-section h2,
body.b2b-landing:not(.medical-landing) .b2b-fit-section h2,
body.b2b-landing:not(.medical-landing) .booking-cta h2,
body.b2b-landing:not(.medical-landing) .b2b-faqs h2,
body.b2b-landing:not(.medical-landing) .contact h2 {
  font-size: var(--company-h2);
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

body.b2b-landing:not(.medical-landing) .statement-title h2 {
  max-width: 13ch;
}

body.b2b-landing:not(.medical-landing) .statement-content p {
  font-size: var(--company-copy);
  line-height: 1.72;
  max-width: 68ch;
}

body.b2b-landing:not(.medical-landing) .statement-quote {
  max-width: 58ch;
}

body.b2b-landing:not(.medical-landing) .ed-header {
  margin: 0 auto clamp(34px, 5vh, 56px);
  max-width: 860px;
  text-align: center;
}

body.b2b-landing:not(.medical-landing) .ed-header p {
  color: var(--text-secondary);
  font-size: var(--company-copy);
  line-height: 1.65;
  margin-top: 18px;
}

body.b2b-landing:not(.medical-landing) .ed-grid-4 {
  gap: clamp(18px, 2.2vw, 28px);
}

body.b2b-landing:not(.medical-landing) .ed-grid-4 .ed-card {
  aspect-ratio: 4 / 4.75 !important;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(16,42,76,.12);
  min-height: clamp(310px, 39vh, 430px) !important;
}

body.b2b-landing:not(.medical-landing) .ed-grid-4 .ed-overlay {
  background: linear-gradient(180deg, rgba(8,24,46,.08), rgba(8,24,46,.92));
  opacity: 0;
}

body.b2b-landing:not(.medical-landing) .ed-grid-4 .ed-text-content {
  justify-content: flex-end;
  opacity: 0;
  padding: clamp(22px, 2.4vw, 32px);
  text-align: left;
  transform: translateY(18px);
}

body.b2b-landing:not(.medical-landing) .ed-grid-4 .ed-number-large {
  font-size: clamp(6.5rem, 11vw, 10.5rem);
  opacity: .32;
  right: -.02em;
}

body.b2b-landing:not(.medical-landing) .ed-grid-4 .ed-card:hover .ed-overlay {
  opacity: .84;
}

body.b2b-landing:not(.medical-landing) .ed-grid-4 .ed-card:hover .ed-number-large {
  opacity: 0;
}

body.b2b-landing:not(.medical-landing) .ev-services {
  background: var(--primary);
  overflow: hidden;
  position: relative;
}

body.b2b-landing:not(.medical-landing) .ev-card {
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0,0,0,.2);
  gap: 0;
  overflow: hidden;
}

body.b2b-landing:not(.medical-landing) .ev-card-content {
  padding: clamp(30px, 4.4vw, 58px);
}

body.b2b-landing:not(.medical-landing) .ev-title {
  font-size: var(--company-h2);
  line-height: 1.08;
}

body.b2b-landing:not(.medical-landing) .ev-card-content p,
body.b2b-landing:not(.medical-landing) .ev-card-content li {
  font-size: var(--company-copy) !important;
  line-height: 1.62;
}

body.b2b-landing:not(.medical-landing) .profiles-section .container > .reveal {
  margin-bottom: clamp(34px, 5vh, 56px) !important;
}

body.b2b-landing:not(.medical-landing) .profiles-grid-3 {
  gap: clamp(18px, 2.4vw, 28px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.b2b-landing:not(.medical-landing) .profile-card {
  border: 1px solid rgba(16,42,76,.08);
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(16,42,76,.08);
  overflow: hidden;
}

body.b2b-landing:not(.medical-landing) .profile-image {
  aspect-ratio: 16 / 10 !important;
  min-height: 0;
}

body.b2b-landing:not(.medical-landing) .profile-title {
  max-width: 82%;
}

body.b2b-landing:not(.medical-landing) .profiles-grid-3 .profile-title {
  font-size: clamp(1.12rem, 0.82rem + 0.54vw, 1.5rem) !important;
}

body.b2b-landing:not(.medical-landing) .profile-content {
  padding: clamp(18px, 1.8vw, 24px) !important;
}

body.b2b-landing:not(.medical-landing) .profile-content p {
  font-size: clamp(.94rem, .86rem + .2vw, 1rem) !important;
  line-height: 1.58;
  min-height: 0 !important;
}

body.b2b-landing:not(.medical-landing) .b2b-testimonials {
  background: #f8fafc !important;
  color: var(--primary) !important;
  padding-block: clamp(64px, 8vh, 100px) !important;
}

body.b2b-landing:not(.medical-landing) .b2b-testimonials h2 {
  color: var(--primary) !important;
  font-size: var(--company-h2) !important;
}

body.b2b-landing:not(.medical-landing) .b2b-testimonial-grid {
  gap: clamp(16px, 2vw, 24px);
}

body.b2b-landing:not(.medical-landing) .b2b-testimonial-card {
  border: 1px solid rgba(16,42,76,.1);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(16,42,76,.08);
  min-height: 300px;
  padding: clamp(24px, 2.8vw, 34px);
}

body.b2b-landing:not(.medical-landing) .b2b-fit-section .container {
  max-width: 1120px;
}

body.b2b-landing:not(.medical-landing) .b2b-fit-card {
  border-radius: 20px;
  min-height: 0;
  padding: clamp(26px, 3vw, 40px);
}

body.b2b-landing:not(.medical-landing) .philosophy-split {
  gap: clamp(28px, 5vw, 74px);
}

body.b2b-landing:not(.medical-landing) .booking-cta-inner {
  border-radius: 24px;
  padding: clamp(32px, 5vw, 64px);
}

@media (min-width: 1100px) {
  body.b2b-landing:not(.medical-landing) .b2b-dark-statement,
  body.b2b-landing:not(.medical-landing) .editorial-promise,
  body.b2b-landing:not(.medical-landing) .ev-services,
  body.b2b-landing:not(.medical-landing) .profiles-section,
  body.b2b-landing:not(.medical-landing) .b2b-fit-section,
  body.b2b-landing:not(.medical-landing) .philosophy-section,
  body.b2b-landing:not(.medical-landing) .booking-cta,
  body.b2b-landing:not(.medical-landing) .b2b-testimonials,
  body.b2b-landing:not(.medical-landing) .b2b-faqs,
  body.b2b-landing:not(.medical-landing) .contact {
    align-items: center;
    display: flex;
    padding-block: var(--company-section-pad);
  }

  body.b2b-landing:not(.medical-landing) .contact .contact-grid {
    gap: 36px;
    margin-top: 32px;
  }
}

@media (max-width: 1180px) {
  body.b2b-landing:not(.medical-landing) .profiles-grid-3,
  body.b2b-landing:not(.medical-landing) .b2b-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.b2b-landing:not(.medical-landing) .b2b-testimonial-grid .b2b-testimonial-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 560px;
    width: 100%;
  }

  body.b2b-landing:not(.medical-landing) .profiles-grid-3 .profile-card:last-child {
    grid-column: auto;
    max-width: none;
    width: auto;
  }
}

@media (max-width: 900px) {
  body.b2b-landing:not(.medical-landing) .split-hero {
    min-height: 100svh;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-content {
    padding: 82px var(--company-page-x) 42px;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-title {
    max-width: 15ch;
  }

  body.b2b-landing:not(.medical-landing) .statement-grid {
    grid-template-columns: 1fr !important;
  }

  body.b2b-landing:not(.medical-landing) .statement-title h2 {
    max-width: 17ch;
  }

  body.b2b-landing:not(.medical-landing) .ed-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  body.b2b-landing:not(.medical-landing) .ed-grid-4 .ed-card {
    min-height: 330px !important;
  }

  body.b2b-landing:not(.medical-landing) .ev-card {
    grid-template-columns: 1fr;
  }

  body.b2b-landing:not(.medical-landing) .ev-card-image {
    min-height: clamp(220px, 32vh, 330px);
  }
}

@media (min-width: 641px) and (max-width: 1099px) {
  body.b2b-landing:not(.medical-landing) {
    --company-title: clamp(2.48rem, 4.55vw, 3rem);
  }

  body.b2b-landing:not(.medical-landing) .split-hero-content {
    justify-content: center;
    padding-bottom: 34px;
    padding-top: 118px;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-kicker {
    font-size: .92rem;
    margin-bottom: 18px;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-title {
    max-width: 13ch;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-desc {
    line-height: 1.55;
    max-width: 46ch;
  }

  body.b2b-landing:not(.medical-landing) .split-hero .btn-dark {
    padding: 14px 28px !important;
  }

  body.b2b-landing:not(.medical-landing) .hero-action-row {
    margin-top: 6px;
  }
}

@media (max-width: 760px) {
  body.b2b-landing:not(.medical-landing) .profiles-grid-3,
  body.b2b-landing:not(.medical-landing) .b2b-testimonial-grid {
    grid-template-columns: 1fr !important;
  }

  body.b2b-landing:not(.medical-landing) .profiles-grid-3 .profile-card:last-child,
  body.b2b-landing:not(.medical-landing) .b2b-testimonial-grid .b2b-testimonial-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  body.b2b-landing:not(.medical-landing) .b2b-fit-grid {
    grid-template-columns: 1fr !important;
  }

  body.b2b-landing:not(.medical-landing) .assurance-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.b2b-landing:not(.medical-landing) .assurance-item:nth-child(2n) {
    border-right: 0;
  }

  body.b2b-landing:not(.medical-landing) .assurance-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(148, 163, 184, 0.36);
  }
}

@media (max-width: 640px) {
  body.b2b-landing:not(.medical-landing) {
    --company-page-x: 18px;
    --company-title: clamp(1.84rem, 1.14rem + 5.6vw, 2.5rem);
    --company-h2: clamp(1.7rem, 1.14rem + 4.25vw, 2.22rem);
  }

  body.b2b-landing:not(.medical-landing) .split-hero {
    display: flex;
    min-height: 100svh;
    overflow: hidden;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-content {
    flex-basis: 100%;
    justify-content: center;
    min-height: 100svh;
    min-width: 0;
    padding-block: 72px 38px;
    position: relative;
    width: 100%;
    z-index: 2;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-kicker,
  body.b2b-landing:not(.medical-landing) .split-hero-desc {
    overflow-wrap: anywhere;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-kicker {
    font-size: .9rem;
    max-width: 28ch;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-title {
    max-width: 12.2ch;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-desc {
    line-height: 1.58;
    max-width: 34ch;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-image {
    inset: 0;
    min-height: 0;
    opacity: .18;
    order: initial;
    position: absolute;
    width: 100%;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-image img {
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
    position: absolute;
  }

  body.b2b-landing:not(.medical-landing) .split-hero .btn-dark {
    justify-content: center;
    max-width: 100%;
    width: min(100%, 330px);
  }

  body.b2b-landing:not(.medical-landing) .hero-action-row {
    width: 100%;
  }

  body.b2b-landing:not(.medical-landing) .b2b-premium-logos .marquee-item-box,
  body.medical-landing .b2b-premium-logos .marquee-item-box {
    height: 48px;
    margin-inline: 22px;
    width: 112px;
  }

  body.b2b-landing:not(.medical-landing) .ed-grid-4 {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  body.b2b-landing:not(.medical-landing) .assurance-grid {
    grid-template-columns: 1fr;
  }

  body.b2b-landing:not(.medical-landing) .assurance-item {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.36);
  }

  body.b2b-landing:not(.medical-landing) .assurance-item:last-child {
    border-bottom: 0;
  }

  body.b2b-landing:not(.medical-landing) .ed-grid-4 .ed-card {
    aspect-ratio: 5 / 4.8 !important;
    min-height: 310px !important;
  }

  body.b2b-landing:not(.medical-landing) .ed-grid-4 .ed-text-content {
    padding: 22px;
  }

  body.b2b-landing:not(.medical-landing) .ed-grid-4 .ed-card h3 {
    font-size: 1.28rem;
  }

  body.b2b-landing:not(.medical-landing) .ed-grid-4 .ed-card p {
    font-size: .94rem;
    line-height: 1.55;
  }

  body.b2b-landing:not(.medical-landing) .ev-card {
    border-radius: 18px;
  }

  body.b2b-landing:not(.medical-landing) .ev-card-content {
    padding: 26px 18px;
  }

  body.b2b-landing:not(.medical-landing) .ev-card-content p[style] {
    margin-top: 0 !important;
  }

  body.b2b-landing:not(.medical-landing) .ev-card-content ul {
    font-size: .96rem !important;
    margin-bottom: 20px !important;
  }

  body.b2b-landing:not(.medical-landing) .profile-title {
    bottom: 18px !important;
    font-size: 1.32rem !important;
    left: 20px !important;
  }

  body.b2b-landing:not(.medical-landing) .b2b-testimonial-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  body.b2b-landing:not(.medical-landing) .testimonial-nav {
    display: none !important;
  }

  body.b2b-landing:not(.medical-landing) .booking-cta-inner {
    border-radius: 18px;
  }
}


body.b2b-landing .editorial-promise,
body.b2b-landing .ev-services,
body.b2b-landing .profiles-section,
body.b2b-landing .b2b-fit-section,
body.b2b-landing .philosophy-section,
body.b2b-landing .booking-cta,
body.b2b-landing .b2b-testimonials {
  flex-direction: column !important;
  justify-content: center !important;
}


/* Philosophy Section Redesign (Editorial Sky) */
.philosophy-section.sky-background { background: #f0f7ff !important; position: relative; overflow: visible; }
.booking-cta.sky-background { background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%) !important; position: relative; }

body.b2b-landing:not(.medical-landing) .company-benefits-section {
  background: #f8fbff !important;
}

body.b2b-landing:not(.medical-landing) .company-assurance-strip {
  background: linear-gradient(180deg, #f6fbff 0%, #fdfefe 100%);
  border-block: 1px solid rgba(191, 219, 254, 0.9);
  padding: 20px 0;
}

body.b2b-landing:not(.medical-landing) .assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(16,42,76,.06);
  overflow: hidden;
}

body.b2b-landing:not(.medical-landing) .assurance-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 82px;
  padding: 16px 20px;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  border-right: 1px solid rgba(148, 163, 184, 0.36);
}

body.b2b-landing:not(.medical-landing) .assurance-item:last-child {
  border-right: 0;
}

body.b2b-landing:not(.medical-landing) .assurance-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(224, 242, 254, 0.9);
  color: #123f75;
  border: 1px solid rgba(191, 219, 254, 0.9);
}

body.b2b-landing:not(.medical-landing) .assurance-item span:last-child {
  line-height: 1.3;
}

body.b2b-landing:not(.medical-landing) .b2b-dark-statement {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  color: var(--primary);
  overflow: hidden;
  padding: clamp(88px, 9vw, 126px) 0;
}

body.b2b-landing:not(.medical-landing) .b2b-dark-statement::before {
  display: none;
}

body.b2b-landing:not(.medical-landing) .statement-grid {
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  grid-template-columns: minmax(320px, .9fr) minmax(420px, 1.1fr) minmax(220px, .72fr);
}

body.b2b-landing:not(.medical-landing) .statement-title h2 {
  color: var(--primary);
  max-width: 12ch;
}

body.b2b-landing:not(.medical-landing) .statement-title em {
  color: #f2b800;
}

body.b2b-landing:not(.medical-landing) .statement-content {
  justify-self: start;
  padding-left: 0;
}

body.b2b-landing:not(.medical-landing) .statement-content p {
  color: #48627e;
  max-width: 58ch;
}

body.b2b-landing:not(.medical-landing) .statement-quote {
  border-left: 0;
  color: var(--primary);
  font-style: italic;
  margin-top: 28px;
  max-width: 42ch;
  padding-left: 0;
}

body.b2b-landing:not(.medical-landing) .statement-art {
  align-self: stretch;
  display: flex;
  justify-content: flex-end;
  min-height: 420px;
  position: relative;
}

body.b2b-landing:not(.medical-landing) .statement-art img {
  height: auto;
  margin-right: clamp(-42px, -2vw, -12px);
  margin-top: clamp(10px, 2vw, 34px);
  max-width: min(100%, 440px);
  object-fit: contain;
  width: 100%;
}

@media (max-width: 900px) {
  body.b2b-landing:not(.medical-landing) .assurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.b2b-landing:not(.medical-landing) .assurance-item:nth-child(2) {
    border-right: 0;
  }

  body.b2b-landing:not(.medical-landing) .statement-grid {
    grid-template-columns: 1fr;
  }

  body.b2b-landing:not(.medical-landing) .statement-title h2,
  body.b2b-landing:not(.medical-landing) .statement-content p,
  body.b2b-landing:not(.medical-landing) .statement-quote {
    max-width: none;
  }

  body.b2b-landing:not(.medical-landing) .statement-art {
    justify-content: center;
    min-height: 0;
  }

  body.b2b-landing:not(.medical-landing) .statement-art img {
    margin-right: 0;
    max-width: 360px;
  }
}

@media (max-width: 640px) {
  body.b2b-landing:not(.medical-landing) .assurance-grid {
    grid-template-columns: 1fr;
  }

  body.b2b-landing:not(.medical-landing) .assurance-item {
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.28);
    justify-content: flex-start;
  }

  body.b2b-landing:not(.medical-landing) .assurance-item:last-child {
    border-bottom: 0;
  }

  body.b2b-landing:not(.medical-landing) .statement-art img {
    max-width: 280px;
  }
}

/* Final cleanup: remove home about, center CTA, restore dark statement */
body:not(.b2b-landing) .proof-comparison-layout.proof-single-column {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: min(1180px, calc(100vw - (var(--home-page-x) * 2)));
  padding-inline: 0;
}

body:not(.b2b-landing) .proof-single-column .proof-side,
body:not(.b2b-landing) .proof-single-column .proof-header,
body:not(.b2b-landing) .proof-single-column .proof-grid {
  max-width: 100%;
  width: 100%;
}

.home-final-cta .container {
  display: flex;
  justify-content: center;
}

.home-final-cta-inner {
  text-align: center;
}

.home-final-cta h2,
.home-final-cta p,
.home-final-contact-row {
  margin-left: auto;
  margin-right: auto;
}

.home-final-contact-row {
  justify-content: center;
}

body.b2b-landing:not(.medical-landing) .b2b-dark-statement {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 210, 0, .08), transparent 20%),
    linear-gradient(135deg, #07172b 0%, #0b2746 58%, #17375e 100%);
  color: #fff;
}

body.b2b-landing:not(.medical-landing) .statement-title h2,
body.b2b-landing:not(.medical-landing) .statement-title em {
  color: #fff;
}

body.b2b-landing:not(.medical-landing) .statement-content p {
  color: rgba(255,255,255,.8);
}

body.b2b-landing:not(.medical-landing) .statement-quote {
  color: var(--accent);
}

body.b2b-landing:not(.medical-landing) .company-benefits-section::after {
  display: none;
}

body.b2b-landing:not(.medical-landing) .company-benefits-section .ev-bg {
  display: none;
}

body.b2b-landing:not(.medical-landing) .company-benefits-section .ev-card {
  box-shadow: 0 28px 70px rgba(16,42,76,.12);
}

body.b2b-landing:not(.medical-landing) .company-sky-cta {
  background:
    linear-gradient(180deg, rgba(248,251,255,.92), rgba(255,255,255,.7)),
    url("../assets/images/optimized/booking-sky-cta.webp") center / cover no-repeat !important;
  overflow: hidden;
}

body.b2b-landing:not(.medical-landing) .company-sky-cta .booking-cta-inner {
  background:
    linear-gradient(135deg, rgba(12,35,66,.78), rgba(16,42,76,.48)),
    url("../assets/images/optimized/booking-sky-cta.webp") center / cover no-repeat !important;
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: 0 28px 74px rgba(16,42,76,.18);
}

body.b2b-landing:not(.medical-landing) .company-sky-cta .btn {
  background: var(--accent);
  border: 2px solid rgba(255,255,255,.9);
  color: var(--primary);
}

body.b2b-landing:not(.medical-landing) .company-sky-cta .btn:hover {
  background: #fff;
  color: var(--primary);
}

body:not(.b2b-landing) .booking-cta {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
}

body:not(.b2b-landing) .booking-cta-inner {
  background:
    linear-gradient(135deg, rgba(12,35,66,.88), rgba(16,42,76,.68)),
    url("../assets/images/optimized/booking-sky-cta.webp") center / cover no-repeat;
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 28px 72px rgba(12,35,66,.2);
  backdrop-filter: blur(4px);
  overflow: hidden;
  position: relative;
}

body:not(.b2b-landing) .booking-cta-inner .btn {
  background: var(--accent);
  border: 2px solid rgba(255,255,255,.92);
  box-shadow: 0 16px 34px rgba(12,35,66,.22);
  color: var(--primary);
}

body:not(.b2b-landing) .booking-cta-inner .btn:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-2px);
}

.philosophy-split { display: flex; align-items: center; gap: 64px; width: 100%; min-height: 80vh; }

.philosophy-visual { flex: 0 0 50%; position: relative; }

.airplane-img { width: 140%; max-width: none; height: auto; transform: translateX(-20%) translateY(20px); filter: drop-shadow(0 30px 60px rgba(15, 42, 76, 0.15)); z-index: 2; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.philosophy-visual:hover .airplane-img { transform: translateX(-18%) translateY(0); }

.philosophy-text { flex: 0 0 50%; z-index: 3; }

.philosophy-title { font-size: 3.5rem !important; line-height: 1.05 !important; margin-bottom: 40px !important; color: var(--primary); font-weight: 800; letter-spacing: -0.02em; }

.philosophy-p { font-size: 1.35rem !important; line-height: 1.5 !important; margin-bottom: 28px !important; color: var(--text-secondary); max-width: 540px; }

.philosophy-p.secondary { font-size: 1.15rem !important; opacity: 0.75; line-height: 1.6; }

@media (max-width: 991px) {
  .philosophy-split { flex-direction: column; gap: 40px; text-align: left; padding-top: 60px; }
  .philosophy-visual { order: 2; width: 100%; flex: none; }
  .philosophy-text { order: 1; width: 100%; flex: none; }
  .airplane-img { width: 110%; transform: translateX(-5%); }
  .philosophy-title { font-size: 2.5rem !important; }
  .philosophy-p { font-size: 1.2rem !important; }
}


/* Static Airplane Image Overrides */
.airplane-img { transform: translateX(-15%) translateY(10px) !important; transition: none !important; z-index: 10 !important; }
.philosophy-visual:hover .airplane-img { transform: translateX(-15%) translateY(10px) !important; }

/* Home responsive control layer
   Fluid typography and spacing locks keep the desktop composition proportional
   across small laptops and phones without one-off viewport jumps. */
body:not(.b2b-landing) {
  --home-page-x: clamp(16px, 3.2vw, 48px);
  --home-hero-title: clamp(1.95rem, 1.02rem + 3.72vw, 5rem);
  --home-hero-desc: clamp(.92rem, .8rem + .42vw, 1.18rem);
  --home-hero-copy: min(1120px, calc(100vw - (var(--home-page-x) * 2)));
  --home-hero-copy-min: clamp(232px, 29vh, 292px);
  --home-hero-cta-gap: clamp(20px, 4.4vh, 66px);
  --home-stat-number: clamp(2.35rem, 1.65rem + 2.55vw, 4rem);
  --home-stat-label: clamp(.68rem, .6rem + .26vw, .9rem);
}

body:not(.b2b-landing) .container {
  padding-inline: var(--home-page-x);
}

body:not(.b2b-landing) .hero {
  min-height: 100svh;
  padding-block: clamp(76px, 10svh, 116px) clamp(44px, 8svh, 88px);
}

body:not(.b2b-landing) .pin-spacer:has(> .hero),
body:not(.b2b-landing) .hero {
  min-height: 100svh !important;
}

body:not(.b2b-landing) .hero-content {
  justify-content: center;
  padding-top: clamp(0px, 1.4vh, 18px);
}

body:not(.b2b-landing) .hero-text-container {
  min-height: var(--home-hero-copy-min);
  max-width: var(--home-hero-copy);
}

body:not(.b2b-landing) .hero-text-slide {
  left: 0;
  margin-inline: auto;
  max-width: 100%;
  padding-inline: 0;
  right: 0;
}

body:not(.b2b-landing) .hero-text-slide.active {
  filter: blur(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

body:not(.b2b-landing) .hero-title {
  font-size: var(--home-hero-title);
  line-height: 1.05;
  margin: 0 0 clamp(16px, 2.2vh, 26px);
  max-width: var(--home-hero-copy);
  text-wrap: balance;
}

body:not(.b2b-landing) .hero-desc {
  font-size: var(--home-hero-desc);
  line-height: 1.56;
  max-width: min(880px, calc(100vw - (var(--home-page-x) * 2)));
  text-wrap: pretty;
}

body:not(.b2b-landing) .hero-progress {
  margin-top: clamp(10px, 1.7vh, 18px);
}

body:not(.b2b-landing) .hero-cta-container {
  margin-top: calc(var(--home-hero-cta-gap) + 120px);
  animation: heroButtonFadeIn 0.8s ease 0.45s forwards;
  opacity: 0;
}

@keyframes heroButtonFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

body:not(.b2b-landing) .hero-cta {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: clamp(46px, 5vh, 54px);
  min-width: clamp(176px, 16vw, 214px);
  padding: clamp(12px, 1.2vh, 15px) clamp(24px, 2.6vw, 32px);
  white-space: nowrap;
  width: auto;
}

body:not(.b2b-landing) .stats-section {
  padding-block: clamp(56px, 8vw, 92px) clamp(50px, 7vw, 80px);
}

body:not(.b2b-landing) .value-capture-section {
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  padding-block: clamp(56px, 7vw, 96px);
}

body:not(.b2b-landing) .value-capture-grid {
  align-items: center;
  display: grid;
  gap: clamp(26px, 5vw, 64px);
  grid-template-columns: minmax(240px, .45fr) minmax(0, 1fr);
  max-width: 1060px;
}

body:not(.b2b-landing) .value-capture-image {
  aspect-ratio: 4 / 3.1;
  border-radius: 22px;
  box-shadow: 0 22px 52px rgba(16,42,76,.1);
  overflow: hidden;
}

body:not(.b2b-landing) .value-capture-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

body:not(.b2b-landing) .value-capture-copy h2 {
  color: var(--primary);
  font-size: clamp(1.85rem, 1.3rem + 1.8vw, 3rem);
  line-height: 1.08;
  margin-bottom: 20px;
  max-width: 760px;
  text-wrap: balance;
}

body:not(.b2b-landing) .value-capture-copy p {
  color: var(--text-secondary);
  font-size: clamp(1rem, .9rem + .28vw, 1.14rem);
  line-height: 1.72;
  margin-bottom: 18px;
  max-width: 760px;
}

body:not(.b2b-landing) .stats-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(14px, 2.8vw, 40px);
  max-width: 1120px;
}

body:not(.b2b-landing) .stat-item {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: clamp(108px, 12vw, 132px);
  min-width: 0;
  text-align: center;
}

body:not(.b2b-landing) .stat-number {
  align-items: center;
  display: flex;
  font-size: var(--home-stat-number);
  justify-content: center;
  line-height: 1;
  margin-bottom: clamp(8px, 1.2vw, 12px);
  min-height: 1.06em;
  white-space: nowrap;
}

body:not(.b2b-landing) .stat-label {
  align-items: flex-start;
  display: flex;
  font-size: var(--home-stat-label);
  justify-content: center;
  letter-spacing: clamp(.055em, .18vw, .1em);
  line-height: 1.42;
  max-width: 17ch;
  min-height: 2.85em;
}

body:not(.b2b-landing) .stat-divider {
  align-self: center;
  height: clamp(58px, 7vw, 74px);
}

body:not(.b2b-landing) .ev-founder-quote {
  border-left: 3px solid var(--accent);
  margin: -10px 0 28px;
  padding-left: 20px;
}

body:not(.b2b-landing) .ev-founder-quote p {
  color: var(--primary);
  font-size: clamp(1.02rem, .92rem + .28vw, 1.16rem);
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 10px;
}

body:not(.b2b-landing) .ev-founder-quote cite {
  color: var(--text-secondary);
  display: block;
  font-style: normal;
  font-weight: 600;
}

body:not(.b2b-landing) .proof-section {
  background: #fff;
  padding-block: clamp(60px, 8vw, 110px);
}

body:not(.b2b-landing) .proof-header {
  margin: 0 auto clamp(30px, 5vw, 48px);
  max-width: 760px;
  text-align: center;
}

body:not(.b2b-landing) .proof-header h2 {
  color: var(--primary);
  font-size: clamp(1.9rem, 1.24rem + 2.1vw, 3.15rem);
  line-height: 1.08;
}

body:not(.b2b-landing) .proof-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-inline: auto;
  max-width: 1060px;
}

body:not(.b2b-landing) .proof-card {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  border: 1px solid rgba(106,155,200,.22);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(16,42,76,.07);
  padding: clamp(22px, 2.4vw, 30px);
}

body:not(.b2b-landing) .proof-card p {
  color: var(--primary);
  font-size: .98rem;
  line-height: 1.6;
  margin-bottom: 26px;
}

body:not(.b2b-landing) .proof-person {
  align-items: center;
  display: grid;
  gap: 2px 12px;
  grid-template-columns: 40px 1fr;
}

body:not(.b2b-landing) .proof-person span {
  background: linear-gradient(180deg, #e9f2fb, #fff);
  border: 1px solid rgba(16,42,76,.08);
  border-radius: 50%;
  grid-row: span 2;
  height: 40px;
  width: 40px;
}

body:not(.b2b-landing) .proof-person strong {
  color: var(--primary);
  font-size: .9rem;
}

body:not(.b2b-landing) .proof-person small {
  color: var(--text-light);
  font-size: .78rem;
}

body:not(.b2b-landing) .difference-block {
  margin: clamp(44px, 6vw, 72px) auto 0;
  max-width: 1060px;
}

body:not(.b2b-landing) .difference-block h3 {
  color: var(--primary);
  font-size: clamp(1.5rem, 1.08rem + 1.3vw, 2.2rem);
  margin-bottom: 22px;
}

body:not(.b2b-landing) .difference-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body:not(.b2b-landing) .difference-card {
  border-radius: 18px;
  padding: clamp(22px, 2.5vw, 30px);
}

body:not(.b2b-landing) .difference-card.without {
  background: #fff2f2;
  border: 1px solid rgba(174,48,48,.18);
}

body:not(.b2b-landing) .difference-card.with {
  background: #eef8e8;
  border: 1px solid rgba(60,128,66,.18);
}

body:not(.b2b-landing) .difference-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 14px;
}

body:not(.b2b-landing) .difference-card.without h4,
body:not(.b2b-landing) .difference-card.without li {
  color: #9b2d2d;
}

body:not(.b2b-landing) .difference-card.with h4,
body:not(.b2b-landing) .difference-card.with li {
  color: #2f7537;
}

body:not(.b2b-landing) .difference-card ul {
  display: grid;
  gap: 10px;
}

body:not(.b2b-landing) .difference-card li {
  font-size: .96rem;
  line-height: 1.45;
  padding-left: 20px;
  position: relative;
}

body:not(.b2b-landing) .difference-card.without li::before {
  content: "x";
  font-weight: 800;
  left: 0;
  position: absolute;
}

body:not(.b2b-landing) .difference-card.with li::before {
  content: "✓";
  font-weight: 800;
  left: 0;
  position: absolute;
}

@media (max-width: 1180px) {
  body:not(.b2b-landing) {
    --home-hero-title: clamp(2.18rem, 1.22rem + 3.45vw, 3.75rem);
    --home-hero-desc: clamp(.9rem, .76rem + .48vw, 1.04rem);
    --home-hero-copy-min: clamp(196px, 25vh, 226px);
    --home-hero-cta-gap: clamp(18px, 2.7vh, 34px);
    --home-stat-number: clamp(2.55rem, 1.82rem + 2vw, 3.35rem);
    --home-stat-label: clamp(.66rem, .54rem + .22vw, .74rem);
  }
}

@media (max-width: 900px) {
  body:not(.b2b-landing) {
    --home-hero-title: clamp(2.1rem, 1.2rem + 5.1vw, 3.45rem);
    --home-hero-desc: clamp(.94rem, .78rem + .62vw, 1.04rem);
    --home-hero-copy-min: clamp(230px, 31vh, 292px);
    --home-hero-cta-gap: clamp(18px, 3vh, 30px);
  }

  body:not(.b2b-landing) .hero {
    padding-block: clamp(78px, 11svh, 104px) clamp(36px, 6svh, 58px);
  }

  body:not(.b2b-landing) .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 5vw, 34px) clamp(14px, 4vw, 28px);
  }

  body:not(.b2b-landing) .value-capture-grid,
  body:not(.b2b-landing) .proof-grid,
  body:not(.b2b-landing) .difference-grid {
    grid-template-columns: 1fr;
  }

  body:not(.b2b-landing) .value-capture-image {
    max-height: 320px;
  }

  body:not(.b2b-landing) .stat-divider {
    display: none;
  }

  body:not(.b2b-landing) .stat-label {
    max-width: 20ch;
    min-height: 0;
  }
}

@media (max-width: 520px) {
  body:not(.b2b-landing) {
    --home-page-x: clamp(16px, 5vw, 22px);
    --home-hero-title: clamp(1.42rem, .98rem + 4.5vw, 1.78rem);
    --home-hero-desc: clamp(.78rem, .7rem + .48vw, .86rem);
    --home-hero-copy-min: clamp(318px, 42vh, 374px);
    --home-hero-cta-gap: clamp(14px, 2.2vh, 24px);
    --home-stat-number: clamp(2.15rem, 1.42rem + 7vw, 2.85rem);
    --home-stat-label: clamp(.64rem, .52rem + .85vw, .72rem);
  }

  body:not(.b2b-landing) .hero-text-slide {
    width: min(100%, calc(100vw - (var(--home-page-x) * 2)));
  }

  body:not(.b2b-landing) .hero-title {
    line-height: 1.03;
    max-width: 14ch;
  }

  body:not(.b2b-landing) .hero-desc {
    line-height: 1.42;
    max-width: 39ch;
  }

  body:not(.b2b-landing) .hero-progress-dot {
    width: 26px;
  }

  body:not(.b2b-landing) .hero-progress-dot.active {
    width: 42px;
  }

  body:not(.b2b-landing) .stats-grid {
    gap: 24px 12px;
  }
}

/* Home premium stats bridge and infrastructure panel */
body:not(.b2b-landing) .stats-section {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--primary);
  margin: -62px 0 -62px !important;
  padding: 0;
  position: relative;
  z-index: 12;
}

body:not(.b2b-landing) .stats-section::before {
  display: none;
}

body:not(.b2b-landing) .stats-grid {
  align-items: stretch;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(8, 24, 46, 0.18);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr);
  max-width: 1180px;
  overflow: hidden;
  padding: 0;
}

body:not(.b2b-landing) .stat-item {
  align-items: center;
  display: grid;
  gap: clamp(12px, 1.5vw, 18px);
  grid-template-columns: auto minmax(0, 1fr);
  justify-content: start;
  min-height: 106px;
  padding: clamp(20px, 2.7vw, 32px);
  text-align: left;
}

body:not(.b2b-landing) .stat-icon {
  color: var(--primary);
  display: inline-flex;
  width: clamp(42px, 4vw, 54px);
}

body:not(.b2b-landing) .stat-icon svg {
  fill: none;
  height: auto;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 100%;
}

body:not(.b2b-landing) .stat-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

body:not(.b2b-landing) .stat-number {
  color: var(--primary);
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1rem + 0.65vw, 1.68rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
  min-height: 0;
}

body:not(.b2b-landing) .stat-number.stat-plain {
  font-size: clamp(1.05rem, .98rem + .32vw, 1.34rem);
}

body:not(.b2b-landing) .stat-label {
  color: #5f6f82;
  display: block;
  font-size: clamp(.74rem, .68rem + .22vw, .9rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0;
  max-width: none;
  min-height: 0;
  opacity: 1;
  text-transform: none;
}

body:not(.b2b-landing) .stat-divider {
  align-self: center;
  background: rgba(148, 163, 184, 0.36);
  height: 52%;
  width: 1px;
}

body:not(.b2b-landing) .profiles-section {
  padding-top: calc(var(--section-py) + 74px);
}

body:not(.b2b-landing) .ev-services {
  background: linear-gradient(135deg, #031b34 0%, #062b55 58%, #031b34 100%);
  color: #fff;
  min-height: auto;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px) 0;
}

body:not(.b2b-landing) .ev-services::after {
  display: none;
}

body:not(.b2b-landing) .ev-bg img {
  display: none;
}

body:not(.b2b-landing) .ev-panel {
  align-items: stretch;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: minmax(440px, 1.8fr) repeat(3, minmax(220px, 1fr));
  max-width: none;
  min-height: 0;
  padding-block: clamp(20px, 2.3vw, 30px);
  padding-inline: max(var(--home-page-x), calc((100vw - 1480px) / 2));
  width: 100%;
}

body:not(.b2b-landing) .ev-intro {
  border-right: 0;
  padding-right: clamp(18px, 2.1vw, 30px);
  position: relative;
}

body:not(.b2b-landing) .ev-intro::after,
body:not(.b2b-landing) .ev-feature::before {
  background: rgba(255, 255, 255, 0.13);
  content: "";
  height: 72%;
  position: absolute;
  top: 14%;
  width: 1px;
}

body:not(.b2b-landing) .ev-intro::after {
  right: 0;
}

body:not(.b2b-landing) .ev-title {
  color: #fff;
  font-size: clamp(1.6rem, 1.05rem + 1.72vw, 2.55rem);
  line-height: 1;
  margin-bottom: 10px;
  max-width: 500px;
}

body:not(.b2b-landing) .ev-title em {
  color: inherit;
}

body:not(.b2b-landing) .ev-title-line {
  background: var(--accent);
  display: block;
  height: 3px;
  margin-bottom: 11px;
  width: 50px;
}

body:not(.b2b-landing) .ev-intro p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(.8rem, .76rem + .1vw, .9rem);
  line-height: 1.42;
  margin: 0;
  max-width: 480px;
}

body:not(.b2b-landing) .ev-feature-grid {
  display: contents;
}

body:not(.b2b-landing) .ev-feature {
  border-right: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: flex-start;
  min-height: 0;
  padding: 0 clamp(16px, 1.65vw, 28px);
  position: relative;
}

body:not(.b2b-landing) .ev-feature::before {
  left: 0;
}

body:not(.b2b-landing) .ev-feature:last-child {
  border-right: 0;
}

body:not(.b2b-landing) .ev-feature-icon {
  align-items: center;
  color: #ffd21f;
  display: inline-flex;
  height: clamp(30px, 2.6vw, 40px);
  justify-content: flex-start;
  width: clamp(30px, 2.6vw, 40px);
}

body:not(.b2b-landing) .ev-feature-icon svg {
  fill: none;
  height: auto;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
  width: 100%;
}

body:not(.b2b-landing) .ev-feature h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(.86rem, .8rem + .16vw, 1rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}

body:not(.b2b-landing) .ev-feature p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(.76rem, .72rem + .1vw, .84rem);
  line-height: 1.42;
  margin: 0;
}

body:not(.b2b-landing) .ev-quote-feature .ev-founder-quote {
  border: 0;
  margin: 0;
  padding: 0;
}

body:not(.b2b-landing) .ev-quote-feature .ev-founder-quote p {
  color: rgba(255, 255, 255, 0.88);
  display: -webkit-box;
  font-size: clamp(.73rem, .69rem + .1vw, .82rem);
  font-weight: 800;
  line-height: 1.34;
  margin: 0 0 8px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

body:not(.b2b-landing) .ev-quote-feature .ev-founder-quote cite {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-size: .7rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.3;
}

@media (max-width: 980px) {

  body:not(.b2b-landing) .ev-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
  }

  body:not(.b2b-landing) .ev-intro {
    border-right: 0;
    padding-right: 0;
  }

  body:not(.b2b-landing) .ev-intro::after {
    display: none;
  }

  body:not(.b2b-landing) .ev-title {
    max-width: 18ch;
  }

  body:not(.b2b-landing) .ev-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  body:not(.b2b-landing) .ev-feature {
    border-bottom: 1px solid rgba(106, 155, 200, 0.18);
    min-height: 0;
    padding: 22px;
  }

  body:not(.b2b-landing) .ev-feature::before {
    display: none;
  }

  body:not(.b2b-landing) .ev-feature:nth-child(2n) {
    border-right: 0;
  }

  body:not(.b2b-landing) .ev-feature:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {

  body:not(.b2b-landing) .profiles-section {
    padding-top: calc(var(--section-py) + 48px);
  }

  body:not(.b2b-landing) .ev-services {
    padding: 28px 0;
  }

  body:not(.b2b-landing) .ev-panel {
    padding: 26px 20px;
  }

  body:not(.b2b-landing) .ev-feature-grid {
    grid-template-columns: 1fr;
  }

  body:not(.b2b-landing) .ev-feature {
    border-bottom: 1px solid rgba(106, 155, 200, 0.18) !important;
    border-right: 0 !important;
    min-height: auto;
    padding: 22px 0;
  }

  body:not(.b2b-landing) .ev-feature:last-child {
    border-bottom: 0 !important;
    padding-bottom: 0;
  }
}

/* Home reference layout refinements */
body:not(.b2b-landing) .hero-cta-container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

body:not(.b2b-landing) .hero-cta-secondary {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: clamp(46px, 5vh, 54px);
  min-width: clamp(152px, 14vw, 188px);
  padding: clamp(12px, 1.2vh, 15px) clamp(22px, 2.4vw, 30px);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

body:not(.b2b-landing) .hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.78);
}

body:not(.b2b-landing) .profiles-section {
  background:
    linear-gradient(180deg, rgba(239, 248, 255, 0.62) 0%, rgba(255, 255, 255, 0.56) 100%),
    url("../assets/images/profiles-sky-bg.webp") center top / cover no-repeat;
  padding-bottom: clamp(28px, 4vw, 46px);
}

body:not(.b2b-landing) .profiles-section .section-label {
  display: none;
}

body:not(.b2b-landing) .profiles-section h2 {
  color: var(--primary);
  font-size: clamp(1.45rem, 1.12rem + 1.2vw, 2.05rem);
  line-height: 1.1;
  position: relative;
}

body:not(.b2b-landing) .profiles-section h2::after,
body:not(.b2b-landing) .proof-title-line {
  background: var(--accent);
  content: "";
  display: block;
  height: 3px;
  margin: 12px auto 0;
  width: 42px;
}

body:not(.b2b-landing) .profiles-grid {
  gap: clamp(18px, 2.6vw, 28px);
  margin-inline: auto;
  max-width: 1080px;
}

body:not(.b2b-landing) .profile-card {
  border: 1px solid rgba(106, 155, 200, 0.2);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(16, 42, 76, 0.08);
}

body:not(.b2b-landing) .profile-image {
  aspect-ratio: 16 / 5.4;
  min-height: 154px;
  overflow: visible;
  position: relative;
}

body:not(.b2b-landing) .profile-image img,
body:not(.b2b-landing) .profile-overlay {
  border-radius: 14px 14px 0 0;
}

body:not(.b2b-landing) .profile-overlay {
  background:
    linear-gradient(180deg, rgba(6, 43, 85, 0.02) 0%, rgba(3, 27, 52, 0.34) 100%),
    linear-gradient(90deg, rgba(3, 27, 52, 0.18) 0%, rgba(3, 27, 52, 0.04) 56%, rgba(3, 27, 52, 0.18) 100%);
  z-index: 1;
}

body:not(.b2b-landing) .profile-title {
  display: none;
}

body:not(.b2b-landing) .profile-content {
  padding: clamp(44px, 4vw, 54px) clamp(20px, 2.4vw, 28px) clamp(20px, 2.4vw, 28px);
}

body:not(.b2b-landing) .profile-badge {
  align-items: center;
  background: var(--primary);
  border: 6px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: flex;
  height: 68px;
  justify-content: center;
  left: clamp(20px, 2.8vw, 34px);
  position: absolute;
  bottom: -34px;
  width: 68px;
  z-index: 5;
}

body:not(.b2b-landing) .profile-badge svg {
  fill: none;
  height: 30px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 30px;
}

body:not(.b2b-landing) .profile-content p {
  color: var(--primary);
  font-size: clamp(.88rem, .82rem + .12vw, .96rem);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
  text-wrap: pretty;
}

body:not(.b2b-landing) .profile-content h3 {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 1.16rem + .9vw, 1.95rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 14px;
  max-width: 13ch;
  text-wrap: balance;
}

body:not(.b2b-landing) .profile-features {
  gap: 8px;
  margin-bottom: 20px;
}

body:not(.b2b-landing) .profile-features li {
  color: #52657a;
  font-size: .9rem;
  line-height: 1.35;
}

body:not(.b2b-landing) .profile-btn {
  background: transparent;
  box-shadow: none;
  color: var(--secondary);
  font-size: .88rem;
  justify-content: flex-start;
  padding: 0;
}

body:not(.b2b-landing) .profile-btn:hover {
  background: transparent;
  color: var(--primary);
}

body:not(.b2b-landing) .ev-panel {
  grid-template-columns: minmax(380px, 1.28fr) repeat(3, minmax(220px, 1fr));
}

body:not(.b2b-landing) .ev-intro {
  display: flex;
  flex-direction: column;
}

body:not(.b2b-landing) .ev-intro p {
  max-width: 380px;
}

body:not(.b2b-landing) .ev-founder-quote {
  border-left: 0;
  margin: 0;
  padding: 0;
}

body:not(.b2b-landing) .ev-founder-quote p {
  color: #fff;
  font-size: clamp(.73rem, .69rem + .1vw, .82rem);
  font-weight: 700;
  line-height: 1.34;
  margin-bottom: 8px;
}

body:not(.b2b-landing) .ev-founder-quote cite {
  color: rgba(255, 255, 255, 0.68);
  font-size: .7rem;
}

body:not(.b2b-landing) .ev-feature-grid {
  display: contents;
}

body:not(.b2b-landing) .ev-feature {
  min-height: 0;
}

body:not(.b2b-landing) .proof-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
  padding-block: clamp(48px, 5.2vw, 64px);
}

body:not(.b2b-landing) .proof-comparison-layout {
  align-items: start;
  display: grid;
  gap: clamp(42px, 4.4vw, 62px);
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 460px);
  max-width: 1240px;
}

body:not(.b2b-landing) .proof-side {
  justify-self: start;
  width: 100%;
}

body:not(.b2b-landing) .proof-header {
  margin: 0 0 18px;
  text-align: left;
}

body:not(.b2b-landing) .proof-header h2 {
  font-size: clamp(1.55rem, 1.16rem + 1.35vw, 2.16rem);
  line-height: 1.05;
}

body:not(.b2b-landing) .proof-title-line {
  margin-left: 0;
  margin-top: 9px;
  width: 34px;
}

body:not(.b2b-landing) .proof-grid {
  gap: clamp(16px, 1.8vw, 22px);
  max-width: none;
  padding-top: 46px;
}

body:not(.b2b-landing) .proof-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(11, 37, 69, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.05);
  min-height: 228px;
  overflow: visible;
  padding: clamp(20px, 1.9vw, 26px);
  position: relative;
}

body:not(.b2b-landing) .proof-quote-mark {
  display: none;
}

body:not(.b2b-landing) .proof-plane {
  height: auto;
  filter: none;
  left: -12px;
  position: absolute;
  top: -48px;
  width: 112px;
  z-index: 2;
}

body:not(.b2b-landing) .proof-card p {
  color: #284260;
  font-size: clamp(.88rem, .82rem + .12vw, .96rem);
  line-height: 1.5;
  margin-bottom: 22px;
  margin-top: 28px;
}

body:not(.b2b-landing) .proof-person {
  display: grid;
  gap: 6px;
  grid-template-columns: 1fr;
}

body:not(.b2b-landing) .proof-person strong {
  color: var(--primary);
  display: block;
  font-size: .94rem;
  line-height: 1.2;
}

body:not(.b2b-landing) .proof-person small {
  color: #51657b;
  display: block;
  font-size: .78rem;
  line-height: 1.38;
  margin-top: 6px;
}

body:not(.b2b-landing) .difference-block {
  justify-self: end;
  margin: 4px 0 0;
  max-width: none;
  width: 100%;
}

body:not(.b2b-landing) .difference-table {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(11, 37, 69, 0.09);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.055);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr);
  overflow: hidden;
}

body:not(.b2b-landing) .difference-head {
  align-items: center;
  display: flex;
  font-size: .96rem;
  font-weight: 800;
  justify-content: center;
  min-height: 56px;
  padding: 12px 14px;
}

body:not(.b2b-landing) .difference-head.without {
  background: #f7fafc;
  color: var(--primary);
  grid-column: 1 / 3;
}

body:not(.b2b-landing) .difference-head.with {
  background: #0067c7;
  color: #fff;
  grid-column: 3 / 4;
}

body:not(.b2b-landing) .difference-row {
  display: contents;
}

body:not(.b2b-landing) .difference-cell,
body:not(.b2b-landing) .difference-arrow {
  align-items: center;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  display: flex;
  min-height: 64px;
  padding: 12px 14px;
}

body:not(.b2b-landing) .difference-cell.without {
  color: #5d6d7f;
  font-size: .9rem;
  gap: 10px;
  line-height: 1.38;
}

body:not(.b2b-landing) .difference-cell.without .diff-icon {
  align-items: center;
  border: 1px solid rgba(135, 150, 168, 0.28);
  border-radius: 999px;
  display: inline-flex;
  height: 20px;
  justify-content: center;
  width: 20px;
}

body:not(.b2b-landing) .difference-cell.with {
  color: var(--primary);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.32;
}

body:not(.b2b-landing) .difference-arrow {
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 900;
  justify-content: center;
  padding-inline: 4px;
}

body:not(.b2b-landing) .diff-icon {
  color: #8796a8;
  flex: 0 0 auto;
  font-size: .98rem;
  font-weight: 800;
}

@media (max-width: 1180px) {
  body:not(.b2b-landing) .ev-panel {
    grid-template-columns: 1fr;
  }

  body:not(.b2b-landing) .ev-intro::after,
  body:not(.b2b-landing) .ev-feature::before {
    display: none;
  }

  body:not(.b2b-landing) .ev-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body:not(.b2b-landing) .ev-feature {
    min-height: auto;
  }
}

@media (max-width: 980px) {

  body:not(.b2b-landing) .proof-comparison-layout {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  body:not(.b2b-landing) .difference-block {
    justify-self: stretch;
    margin-top: 0;
  }

  body:not(.b2b-landing) .proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body:not(.b2b-landing) .hero-cta-container {
    align-items: stretch;
    width: 100%;
  }

  body:not(.b2b-landing) .hero-cta,
  body:not(.b2b-landing) .hero-cta-secondary {
    width: min(100%, 280px);
  }

  body:not(.b2b-landing) .difference-table {
    grid-template-columns: 1fr;
  }

  body:not(.b2b-landing) .difference-head.without,
  body:not(.b2b-landing) .difference-head.with {
    grid-column: auto;
  }

  body:not(.b2b-landing) .difference-arrow {
    display: none;
  }
}

/* Medical landing premium pass */
body.medical-landing {
  --medical-page-x: clamp(20px, 4vw, 64px);
  --medical-title: clamp(2.02rem, 1.18rem + 3vw, 4.12rem);
  --medical-h2: clamp(1.92rem, 1.24rem + 2.02vw, 3.18rem);
  --medical-copy: clamp(.94rem, .84rem + .28vw, 1.08rem);
  --medical-section-pad: clamp(50px, 6.4vh, 78px);
  background: #f7fbff;
}

body.medical-landing .container {
  padding-inline: var(--medical-page-x);
}

body.medical-landing .split-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(247,251,255,.94) 48%, rgba(234,244,255,.24) 100%);
}

body.medical-landing .split-hero-content {
  flex-basis: 58%;
  opacity: 1 !important;
  padding-inline: clamp(28px, 5.5vw, 88px);
  padding-top: clamp(12px, 2vh, 28px);
  row-gap: clamp(14px, 2.2vh, 24px);
  transform: none !important;
  visibility: visible !important;
}

body.medical-landing .split-hero-kicker {
  color: var(--secondary);
  max-width: 34rem;
}

body.medical-landing .split-hero-title {
  color: var(--primary) !important;
  font-family: var(--font-heading);
  font-size: var(--medical-title);
  line-height: 1.03;
  letter-spacing: 0;
  margin-bottom: 0;
  max-width: 13.8ch;
  text-wrap: balance;
}

body.medical-landing .split-hero-copy {
  display: grid;
  gap: 12px;
  max-width: min(62ch, 100%);
}

body.medical-landing .split-hero-desc {
  color: var(--text-secondary) !important;
  font-size: var(--medical-copy);
  line-height: 1.58;
  margin: 0;
  max-width: 60ch;
}

body.medical-landing .split-hero-desc:first-child {
  color: var(--primary) !important;
  font-weight: 650;
  max-width: 50ch;
}

body.medical-landing .hero-action-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(4px, 1vh, 10px);
}

body.medical-landing .medical-primary-cta {
  background: var(--primary);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: clamp(.94rem, .86rem + .22vw, 1.04rem);
  justify-content: center;
  min-height: 50px;
  padding: 14px 30px;
  width: auto;
}

body.medical-landing .statement-copy-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: clamp(22px, 3vw, 34px);
}

body.medical-landing .split-hero-image {
  overflow: hidden;
}

body.medical-landing .split-hero-image img {
  filter: saturate(.94) contrast(1.03);
}

body.medical-landing .b2b-dark-statement {
  background:
    radial-gradient(circle at 85% 18%, rgba(255,210,0,.16), transparent 24%),
    linear-gradient(135deg, #07172b 0%, var(--primary) 58%, #17375e 100%);
}

body.medical-landing .statement-grid {
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(38px, 6vw, 84px);
}

body.medical-landing .statement-title h2,
body.medical-landing .ed-header h2,
body.medical-landing .section-header h2,
body.medical-landing .medical-copy h2,
body.medical-landing .medical-brand h2,
body.medical-landing .contact h2 {
  font-size: var(--medical-h2);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

body.medical-landing .statement-content p {
  font-size: var(--medical-copy);
  line-height: 1.72;
}

body.medical-landing .ed-header {
  max-width: 860px;
  margin: 0 auto clamp(34px, 5vh, 56px);
  text-align: center;
}

body.medical-landing .ed-header p {
  color: var(--text-secondary);
  font-size: var(--medical-copy);
  line-height: 1.65;
  margin-top: 18px;
}

body.medical-landing .medical-ed-grid {
  gap: clamp(18px, 2.2vw, 28px);
}

body.medical-landing .medical-ed-grid .ed-card {
  aspect-ratio: 4 / 4.75;
  min-height: clamp(310px, 39vh, 430px) !important;
}

body.medical-landing .medical-ed-grid .ed-overlay {
  background: linear-gradient(180deg, rgba(8,24,46,.08), rgba(8,24,46,.92));
  opacity: .34;
}

body.medical-landing .medical-ed-grid .ed-text-content {
  opacity: 1;
  justify-content: flex-end;
  text-align: left;
  transform: none;
}

body.medical-landing .medical-ed-grid .ed-number-large {
  opacity: .32;
}

/* Final interaction fixes for B2B landings. Keep the opening hero clean and
   restore editorial card copy only on hover/focus across Empresas and Medicos. */
body.b2b-landing .header:not(.scrolled) {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-100%) !important;
  visibility: hidden !important;
}

body.b2b-landing .header.scrolled {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

body.b2b-landing .ed-card .ed-overlay,
body.medical-landing .medical-ed-grid .ed-overlay {
  background: linear-gradient(180deg, rgba(15,42,76,.08), rgba(15,42,76,.9));
  opacity: 0 !important;
}

body.b2b-landing .ed-card .ed-text-content,
body.medical-landing .medical-ed-grid .ed-text-content {
  opacity: 0 !important;
  transform: translateY(18px) !important;
}

body.b2b-landing .ed-card:hover .ed-overlay,
body.b2b-landing .ed-card:focus-within .ed-overlay,
body.medical-landing .medical-ed-grid .ed-card:hover .ed-overlay,
body.medical-landing .medical-ed-grid .ed-card:focus-within .ed-overlay {
  opacity: .84 !important;
}

body.b2b-landing .ed-card:hover .ed-text-content,
body.b2b-landing .ed-card:focus-within .ed-text-content,
body.medical-landing .medical-ed-grid .ed-card:hover .ed-text-content,
body.medical-landing .medical-ed-grid .ed-card:focus-within .ed-text-content {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

body.b2b-landing .ed-card:hover .ed-number-large,
body.b2b-landing .ed-card:focus-within .ed-number-large,
body.medical-landing .medical-ed-grid .ed-card:hover .ed-number-large,
body.medical-landing .medical-ed-grid .ed-card:focus-within .ed-number-large {
  opacity: 0 !important;
}

/* Final landing alignment pass for Empresas and Medicos */
body.b2b-landing .header,
body.b2b-landing .header:not(.scrolled),
body.b2b-landing .header.scrolled {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid rgba(16, 42, 76, 0.08);
  box-shadow: 0 10px 28px rgba(16, 42, 76, 0.06);
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

body.b2b-landing .header .nav-links,
body.b2b-landing .header .nav-links li,
body.b2b-landing .header .lang-switcher {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
  visibility: visible !important;
}

body.b2b-landing .header .nav-links a,
body.b2b-landing .header .lang-trigger {
  color: var(--text) !important;
}

body.b2b-landing .header .nav-logo-img,
body.b2b-landing .header.scrolled .nav-logo-img {
  filter: none !important;
}

body.b2b-landing .split-hero-title {
  line-height: 1.07 !important;
  max-width: 17.6ch !important;
  text-wrap: balance;
}

body.b2b-landing .split-hero-copy {
  max-width: 62ch;
}

body.b2b-landing .split-hero-desc {
  max-width: 60ch !important;
}

body.b2b-landing:not(.medical-landing) .company-benefits-section .ev-container {
  max-width: min(1440px, calc(100vw - 48px));
}

body.b2b-landing:not(.medical-landing) .company-benefits-section .ev-card {
  grid-template-columns: minmax(0, 1.34fr) minmax(360px, 0.66fr);
  max-width: min(1400px, calc(100vw - 48px));
}

body.b2b-landing:not(.medical-landing) .company-benefits-section .ev-card-content {
  padding: clamp(34px, 4vw, 60px) clamp(38px, 4.2vw, 66px);
}

body.b2b-landing:not(.medical-landing) .company-benefits-section .ev-card-content ul.company-benefits-list {
  color: var(--text-secondary);
  display: grid;
  gap: 10px;
  list-style: disc;
  margin: 0 0 24px;
  padding-left: 22px;
}

body.b2b-landing:not(.medical-landing) .company-benefits-section .ev-card-content ul.company-benefits-list li {
  font-size: var(--company-copy) !important;
  line-height: 1.56;
}

body.b2b-landing:not(.medical-landing) .b2b-testimonials {
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%) !important;
}

body.b2b-landing:not(.medical-landing) .b2b-testimonials .container {
  max-width: min(1320px, calc(100vw - 48px));
}

body.b2b-landing:not(.medical-landing) .b2b-testimonial-grid {
  align-items: stretch;
  display: grid;
  gap: clamp(18px, 1.8vw, 24px);
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.b2b-landing:not(.medical-landing) .b2b-testimonial-grid .b2b-testimonial-card:last-child {
  grid-column: auto !important;
  justify-self: stretch !important;
  max-width: none !important;
  width: auto !important;
}

body.b2b-landing:not(.medical-landing) .b2b-testimonial-card {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(11, 37, 69, 0.08);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(24px, 2.1vw, 30px);
}

body.b2b-landing:not(.medical-landing) .b2b-testimonial-quote {
  color: var(--secondary);
  display: block;
  font-family: Georgia, serif;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 0.75;
  margin-bottom: 8px;
}

body.b2b-landing:not(.medical-landing) .b2b-testimonial-card p {
  color: #284260;
  font-size: clamp(.95rem, .88rem + .14vw, 1.02rem);
  line-height: 1.52;
  margin-bottom: 20px;
}

body.b2b-landing:not(.medical-landing) .b2b-testimonial-footer {
  align-items: flex-end;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: auto;
}

body.b2b-landing:not(.medical-landing) .testimonial-avatar {
  border: 1px solid rgba(16, 42, 76, 0.08);
  box-shadow: none;
  height: 42px;
  width: 42px;
}

body.b2b-landing:not(.medical-landing) .testimonial-name {
  color: var(--primary);
  font-size: .94rem;
}

body.b2b-landing:not(.medical-landing) .testimonial-role {
  color: #51657b;
  font-size: .78rem;
  line-height: 1.38;
}

body.b2b-landing:not(.medical-landing) .testimonial-stars {
  color: var(--accent);
  flex: 0 0 auto;
  font-size: 1rem;
  letter-spacing: .06em;
}

body.b2b-landing:not(.medical-landing) .testimonial-nav {
  display: none !important;
}

@media (max-width: 1180px) {
  body.b2b-landing .split-hero-title {
    max-width: 18.2ch !important;
  }

  body.b2b-landing:not(.medical-landing) .company-benefits-section .ev-card {
    grid-template-columns: 1fr;
  }

  body.b2b-landing:not(.medical-landing) .b2b-testimonial-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 760px) {
  body.b2b-landing .split-hero-title {
    max-width: 18.8ch !important;
  }

  body.b2b-landing:not(.medical-landing) .b2b-testimonial-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Empresas editorial cards: compact gallery layout with hover reveal. */
body.b2b-landing:not(.medical-landing) .editorial-promise .ed-grid-4 {
  align-items: stretch;
  display: grid !important;
  gap: clamp(22px, 2.6vw, 34px) !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  margin-inline: auto;
  max-width: 1120px;
  width: 100%;
}

body.b2b-landing:not(.medical-landing) .editorial-promise .ed-card {
  aspect-ratio: 0.72 !important;
  border: 1px solid rgba(16,42,76,.08);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(16,42,76,.08);
  min-height: 0 !important;
}

body.b2b-landing:not(.medical-landing) .editorial-promise .ed-card img {
  transform: scale(1);
}

body.b2b-landing:not(.medical-landing) .editorial-promise .ed-number-large {
  bottom: -.04em;
  color: rgba(255,255,255,.96);
  font-size: clamp(6.8rem, 9vw, 9.8rem);
  opacity: .92 !important;
  right: -.03em;
  -webkit-text-stroke: 0;
}

body.b2b-landing:not(.medical-landing) .editorial-promise .ed-text-content {
  justify-content: center;
  padding: clamp(20px, 2.1vw, 28px);
  text-align: center;
}

body.b2b-landing:not(.medical-landing) .editorial-promise .ed-card h3 {
  font-size: clamp(1.16rem, 1.35vw, 1.45rem);
  line-height: 1.08;
}

body.b2b-landing:not(.medical-landing) .editorial-promise .ed-card p {
  font-size: clamp(.82rem, .95vw, .98rem);
  line-height: 1.46;
}

body.b2b-landing:not(.medical-landing) .editorial-promise .ed-card:hover img,
body.b2b-landing:not(.medical-landing) .editorial-promise .ed-card:focus-within img {
  transform: scale(1.06);
}

body.b2b-landing:not(.medical-landing) .editorial-promise .ed-card:hover .ed-overlay,
body.b2b-landing:not(.medical-landing) .editorial-promise .ed-card:focus-within .ed-overlay {
  opacity: .72 !important;
}

body.b2b-landing:not(.medical-landing) .editorial-promise .ed-card:hover .ed-number-large,
body.b2b-landing:not(.medical-landing) .editorial-promise .ed-card:focus-within .ed-number-large {
  opacity: 0 !important;
}

@media (max-width: 1099px) {
  body.b2b-landing:not(.medical-landing) .editorial-promise .ed-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 640px;
  }
}

@media (max-width: 640px) {
  body.b2b-landing:not(.medical-landing) .editorial-promise .ed-grid-4 {
    grid-template-columns: 1fr !important;
    max-width: 360px;
  }
}

body.medical-landing .medical-process {
  background:
    linear-gradient(180deg, #fff 0%, #f6fbff 100%);
}

body.medical-landing .medical-timeline {
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(30px, 4vh, 50px);
}

body.medical-landing .timeline-step {
  background: #fff;
  border: 1px solid rgba(16,42,76,.08);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(16,42,76,.08);
  min-height: clamp(290px, 34vh, 350px);
  padding: clamp(26px, 2.6vw, 36px);
}

body.medical-landing .timeline-step span {
  background: var(--accent);
  color: var(--primary);
  margin-bottom: clamp(22px, 3vh, 34px);
}

body.medical-landing .timeline-step h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, .95rem + .42vw, 1.28rem);
}

body.medical-landing .timeline-step p {
  font-size: clamp(.92rem, .84rem + .22vw, 1rem);
  line-height: 1.62;
}

body.medical-landing .medical-services {
  background: var(--primary);
  color: #fff;
  overflow: hidden;
  position: relative;
}

body.medical-landing .medical-services .ev-bg img {
  filter: brightness(.34) saturate(.86) !important;
  opacity: 1 !important;
}

body.medical-landing .medical-services .container {
  position: relative;
  z-index: 2;
}

body.medical-landing .medical-services-grid {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
  gap: clamp(28px, 4vw, 58px);
  padding: clamp(28px, 4.4vw, 58px);
}

body.medical-landing .medical-copy h2 {
  color: var(--primary);
}

body.medical-landing .medical-copy p {
  font-size: var(--medical-copy);
  line-height: 1.65;
}

body.medical-landing .logistics-list {
  gap: 12px;
}

body.medical-landing .logistics-list div {
  align-items: center;
  box-shadow: none;
  min-height: clamp(82px, 10vh, 112px);
  padding: clamp(16px, 2vw, 22px);
}

body.medical-landing .medical-specialties {
  background: #fff;
}

body.medical-landing .medical-specialties .section-header {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

body.medical-landing .specialty-grid {
  gap: 12px;
  margin-top: clamp(30px, 4vh, 46px);
}

body.medical-landing .specialty-grid span {
  border-radius: 999px;
  justify-content: center;
  min-height: 58px;
  text-align: center;
}

body.medical-landing .medical-fit-section {
  background:
    linear-gradient(180deg, #f7fbff 0%, #eef7ff 100%);
  padding: var(--section-py) 0;
}

body.medical-landing .medical-fit-section .b2b-fit-card {
  min-height: clamp(360px, 44vh, 460px);
}

body.medical-landing .medical-brand {
  background:
    radial-gradient(circle at 18% 18%, rgba(255,210,0,.22), transparent 28%),
    linear-gradient(135deg, rgba(8,24,46,.98), rgba(16,42,76,.94));
}

body.medical-landing .medical-brand-inner {
  max-width: 980px;
}

body.medical-landing .medical-testimonials {
  background: #f8fafc;
}

body.medical-landing .medical-testimonials .testimonial-card {
  max-width: 780px;
  margin-inline: auto;
}

body.medical-landing .medical-reasons-grid .logistics-list {
  gap: 14px;
}

body.medical-landing .medical-reasons-grid .logistics-list div {
  align-items: flex-start;
  line-height: 1.55;
  min-height: auto;
}

body.medical-landing .medical-sticky-copy {
  align-self: start;
  position: sticky;
  top: 110px;
}

body.medical-landing .medical-specialty-note {
  margin: 40px auto 0;
  max-width: 760px;
  text-align: center;
}

body.medical-landing .medical-specialty-note h3 {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1rem + 1vw, 2rem);
  margin-bottom: 12px;
}

body.medical-landing .medical-specialty-note p {
  color: var(--text-secondary);
  margin-bottom: 22px;
}

body.medical-landing .medical-final-cta {
  background: #f0f7ff;
}

body.medical-landing .medical-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

body.medical-landing .contact-grid {
  align-items: start;
}

body.medical-landing .contact-form {
  max-width: none;
}

@media (min-width: 1100px) {
  body.medical-landing main > section {
    min-height: 100svh;
    scroll-snap-align: start;
  }

  body.medical-landing .b2b-dark-statement,
  body.medical-landing .editorial-promise,
  body.medical-landing .medical-process,
  body.medical-landing .medical-services,
  body.medical-landing .medical-specialties,
  body.medical-landing .medical-fit-section,
  body.medical-landing .medical-brand,
  body.medical-landing .medical-testimonials,
  body.medical-landing .b2b-faqs,
  body.medical-landing .contact {
    align-items: center;
    display: flex;
    padding-block: var(--medical-section-pad);
  }

  body.medical-landing .b2b-faqs .faq-list {
    gap: 10px;
  }

  body.medical-landing .b2b-faqs .faq-question {
    padding-block: 18px;
  }

  body.medical-landing .contact .contact-grid {
    gap: 36px;
    margin-top: 32px;
  }

  body.medical-landing .contact-form {
    padding: 28px;
  }

  body.medical-landing .form-group {
    margin-bottom: 14px;
  }

  body.medical-landing .form-group input,
  body.medical-landing .form-group select,
  body.medical-landing .form-group textarea {
    padding: 12px 14px;
  }

  body.medical-landing .form-group textarea {
    min-height: 86px;
  }
}

@media (max-width: 900px) {
  body.medical-landing .split-hero {
    min-height: 100svh;
  }

  body.medical-landing .split-hero-content {
    padding: 82px var(--medical-page-x) 42px;
  }

  body.medical-landing .split-hero-title {
    max-width: 15ch;
  }

  body.medical-landing .statement-grid,
  body.medical-landing .medical-services-grid {
    grid-template-columns: 1fr;
  }

  body.medical-landing .medical-sticky-copy {
    position: static;
  }

  body.medical-landing .medical-ed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  body.medical-landing .medical-ed-grid .ed-card {
    min-height: 330px !important;
  }

  body.medical-landing .specialty-grid,
  body.medical-landing .logistics-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.medical-landing {
    --medical-page-x: 18px;
    --medical-title: clamp(1.86rem, 1.18rem + 5.6vw, 2.48rem);
    --medical-h2: clamp(1.7rem, 1.14rem + 4.25vw, 2.22rem);
  }

  body.medical-landing .split-hero-title {
    max-width: 12ch;
  }

  body.medical-landing .medical-hero {
    display: flex;
    min-height: 100svh;
    overflow: hidden;
  }

  body.medical-landing .medical-hero .split-hero-content {
    flex-basis: 100%;
    justify-content: center;
    min-height: 100svh;
    min-width: 0;
    padding-block: 72px 38px;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  body.medical-landing .split-hero-kicker,
  body.medical-landing .split-hero-desc {
    overflow-wrap: anywhere;
  }

  body.medical-landing .split-hero-kicker {
    font-size: .92rem;
    line-height: 1.45;
    max-width: 28ch;
  }

  body.medical-landing .split-hero-desc {
    line-height: 1.58;
    max-width: 34ch;
  }

  body.medical-landing .split-hero-copy {
    gap: 10px;
  }

  body.medical-landing .hero-action-row {
    width: 100%;
  }

  body.medical-landing .medical-hero .split-hero-image {
    inset: 0;
    min-height: 0;
    opacity: .18;
    order: initial;
    position: absolute;
    width: 100%;
  }

  body.medical-landing .medical-hero .split-hero-image img {
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
    position: absolute;
  }

  body.medical-landing .medical-primary-cta {
    max-width: 100%;
    width: min(100%, 330px);
  }

  body.medical-landing .medical-ed-grid,
  body.medical-landing .specialty-grid,
  body.medical-landing .logistics-list {
    grid-template-columns: 1fr !important;
  }

  body.medical-landing .medical-services-grid {
    border-radius: 18px;
    padding: 24px 18px;
  }

  body.medical-landing .medical-fit-section .b2b-fit-card {
    min-height: auto;
  }
}


/* Final Philosophy Overlays and Text Sync */
.philosophy-visual { margin-right: -120px; z-index: 100; }
.airplane-img { width: 160% !important; transform: translateX(-25%) translateY(10px) !important; z-index: 1000 !important; }
.philosophy-p.secondary { font-size: 1.35rem !important; opacity: 1 !important; line-height: 1.5 !important; color: var(--text-secondary) !important; }


/* Reverting Philosophy Section Adjustments based on User Feedback */
.philosophy-visual { margin-right: 0 !important; z-index: 10; }
.airplane-img { width: 115% !important; transform: translateX(-10%) translateY(0) !important; transition: none !important; z-index: 10 !important; }
.philosophy-visual:hover .airplane-img { transform: translateX(-10%) translateY(0) !important; }
.philosophy-text { flex: 0 0 50%; text-align: left; }


/* Resizing B2B Marquee Logos */
.b2b-premium-logos .marquee-item-box { width: 280px !important; height: 120px !important; margin: 0 60px !important; }
.b2b-premium-logos .marquee-item-box img { max-height: 80% !important; }

/* Home proof and credentials refinement */
body:not(.b2b-landing) .proof-section {
  background:
    radial-gradient(circle at 9% 18%, rgba(191,216,244,.34), transparent 28%),
    radial-gradient(circle at 90% 76%, rgba(255,210,0,.1), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f5faff 100%);
  padding: clamp(74px, 8vw, 118px) 0;
}

body:not(.b2b-landing) .proof-comparison-layout {
  align-items: start;
  display: grid;
  gap: clamp(40px, 5vw, 78px);
  grid-template-columns: minmax(0, 1.15fr) minmax(440px, .95fr);
  max-width: 1220px;
}

body:not(.b2b-landing) .proof-side {
  min-width: 0;
}

body:not(.b2b-landing) .proof-grid {
  gap: clamp(18px, 2vw, 26px);
}

body:not(.b2b-landing) .proof-card {
  min-height: clamp(330px, 30vw, 390px);
  padding: clamp(26px, 2.4vw, 34px);
}

body:not(.b2b-landing) .difference-block {
  align-self: start;
  margin-top: clamp(22px, 5vh, 58px);
}

body:not(.b2b-landing) .difference-table {
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(16,42,76,.12);
  min-height: clamp(355px, 31vw, 430px);
  overflow: hidden;
}

body:not(.b2b-landing) .difference-head {
  min-height: 70px;
  padding: 22px 26px;
}

body:not(.b2b-landing) .difference-row {
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1.05fr);
  min-height: clamp(72px, 6.5vw, 92px);
}

body:not(.b2b-landing) .difference-cell,
body:not(.b2b-landing) .difference-arrow {
  padding-block: 18px;
}

body:not(.b2b-landing) .difference-cell {
  font-size: clamp(.95rem, .78rem + .38vw, 1.08rem);
  line-height: 1.35;
}

body:not(.b2b-landing) .difference-cell.with {
  font-size: clamp(1rem, .82rem + .42vw, 1.14rem);
}

body:not(.b2b-landing) .credentials {
  background:
    radial-gradient(circle at 20% 22%, rgba(191,216,244,.22), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  padding: clamp(70px, 8vw, 118px) 0;
}

body:not(.b2b-landing) .credentials-header {
  margin: 0 auto clamp(34px, 5vw, 56px);
  max-width: 820px;
  text-align: center;
}

body:not(.b2b-landing) .credentials-header h2 {
  color: var(--primary);
  font-size: clamp(2rem, 1.2rem + 2.2vw, 3.2rem);
  line-height: 1.08;
}

body:not(.b2b-landing) .cred-grid {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-inline: auto;
  max-width: min(1560px, calc(100vw - 48px));
}

body:not(.b2b-landing) .cred-card {
  align-items: center;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(16,42,76,.08);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(16,42,76,.08);
  display: flex;
  gap: clamp(18px, 2vw, 28px);
  justify-content: flex-start;
  min-height: 182px;
  padding: clamp(26px, 2.2vw, 34px);
  text-align: left;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

body:not(.b2b-landing) .cred-card:hover {
  border-color: rgba(91,143,185,.32);
  box-shadow: 0 26px 64px rgba(16,42,76,.13);
  transform: translateY(-5px);
}

body:not(.b2b-landing) .cred-logo {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  margin-bottom: 0;
}

body:not(.b2b-landing) .cred-copy {
  max-width: 34ch;
}

body:not(.b2b-landing) .cred-logo-img {
  display: block;
  height: auto;
  max-height: 58px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

body:not(.b2b-landing) .cred-logo-stack {
  align-items: center;
  gap: clamp(12px, 1.6vw, 18px);
  justify-content: flex-start;
  min-height: 72px;
  min-width: clamp(215px, 23vw, 298px);
}

body:not(.b2b-landing) .cred-logo-img-iata {
  max-height: 46px;
  width: clamp(62px, 7vw, 84px);
}

body:not(.b2b-landing) .cred-logo-img-arc {
  max-height: 50px;
  width: clamp(92px, 10vw, 128px);
}

body:not(.b2b-landing) .cred-logo-img-clia {
  max-height: 42px;
  width: clamp(56px, 6vw, 80px);
}

body:not(.b2b-landing) .cred-logo-shield {
  color: var(--primary);
  min-width: 108px;
}

body:not(.b2b-landing) .cred-shield-icon {
  width: clamp(78px, 7vw, 94px);
}

body:not(.b2b-landing) .cred-logo-archer {
  min-width: clamp(138px, 14vw, 176px);
}

body:not(.b2b-landing) .cred-logo-img-archer {
  max-height: 74px;
  width: clamp(132px, 13vw, 170px);
}

body:not(.b2b-landing) .cred-card h3 {
  color: var(--primary);
  font-size: clamp(1rem, .92rem + .28vw, 1.16rem);
  line-height: 1.15;
  margin-bottom: 8px;
}

body:not(.b2b-landing) .cred-card p {
  color: var(--text-secondary);
  font-size: .94rem;
  line-height: 1.45;
  margin: 0;
}

body:not(.b2b-landing) .cred-card strong {
  color: var(--secondary);
  font-size: .92rem;
  margin-top: 10px;
}

@media (max-width: 1180px) {
  body:not(.b2b-landing) .proof-comparison-layout {
    grid-template-columns: 1fr;
  }

  body:not(.b2b-landing) .difference-block {
    margin-top: 8px;
  }

  body:not(.b2b-landing) .cred-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body:not(.b2b-landing) .proof-grid {
    grid-template-columns: 1fr;
  }

  body:not(.b2b-landing) .proof-card {
    min-height: auto;
  }

  body:not(.b2b-landing) .difference-table {
    min-height: 0;
  }

  body:not(.b2b-landing) .difference-row {
    grid-template-columns: 1fr;
  }

  body:not(.b2b-landing) .difference-arrow {
    display: none;
  }

  body:not(.b2b-landing) .cred-grid {
    grid-template-columns: 1fr;
  }

  body:not(.b2b-landing) .cred-card {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
  }

  body:not(.b2b-landing) .cred-logo-stack,
  body:not(.b2b-landing) .cred-logo-archer,
  body:not(.b2b-landing) .cred-logo-shield {
    min-width: 0;
  }
}

/* ===== Contact Boarding Pass Redesign ===== */
.contact-page .ticket-contact {
  --ticket-page-bg:
    radial-gradient(circle at 18% 20%, rgba(14, 74, 134, 0.46), transparent 34%),
    radial-gradient(circle at 86% 14%, rgba(255, 210, 31, 0.12), transparent 28%),
    linear-gradient(135deg, #031b34 0%, #062b55 48%, #031b34 100%);
  --ticket-page-grid:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background: var(--ticket-page-bg);
  min-height: 100svh;
  overflow: visible;
  padding: clamp(118px, 13vh, 148px) 0 clamp(28px, 4.5vh, 52px);
}

.contact-page .ticket-contact::before {
  background: var(--ticket-page-grid);
  background-size: 42px 42px;
  border-radius: 0;
  inset: 0;
  opacity: .42;
  width: auto;
  height: auto;
}

.contact-page .ticket-container {
  max-width: min(1760px, calc(100vw - 36px));
  position: relative;
  z-index: 2;
}

.contact-page .ticket-shell {
  --stub-width: clamp(260px, 25.8vw, 390px);
  --ticket-strip-w: clamp(172px, 12vw, 230px);
  --notch-size: 52px;
  --notch-radius: calc(var(--notch-size) / 2);
  background:
    radial-gradient(circle at 28% 26%, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(115deg, rgba(6,43,85,.96), rgba(3,27,52,.9));
  border: 1px solid rgba(191, 216, 244, 0.28);
  border-radius: 28px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255,255,255,.12);
  color: #fff;
  display: grid;
  grid-template-columns: var(--stub-width) minmax(620px, 1fr) var(--ticket-strip-w);
  min-height: min(680px, calc(100svh - 184px));
  overflow: hidden;
  position: relative;
  -webkit-mask-image:
    radial-gradient(circle var(--notch-radius) at var(--stub-width) 0, transparent 98%, #000 100%),
    radial-gradient(circle var(--notch-radius) at var(--stub-width) 100%, transparent 98%, #000 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(circle var(--notch-radius) at var(--stub-width) 0, transparent 98%, #000 100%),
    radial-gradient(circle var(--notch-radius) at var(--stub-width) 100%, transparent 98%, #000 100%);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  mask-composite: intersect;
}

.contact-page .ticket-stub,
.contact-page .ticket-form,
.contact-page .boarding-strip {
  min-width: 0;
  position: relative;
}

.contact-page .ticket-stub {
  background:
    radial-gradient(circle at 42% 46%, rgba(191,216,244,.09), transparent 35%),
    linear-gradient(180deg, rgba(6,43,85,.88), rgba(3,27,52,.74));
  border-right: 2px dashed rgba(191,216,244,.4);
  border-radius: 28px 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.1vw, 30px);
  padding: clamp(28px, 3vw, 42px) clamp(22px, 2.6vw, 40px);
}

.contact-page .ticket-stub::before {
  content: "";
  position: absolute;
  inset: 12% 6% auto auto;
  width: 70%;
  aspect-ratio: 1.4;
  background-image: radial-gradient(rgba(255,255,255,.16) 1px, transparent 1.5px);
  background-size: 9px 9px;
  opacity: .12;
  pointer-events: none;
}

.contact-page .ticket-stub-copy {
  position: relative;
  z-index: 1;
}

.contact-page .ticket-eyebrow,
.contact-page .ticket-contact-title,
.contact-page .boarding-top span,
.contact-page .boarding-meta dt {
  color: rgba(255,255,255,.58);
  display: block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-page .ticket-stub h1 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.58rem, 1.95vw, 2.34rem);
  line-height: 1.08;
  margin: 18px 0;
  text-transform: uppercase;
}

.contact-page .ticket-stub h1 span,
.contact-page .ticket-stub h1 strong {
  display: block;
}

.contact-page .ticket-stub h1 strong {
  color: #ffd21f;
  white-space: normal;
  overflow-wrap: normal;
  word-break: keep-all;
  line-height: 1.05;
}

.contact-page .ticket-stub-copy p {
  color: rgba(255,255,255,.74);
  font-size: clamp(.88rem, .82rem + .14vw, 1rem);
  line-height: 1.5;
  max-width: 36ch;
}

.contact-page .ticket-contact-list {
  border-top: 1px dashed rgba(191,216,244,.28);
  display: grid;
  gap: 13px;
  padding-top: 20px;
  position: relative;
  top: auto;
  z-index: 1;
}

.contact-page .contact-item {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 42px minmax(0, 1fr);
}

.contact-page .contact-item .ci-icon {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  color: #ffd21f;
  height: 42px;
  width: 42px;
}

.contact-page .contact-item h4 {
  color: rgba(255,255,255,.94);
  font-size: .88rem;
  font-weight: 800;
  margin-bottom: 3px;
}

.contact-page .contact-item p,
.contact-page .contact-item a {
  color: #ffd21f;
  font-size: .88rem;
  line-height: 1.35;
}

.contact-page .ticket-form {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  max-width: none;
  padding: clamp(28px, 3.2vw, 46px) clamp(34px, 4vw, 64px);
  z-index: 2;
}

.contact-page .form-progress {
  align-items: start;
  border-bottom: 1px solid rgba(191,216,244,.2);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: clamp(20px, 2.7vh, 34px);
  padding-bottom: 20px;
  position: relative;
}

.contact-page .form-progress::before {
  background: rgba(255,210,31,.48);
  content: "";
  height: 1px;
  left: calc(100% / 6);
  position: absolute;
  right: calc(100% / 6);
  top: 19px;
  z-index: 0;
}

.contact-page .form-step-node {
  align-items: center;
  display: grid;
  gap: 11px;
  justify-items: center;
  min-width: 110px;
  position: relative;
  z-index: 1;
}

.contact-page .form-step-dot {
  background: #ffd21f;
  border: 1px solid #ffd21f;
  box-shadow: 0 0 0 6px rgba(255,210,31,.11);
  color: #031b34;
  height: 38px;
  width: 38px;
}

.contact-page .form-step-dot.active,
.contact-page .form-step-dot.complete {
  background: #ffd21f;
  border-color: #ffd21f;
  box-shadow: 0 0 0 6px rgba(255,210,31,.16);
  color: #031b34;
}

.contact-page .form-step-label {
  color: rgba(255,255,255,.56);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.contact-page .form-step-node:has(.form-step-dot.active) .form-step-label,
.contact-page .form-step-node:has(.form-step-dot.complete) .form-step-label {
  color: #ffd21f;
}

.contact-page .form-step-line {
  display: none;
}

.contact-page .form-step-copy { margin-bottom: 22px; }

.contact-page .form-step-copy span {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.42rem, 1.12rem + .95vw, 2rem);
  letter-spacing: 0;
  line-height: 1.06;
  margin-bottom: 12px;
}

.contact-page .form-step-copy p {
  color: rgba(255,255,255,.7);
  font-size: clamp(.9rem, .84rem + .14vw, 1rem);
  line-height: 1.5;
  max-width: 72ch;
}

.contact-page .form-row { gap: 18px; }
.contact-page .form-group { margin-bottom: 16px; }

.contact-page .form-group label {
  color: rgba(255,255,255,.86);
  font-size: .88rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-page .form-group input,
.contact-page .form-group select,
.contact-page .form-group textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(191,216,244,.22);
  border-radius: 999px;
  color: #fff;
  min-height: 54px;
  padding: 14px 16px;
}

.contact-page .form-group textarea {
  min-height: 126px;
  border-radius: 32px;
  resize: vertical;
}

.contact-page .form-group input::placeholder,
.contact-page .form-group textarea::placeholder {
  color: rgba(255,255,255,.44);
}

.contact-page .form-group input:hover,
.contact-page .form-group select:hover,
.contact-page .form-group textarea:hover {
  border-color: rgba(255,210,31,.5);
}

.contact-page .form-group input:focus,
.contact-page .form-group select:focus,
.contact-page .form-group textarea:focus {
  border-color: #ffd21f;
  box-shadow: 0 0 0 4px rgba(255,210,31,.14);
  outline: none;
}

.contact-page .form-actions {
  align-items: center;
  display: grid;
  gap: clamp(14px, 2vw, 28px);
  grid-template-columns: minmax(150px, .42fr) minmax(0, 1fr);
  margin-top: 18px;
}

.contact-page .form-next,
.contact-page .form-submit,
.contact-page .form-prev {
  border-radius: 999px;
  font-weight: 900;
  min-height: 54px;
}

.contact-page .form-step[data-step="1"] .form-next {
  margin-top: 12px;
}

.contact-page .form-next,
.contact-page .form-submit {
  background: #ffd21f;
  box-shadow: 0 16px 34px rgba(255,210,31,.22);
  color: #031b34;
}

.contact-page .form-next:hover,
.contact-page .form-submit:hover {
  background: #ffc928;
  transform: translateY(-1px);
}

.contact-page .form-prev,
.contact-page .btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.46);
  color: #fff;
}

.contact-page .form-prev:hover,
.contact-page .btn-outline:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.72);
}

.contact-page .boarding-strip {
  background:
    radial-gradient(circle at 42% 46%, rgba(191,216,244,.09), transparent 35%),
    linear-gradient(180deg, rgba(6,43,85,.88), rgba(3,27,52,.74));
  border-left: 2px dashed rgba(191,216,244,.38);
  border-radius: 0 28px 28px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(28px, 2.6vw, 40px) clamp(18px, 1.8vw, 28px);
  z-index: 2;
}

.contact-page .boarding-top {
  border-bottom: 1px dashed rgba(191,216,244,.26);
  padding-bottom: 18px;
}

.contact-page .boarding-top strong {
  color: #fff;
  display: block;
  font-size: 1rem;
  margin: 8px 0;
  white-space: nowrap;
}

.contact-page .boarding-top p,
.contact-page .boarding-footer {
  color: rgba(255,255,255,.62);
  font-size: .78rem;
  line-height: 1.45;
}

.contact-page .boarding-route-layout {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: 28px minmax(0, 1fr);
  min-height: 178px;
  position: relative;
}

.contact-page .plane-mark-top {
  color: rgba(255,255,255,.82);
  font-size: 2.3rem;
  position: absolute;
  left: -70px;
  top: -8px;
  transform: rotate(-90deg);
  z-index: 2;
}

.contact-page .flight-route-mini {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  padding-top: 18px;
  padding-bottom: 18px;
  z-index: 0;
}

.contact-page .plane-mark {
  color: rgba(255,255,255,.8);
  font-size: 2rem;
  line-height: 1;
  transform: rotate(-90deg);
}

.contact-page .route-dot {
  background: rgba(255,255,255,.78);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.contact-page .route-line {
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.42) 0 8px, transparent 8px 16px);
  flex: 1;
  margin: 8px 0;
  width: 1px;
}

.contact-page .boarding-route {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 0;
  text-align: left;
  z-index: 1;
}

.contact-page .boarding-route strong {
  color: #fff;
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.5vw, 1.8rem);
  line-height: 1;
}

.contact-page .boarding-route span {
  color: rgba(255,255,255,.82);
  display: block;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .01em;
  margin-top: 6px;
}

.contact-page .boarding-meta {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: auto;
}

.contact-page .boarding-meta div {
  border-right: 1px solid rgba(191,216,244,.22);
  min-width: 0;
  padding-right: 6px;
  text-align: center;
}

.contact-page .boarding-meta div:last-child { border-right: 0; }

.contact-page .boarding-meta dd {
  color: #ffd21f;
  font-size: .72rem;
  font-weight: 900;
  margin-top: 6px;
  text-transform: uppercase;
}

.contact-page .boarding-barcode {
  align-items: stretch;
  display: flex;
  gap: 3px;
  height: 50px;
  margin-top: 6px;
  justify-content: center;
  margin-inline: auto;
  width: 100%;
  max-width: 130px;
}

.contact-page .boarding-barcode span {
  background: rgba(255,255,255,.86);
  display: block;
  width: 4px;
}

.contact-page .boarding-barcode span:nth-child(2),
.contact-page .boarding-barcode span:nth-child(5),
.contact-page .boarding-barcode span:nth-child(8) { width: 9px; }

.contact-page .boarding-barcode span:nth-child(4),
.contact-page .boarding-barcode span:nth-child(9) { width: 2px; }

.contact-page .boarding-footer {
  font-weight: 900;
  letter-spacing: .28em;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .contact-page .ticket-shell {
    --stub-width: clamp(240px, 32vw, 340px);
    grid-template-columns: var(--stub-width) minmax(0, 1fr);
  }

  .contact-page .boarding-strip {
    border-left: 0;
    border-radius: 0 0 28px 28px;
    border-top: 2px dashed rgba(191,216,244,.36);
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(180px, .8fr) minmax(180px, .9fr) minmax(160px, .65fr);
    min-height: 0;
  }

  .contact-page .boarding-route-layout { min-height: 120px; }
  .contact-page .boarding-route { padding: 22px 0 16px; }
}

@media (max-width: 860px) {
  .contact-page .ticket-contact { padding-top: 124px; }

  .contact-page .ticket-shell {
    border-radius: 22px;
    grid-template-columns: 1fr;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .contact-page .ticket-stub {
    border-bottom: 2px dashed rgba(191,216,244,.36);
    border-right: 0;
    border-radius: 22px 22px 0 0;
  }

  .contact-page .ticket-form { padding: 30px 22px; }

  .contact-page .form-progress {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .contact-page .form-progress::before { display: none; }
  .contact-page .form-step-line { display: none; }

  .contact-page .form-step-node {
    grid-template-columns: 42px 1fr;
    justify-items: start;
    min-width: 0;
  }

  .contact-page .form-step-label { text-align: left; }

  .contact-page .form-row,
  .contact-page .form-actions {
    grid-template-columns: 1fr;
  }

  .contact-page .form-actions .btn { width: 100%; }

  .contact-page .boarding-strip {
    border-radius: 0 0 22px 22px;
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .contact-page .boarding-route-layout {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .contact-page .boarding-meta { max-width: 360px; }
  .contact-page .boarding-barcode { max-width: 260px; }
}

@media (max-width: 520px) {
  .contact-page .ticket-container { padding-inline: 14px; }
  .contact-page .ticket-stub { padding: 28px 20px; }

  .contact-page .contact-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .contact-page .contact-item .ci-icon {
    height: 42px;
    width: 42px;
  }

  .contact-page .ticket-stub h1 { font-size: 2rem; }
  .contact-page .form-step-copy span { font-size: 1.45rem; }
}

/* Final May refinements: home about, credentials, shared contact route. */
body:not(.b2b-landing) .about {
  background:
    radial-gradient(circle at 12% 20%, rgba(191, 216, 244, .34), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  padding-block: clamp(72px, 8vw, 116px);
}

body:not(.b2b-landing) .about-editorial-grid {
  align-items: center;
  gap: clamp(34px, 5vw, 74px);
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
  margin-top: 0;
}

body:not(.b2b-landing) .about-editorial-grid .about-image {
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(106, 155, 200, .22);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(16, 42, 76, .11);
}

body:not(.b2b-landing) .about-editorial-grid .about-text {
  max-width: 720px;
}

body:not(.b2b-landing) .about-editorial-grid .section-label {
  color: var(--secondary);
  justify-content: flex-start;
  margin-bottom: 10px;
}

body:not(.b2b-landing) .about-editorial-grid h2 {
  color: var(--primary);
  font-size: clamp(2rem, 1.32rem + 2vw, 3.2rem);
  line-height: 1.06;
  margin: 0;
}

body:not(.b2b-landing) .about-title-line {
  background: var(--accent);
  border-radius: 999px;
  display: block;
  height: 4px;
  margin: 14px 0 24px;
  width: 56px;
}

body:not(.b2b-landing) .about-editorial-grid .about-text p {
  color: var(--text-secondary);
  font-size: clamp(1rem, .94rem + .18vw, 1.1rem);
  line-height: 1.72;
  margin-bottom: 16px;
  max-width: 68ch;
}

body:not(.b2b-landing) .cred-grid.cred-grid-three {
  gap: clamp(20px, 3vw, 34px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: min(1480px, calc(100vw - 48px));
  width: 100%;
}

body:not(.b2b-landing) .cred-grid-three .cred-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: flex-start;
  min-height: 0;
  padding: clamp(28px, 3vw, 42px) clamp(24px, 2.6vw, 38px);
  text-align: center;
}

body:not(.b2b-landing) .cred-grid-three .cred-logo {
  background: #fff;
  border: 1px solid rgba(106, 155, 200, .2);
  border-radius: 18px;
  height: 96px;
  margin: 0;
  width: 100%;
}

body:not(.b2b-landing) .cred-logo-stack {
  align-items: center;
  color: var(--primary);
  display: flex;
  gap: 10px;
  justify-content: center;
}

body:not(.b2b-landing) .cred-logo-stack span {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: clamp(.95rem, .84rem + .32vw, 1.18rem);
  font-weight: 900;
  letter-spacing: -.02em;
}

body:not(.b2b-landing) .cred-logo-shield span {
  align-items: center;
  border: 2px solid var(--primary);
  border-radius: 18px 18px 22px 22px;
  color: var(--primary);
  display: flex;
  font-size: 2rem;
  height: 62px;
  justify-content: center;
  width: 54px;
}

body:not(.b2b-landing) .cred-grid-three .cred-logo-archer span {
  background: transparent;
  color: var(--secondary);
  font-family: var(--font-body);
  font-size: clamp(1.22rem, 1.02rem + .62vw, 1.58rem);
  font-weight: 900;
  padding: 0;
}

.contact-page .ticket-contact {
  --ticket-page-bg:
    radial-gradient(circle at 18% 16%, rgba(191, 216, 244, .34), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 210, 31, .11), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  --ticket-page-grid: none;
  align-items: center;
  background: var(--ticket-page-bg);
  display: flex;
  min-height: 100svh;
  padding: clamp(96px, 10vh, 122px) 0 clamp(56px, 7vh, 88px);
}

.contact-page .ticket-contact::before {
  opacity: 0;
}

.contact-page .ticket-container {
  width: 100%;
}

.contact-page .ticket-shell {
  margin-inline: auto;
  min-height: min(680px, calc(100svh - 178px));
}

/* Desktop fit pass: keep full contact ticket visible on common Mac viewports */
@media (min-width: 901px) {
  .contact-page .ticket-contact {
    align-items: center;
    min-height: calc(100svh - 88px);
    padding: 88px 0 18px;
  }

  .contact-page .ticket-shell {
    min-height: min(560px, calc(100svh - 102px));
  }

  .contact-page .ticket-stub {
    gap: 14px;
    padding: 22px 22px;
  }

  .contact-page .ticket-stub h1 {
    font-size: clamp(1.4rem, 1.22rem + 0.9vw, 1.9rem);
    margin: 10px 0;
  }

  .contact-page .ticket-stub-copy p {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .contact-page .ticket-contact-list {
    gap: 10px;
    padding-top: 14px;
  }

  .contact-page .contact-item h4,
  .contact-page .contact-item p,
  .contact-page .contact-item a {
    font-size: 0.82rem;
  }

  .contact-page .ticket-form {
    padding: 22px 26px;
  }

  .contact-page .form-progress {
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .contact-page .form-group {
    margin-bottom: 10px;
  }

  .contact-page .form-group input,
  .contact-page .form-group select,
  .contact-page .form-group textarea,
  .contact-page .form-next,
  .contact-page .form-submit,
  .contact-page .form-prev {
    min-height: 46px;
    padding: 10px 12px;
  }

  .contact-page .form-group textarea {
    min-height: 88px;
  }

  .contact-page .boarding-strip {
    gap: 12px;
    padding: 22px 14px;
  }
}

@media (min-width: 901px) and (max-height: 920px) {
  .contact-page .ticket-contact {
    padding: 84px 0 12px;
  }

  .contact-page .ticket-shell {
    min-height: min(560px, calc(100svh - 104px));
  }

  .contact-page .ticket-stub {
    gap: 14px;
    padding: 22px 22px;
  }

  .contact-page .ticket-stub h1 {
    font-size: clamp(1.4rem, 1.2rem + 0.9vw, 1.9rem);
    margin: 10px 0;
  }

  .contact-page .ticket-stub-copy p {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .contact-page .ticket-contact-list {
    gap: 10px;
    padding-top: 14px;
  }

  .contact-page .contact-item h4,
  .contact-page .contact-item p,
  .contact-page .contact-item a {
    font-size: 0.82rem;
  }

  .contact-page .ticket-form {
    padding: 22px 26px;
  }

  .contact-page .form-progress {
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .contact-page .form-group {
    margin-bottom: 10px;
  }

  .contact-page .form-group input,
  .contact-page .form-group select,
  .contact-page .form-group textarea,
  .contact-page .form-next,
  .contact-page .form-submit,
  .contact-page .form-prev {
    min-height: 46px;
    padding: 10px 12px;
  }

  .contact-page .form-group textarea {
    min-height: 88px;
  }

  .contact-page .boarding-strip {
    gap: 12px;
    padding: 22px 14px;
  }
}

.contact-page .header,
.contact-page .ticket-shell.reveal {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.contact-page .header {
  background: rgba(255, 255, 255, .94) !important;
  box-shadow: 0 1px 24px rgba(6, 43, 85, .06) !important;
  padding: 12px 0 !important;
}

.contact-page .header .nav-links a,
.contact-page .header .lang-trigger {
  color: var(--primary) !important;
  opacity: 1 !important;
}

.contact-page .header .lang-trigger {
  background: rgba(6, 43, 85, .04) !important;
  border-color: rgba(6, 43, 85, .08) !important;
}

.contact-page .header .hamburger span {
  background: var(--primary) !important;
}

@media (max-width: 1100px) {
  body:not(.b2b-landing) .cred-grid.cred-grid-three {
    grid-template-columns: 1fr;
    max-width: min(920px, calc(100vw - 32px));
  }

  body:not(.b2b-landing) .cred-grid-three .cred-card {
    min-height: 0;
    flex-direction: row;
    text-align: left;
    gap: clamp(18px, 2vw, 28px);
  }
}

@media (max-width: 900px) {
  body:not(.b2b-landing) .about-editorial-grid {
    grid-template-columns: 1fr;
  }

  body:not(.b2b-landing) .about-editorial-grid .about-image {
    max-height: 360px;
  }

  .contact-page .ticket-contact {
    align-items: flex-start;
    padding-top: clamp(104px, 12vh, 132px);
  }
}

@media (max-width: 720px) {
  body:not(.b2b-landing) .cred-grid-three .cred-card {
    gap: 18px;
    grid-template-columns: 1fr;
    text-align: left;
  }

  body:not(.b2b-landing) .cred-grid-three .cred-logo {
    max-width: 240px;
  }

  body.b2b-landing:not(.medical-landing) .split-hero {
    min-height: auto;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-content {
    padding-bottom: clamp(44px, 10vw, 68px);
  }
}

@media (max-width: 680px) {
  .home-final-cta-inner {
    background:
      linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.76) 100%),
      url("../assets/images/optimized/booking-sky-cta.webp") center / cover no-repeat;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: left;
  }

  .home-final-contact-row,
  .home-final-contact-pill,
  .home-final-button {
    width: 100%;
  }

  .home-final-contact-pill,
  .home-final-button {
    justify-content: center;
  }

  .home-final-contact-pill {
    font-size: .9rem;
  }
}

/* Final layout pass for testimonials and full-width cloud CTA */
body:not(.b2b-landing) .proof-comparison-layout {
  gap: clamp(42px, 4.4vw, 68px);
  grid-template-columns: minmax(720px, 1.5fr) minmax(390px, .72fr);
  max-width: none;
  padding-inline: max(var(--home-page-x), calc((100vw - 1480px) / 2));
  width: 100%;
}

body:not(.b2b-landing) .proof-side,
body:not(.b2b-landing) .proof-header,
body:not(.b2b-landing) .proof-grid {
  justify-self: start;
  max-width: 100%;
  width: 100%;
}

body:not(.b2b-landing) .proof-header {
  margin-bottom: clamp(18px, 2vw, 28px);
}

body:not(.b2b-landing) .proof-header h2 {
  font-size: clamp(2rem, 1.42rem + 1.8vw, 3.05rem);
}

body:not(.b2b-landing) .proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body:not(.b2b-landing) .proof-card {
  aspect-ratio: 1 / 1.04;
  border-radius: 16px;
  min-height: 0;
  padding: clamp(26px, 2.2vw, 34px);
}

body:not(.b2b-landing) .proof-card p {
  font-size: clamp(.98rem, .9rem + .22vw, 1.08rem);
  line-height: 1.48;
}

.home-final-cta {
  background:
    linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.84) 48%, rgba(255,255,255,.62) 100%),
    url("../assets/images/optimized/booking-sky-cta.webp") center / cover no-repeat;
  overflow: hidden;
  padding: clamp(78px, 8vw, 128px) 0;
  position: relative;
}

.home-final-cta::before {
  background:
    radial-gradient(circle at 12% 50%, rgba(191,216,244,.28), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.2), transparent);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.home-final-cta .container {
  position: relative;
  z-index: 1;
}

.home-final-cta-inner {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  max-width: 1160px;
  overflow: visible;
  padding: 0;
}

.home-final-cta-inner::before {
  display: none;
}

.home-final-cta h2,
.home-final-cta p {
  max-width: 680px;
}

.home-final-contact-row {
  max-width: 980px;
}

@media (max-width: 1180px) {
  body:not(.b2b-landing) .proof-comparison-layout {
    grid-template-columns: 1fr;
  }

  body:not(.b2b-landing) .proof-grid {
    max-width: 920px;
  }

  body:not(.b2b-landing) .proof-card {
    aspect-ratio: auto;
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  body:not(.b2b-landing) .proof-comparison-layout {
    padding-inline: var(--home-page-x);
  }

  body:not(.b2b-landing) .proof-grid {
    grid-template-columns: 1fr;
  }

  body:not(.b2b-landing) .proof-card {
    min-height: 0;
  }

  .home-final-cta {
    background:
      linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.72) 100%),
      url("../assets/images/optimized/booking-sky-cta.webp") center / cover no-repeat;
    padding: 70px 0;
  }
}

/* Final home adjustments */
body:not(.b2b-landing) .hero::after {
  height: 58vh;
  background: linear-gradient(180deg, rgba(6,43,85,0) 0%, rgba(6,43,85,0.12) 18%, rgba(6,43,85,.38) 36%, rgba(6,43,85,.68) 54%, rgba(6,43,85,.92) 72%, var(--primary) 100%);
}

body:not(.b2b-landing) .hero-overlay {
  inset: -2px 0 -14vh 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(191,216,244,.08), transparent 40%),
    linear-gradient(180deg, rgba(6,43,85,.56) 0%, rgba(6,43,85,.46) 18%, rgba(6,43,85,.50) 36%, rgba(6,43,85,.62) 50%, rgba(6,43,85,.78) 65%, rgba(6,43,85,.94) 82%, var(--primary) 100%);
}

body:not(.b2b-landing) .destinations-scroll .scroll-title,
body:not(.b2b-landing) .destinations-scroll .scroll-title h2,
body:not(.b2b-landing) .destinations-scroll .scroll-title p,
body:not(.b2b-landing) .destinations-scroll .scroll-title .section-label {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

body:not(.b2b-landing) .dest-card-content p:empty {
  display: none;
}

body:not(.b2b-landing) .proof-grid {
  align-items: start;
  grid-auto-rows: 1fr;
}

body:not(.b2b-landing) .profiles-section h2::after,
body:not(.b2b-landing) .ev-title::after,
body:not(.b2b-landing) .proof-header h2::after,
body:not(.b2b-landing) .scroll-title h2::after,
body:not(.b2b-landing) .credentials-header h2::after,
body:not(.b2b-landing) .ig-header h3::after,
body:not(.b2b-landing) .home-final-cta h2::after {
  background: #E6BC00;
  content: "";
  display: block;
  height: 3px;
  margin-top: 12px;
  width: 42px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

body:not(.b2b-landing) .profiles-section h2,
body:not(.b2b-landing) .proof-header h2,
body:not(.b2b-landing) .scroll-title h2,
body:not(.b2b-landing) .credentials-header h2,
body:not(.b2b-landing) .ig-header h3,
body:not(.b2b-landing) .home-final-cta h2,
body:not(.b2b-landing) .ev-title {
  text-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

body:not(.b2b-landing) .profiles-section h2::after,
body:not(.b2b-landing) .credentials-header h2::after,
body:not(.b2b-landing) .home-final-cta h2::after {
  margin-inline: auto;
}

body:not(.b2b-landing) .proof-header h2::after,
body:not(.b2b-landing) .scroll-title h2::after,
body:not(.b2b-landing) .ig-header h3::after,
body:not(.b2b-landing) .ev-title::after {
  margin-inline: 0;
}

body:not(.b2b-landing) .profiles-section .proof-title-line,
body:not(.b2b-landing) .proof-title-line,
body:not(.b2b-landing) .ev-title-line {
  display: none;
}

body:not(.b2b-landing) .profile-image img,
body:not(.b2b-landing) .profile-overlay {
  clip-path: inset(0 round 14px 14px 0 0);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

body:not(.b2b-landing) .profile-card:hover .profile-image img,
body:not(.b2b-landing) .profile-card:hover .profile-overlay,
body:not(.b2b-landing) .profile-card.active .profile-image img,
body:not(.b2b-landing) .profile-card.active .profile-overlay {
  transform: scale(1.05);
}

body:not(.b2b-landing) .proof-card {
  align-content: start;
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  height: auto;
  height: 100%;
  min-height: 0;
  padding: clamp(22px, 1.8vw, 28px);
}

body:not(.b2b-landing) .proof-card p {
  margin-bottom: 16px;
}

body:not(.b2b-landing) .proof-person {
  gap: 4px;
  margin-top: auto;
}

body:not(.b2b-landing) .cred-grid.cred-grid-three {
  align-content: start;
  align-items: stretch;
  gap: clamp(22px, 2vw, 30px);
  grid-auto-rows: max-content;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: min(1480px, calc(100vw - 48px));
  width: 100%;
}

body:not(.b2b-landing) .cred-grid-three .cred-card {
  align-self: stretch;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  justify-content: flex-start;
  min-height: 0;
  text-align: center;
}

body:not(.b2b-landing) .cred-grid-three .cred-logo {
  background: transparent;
  border: 0;
  border-radius: 0;
  height: auto;
  width: auto;
  margin-bottom: 4px;
}

body:not(.b2b-landing) .cred-grid-three .cred-copy {
  flex: 1 1 auto;
  max-width: none;
}

body:not(.b2b-landing) .instagram-feed {
  background: linear-gradient(180deg, #eef2f6 0%, #f6f8fb 100%);
  color: var(--primary);
}

body:not(.b2b-landing) .instagram-feed .ig-header h3 {
  color: var(--primary);
}

body:not(.b2b-landing) .instagram-feed .ig-header p {
  color: var(--text-secondary);
}

body:not(.b2b-landing) .instagram-feed .ig-card {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 26px rgba(16, 42, 76, 0.08);
}

body:not(.b2b-landing) .instagram-feed .ig-follow-btn {
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 999px;
  color: #fff !important;
  min-height: 48px;
  padding: 0 24px;
}

body:not(.b2b-landing) .instagram-feed .ig-follow-btn:hover {
  background: #0b2f59;
  border-color: #0b2f59;
  color: #fff !important;
}

.home-final-cta .container {
  display: flex;
  justify-content: center;
}

.home-final-cta-inner {
  margin: 0 auto;
  text-align: center;
}

.home-final-cta h2,
.home-final-cta p {
  margin-inline: auto;
}

.home-final-contact-row {
  justify-content: center;
  margin-inline: auto;
}

body:not(.b2b-landing) .ev-panel {
  align-items: center;
}

body:not(.b2b-landing) .ev-intro p {
  font-size: clamp(.98rem, .9rem + .24vw, 1.08rem);
  line-height: 1.62;
  max-width: 460px;
}

body:not(.b2b-landing) .ev-feature {
  justify-content: center;
  text-align: left;
}

body:not(.b2b-landing) .ev-feature h3 {
  font-size: clamp(1rem, .94rem + .18vw, 1.08rem);
  line-height: 1.2;
}

body:not(.b2b-landing) .ev-feature p {
  font-size: clamp(.93rem, .88rem + .12vw, 1rem);
  line-height: 1.56;
}

@media (max-width: 900px) {
  body:not(.b2b-landing) .proof-card {
    min-height: 0;
  }

  body:not(.b2b-landing) .cred-grid.cred-grid-three {
    grid-template-columns: 1fr;
    max-width: min(920px, calc(100vw - 32px));
  }

  body:not(.b2b-landing) .cred-grid-three .cred-card {
    align-items: center;
  }

  body:not(.b2b-landing) .ev-feature {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body:not(.b2b-landing) .cred-grid-three .cred-card {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}

/* ===== Unified Button Curvature — All buttons pill-shaped ===== */
body:not(.b2b-landing) .btn,
body:not(.b2b-landing) .nav-cta,
body:not(.b2b-landing) .home-final-button,
body:not(.b2b-landing) .home-final-contact-pill,
body:not(.b2b-landing) .profile-btn {
  border-radius: 999px !important;
}

/* ===== Profile Category Label Overlay ===== */
.profile-category-label {
  position: absolute;
  top: 18px;
  left: 24px;
  z-index: 3;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

/* ===== Hero text + button lower ===== */
body:not(.b2b-landing) .hero-desc {
  margin-bottom: clamp(18px, 2.5vh, 32px);
}

/* ===== Testimonials: stars + avatar ===== */
.proof-stars {
  color: #FFD21F;
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-top: 8px;
  margin-bottom: 4px;
}

.proof-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(106,155,200,.22);
}

body:not(.b2b-landing) .proof-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== Smaller credential logos ===== */
body:not(.b2b-landing) .cred-logo-img-iata {
  max-height: 34px !important;
  width: clamp(48px, 5.5vw, 64px) !important;
}

body:not(.b2b-landing) .cred-logo-img-arc {
  max-height: 38px !important;
  width: clamp(68px, 7.5vw, 96px) !important;
}

body:not(.b2b-landing) .cred-logo-img-clia {
  max-height: 30px !important;
  width: clamp(42px, 4.5vw, 60px) !important;
}

body:not(.b2b-landing) .cred-shield-icon {
  width: clamp(54px, 5vw, 68px) !important;
}

body:not(.b2b-landing) .cred-logo-img-archer {
  max-height: 52px !important;
  width: clamp(96px, 9vw, 124px) !important;
}

/* ===== Medical profile image: show full head ===== */
body:not(.b2b-landing) .profile-card[data-profile="medical"] .profile-image img {
  object-position: center 15%;
}

/* ===== Síguenos button: match screenshot ===== */
body:not(.b2b-landing) .instagram-feed .ig-follow-btn {
  background: var(--primary) !important;
  border: 2px solid rgba(191,216,244,.22) !important;
  border-radius: 999px !important;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  min-height: 52px;
  padding: 12px 32px;
  box-shadow: 0 8px 28px rgba(6,43,85,.18);
  transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

body:not(.b2b-landing) .instagram-feed .ig-follow-btn:hover {
  background: #0b2f59 !important;
  border-color: rgba(191,216,244,.36) !important;
  color: #fff !important;
  box-shadow: 0 12px 36px rgba(6,43,85,.24);
  transform: translateY(-2px);
}

/* ===== Home final spacing, testimonials, credentials and IG ===== */
body:not(.b2b-landing) .hero-title {
  margin-bottom: clamp(18px, 2.2vh, 28px);
}

body:not(.b2b-landing) .hero-desc {
  font-size: clamp(1.04rem, .96rem + .28vw, 1.22rem);
  line-height: 1.68;
  margin-top: clamp(12px, 1.8vh, 20px);
  margin-bottom: clamp(26px, 3vh, 38px);
  max-width: min(760px, calc(100vw - (var(--home-page-x) * 2)));
}

body:not(.b2b-landing) .hero-cta-container {
  margin-top: calc(var(--home-hero-cta-gap) + 180px);
}

body:not(.b2b-landing) .proof-section {
  padding-block: clamp(44px, 4.6vw, 58px);
}

body:not(.b2b-landing) .proof-grid {
  grid-auto-rows: 1fr;
}

body:not(.b2b-landing) .proof-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

body:not(.b2b-landing) .proof-card p {
  margin-bottom: 18px;
}

body:not(.b2b-landing) .proof-stars {
  margin-top: auto;
  margin-bottom: 12px;
}

body:not(.b2b-landing) .proof-person {
  align-items: center;
  gap: 12px;
  margin-top: 0;
  min-height: 56px;
}

body:not(.b2b-landing) .credentials {
  padding-block: clamp(34px, 3.8vw, 48px);
}

body:not(.b2b-landing) .credentials .container {
  max-width: min(1420px, calc(100vw - 42px));
}

body:not(.b2b-landing) .credentials-header {
  margin-bottom: clamp(18px, 2vw, 24px);
}

body:not(.b2b-landing) .credentials-header .section-label {
  margin-bottom: 4px;
}

body:not(.b2b-landing) .cred-grid.cred-grid-three {
  gap: clamp(16px, 1.5vw, 22px);
}

body:not(.b2b-landing) .cred-grid-three .cred-card {
  gap: 12px;
  padding: clamp(16px, 1.4vw, 20px);
}

body:not(.b2b-landing) .cred-grid-three .cred-copy h3 {
  margin-bottom: 6px;
}

body:not(.b2b-landing) .cred-grid-three .cred-copy p {
  font-size: clamp(.84rem, .8rem + .1vw, .9rem);
  line-height: 1.45;
}

body:not(.b2b-landing) .cred-logo-img-iata {
  max-height: 28px !important;
  width: clamp(44px, 4.8vw, 58px) !important;
}

body:not(.b2b-landing) .cred-logo-img-arc {
  max-height: 32px !important;
  width: clamp(62px, 6.5vw, 84px) !important;
}

body:not(.b2b-landing) .cred-logo-img-clia {
  max-height: 24px !important;
  width: clamp(38px, 4vw, 52px) !important;
}

body:not(.b2b-landing) .cred-shield-icon {
  width: clamp(44px, 4vw, 56px) !important;
}

body:not(.b2b-landing) .cred-logo-img-archer {
  max-height: 42px !important;
  width: clamp(86px, 8vw, 108px) !important;
}

body:not(.b2b-landing) .instagram-feed {
  padding-block: clamp(42px, 4.8vw, 58px);
}

body:not(.b2b-landing) .instagram-feed .ig-header h3 {
  font-size: clamp(2rem, 1.5rem + 1.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.04;
}

body:not(.b2b-landing) .instagram-feed .ig-follow-btn {
  background: rgba(255, 255, 255, 0.96) !important;
  border: 1px solid rgba(16, 42, 76, 0.08) !important;
  color: var(--primary) !important;
  box-shadow: 0 10px 28px rgba(16, 42, 76, 0.08);
}

body:not(.b2b-landing) .instagram-feed .ig-follow-btn:hover {
  background: #fff !important;
  border-color: rgba(16, 42, 76, 0.14) !important;
  color: var(--primary) !important;
  box-shadow: 0 14px 34px rgba(16, 42, 76, 0.12);
}

@media (max-width: 900px) {
  body:not(.b2b-landing) .hero-cta-container {
    margin-top: calc(var(--home-hero-cta-gap) + 160px);
  }

  body:not(.b2b-landing) .credentials {
    padding-block: 36px;
  }

  body:not(.b2b-landing) .cred-grid.cred-grid-three {
    gap: 14px;
  }
}

/* ===== Home layout tightening and section order refinements ===== */
body:not(.b2b-landing) .destinations-scroll {
  padding-block: clamp(44px, 4.5vw, 64px);
}

body:not(.b2b-landing) .scroll-container {
  height: min(88vh, 860px);
}

body:not(.b2b-landing) .scroll-wrapper {
  gap: 44px;
  padding-inline: clamp(20px, 7vw, 112px);
}

body:not(.b2b-landing) .scroll-title {
  min-width: 440px;
  padding-right: 42px;
}

body:not(.b2b-landing) .scroll-title h2 {
  margin-bottom: 16px;
}

body:not(.b2b-landing) .scroll-title p {
  line-height: 1.6;
  max-width: 520px;
}

body:not(.b2b-landing) .dest-card {
  height: 590px;
  width: 470px;
}

body:not(.b2b-landing) .dest-card-content {
  padding: 38px 34px;
}

body:not(.b2b-landing) .profile-content h3 {
  max-width: 15ch;
}

body:not(.b2b-landing) .profile-card[data-profile="medical"] .profile-content h3 {
  max-width: none;
  white-space: nowrap;
}

body:not(.b2b-landing) .ev-panel {
  grid-template-columns: minmax(520px, 2.25fr) repeat(3, minmax(180px, .88fr));
  padding-inline: max(var(--home-page-x), calc((100vw - 1500px) / 2));
}

body:not(.b2b-landing) .ev-intro {
  padding-right: clamp(34px, 3.2vw, 56px);
}

body:not(.b2b-landing) .ev-intro::after {
  display: none;
}

body:not(.b2b-landing) .ev-title {
  max-width: 640px;
}

body:not(.b2b-landing) .ev-intro p {
  max-width: 600px;
}

body:not(.b2b-landing) .ev-feature {
  padding: 0 clamp(18px, 1.4vw, 24px) 0 clamp(28px, 2vw, 34px);
}

body:not(.b2b-landing) .ev-feature::before {
  height: 66%;
  left: 0;
  top: 17%;
}

body:not(.b2b-landing) .credentials {
  padding-block: clamp(30px, 3.2vw, 42px);
}

@media (max-width: 1100px) {
  body:not(.b2b-landing) .profile-card[data-profile="medical"] .profile-content h3 {
    white-space: normal;
  }

  body:not(.b2b-landing) .ev-panel {
    grid-template-columns: minmax(420px, 1.5fr) repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body:not(.b2b-landing) .scroll-container {
    height: auto;
  }

  body:not(.b2b-landing) .destinations-scroll {
    padding-block: 40px;
  }

  body:not(.b2b-landing) .scroll-wrapper {
    gap: 14px;
    padding-inline: 18px;
  }

  body:not(.b2b-landing) .scroll-title {
    min-width: 0;
    padding-right: 0;
  }

  body:not(.b2b-landing) .dest-card {
    height: auto;
    width: 100%;
  }
}

/* ===== Home connector flight between profiles and value section ===== */
body:not(.b2b-landing) .home-section-flight-wrap {
  position: relative;
  isolation: isolate;
}

body:not(.b2b-landing) .home-section-flight-wrap .profiles-section,
body:not(.b2b-landing) .home-section-flight-wrap .ev-services {
  position: relative;
  z-index: 1;
}

body:not(.b2b-landing) .section-flight-connector {
  inset: 40px auto 0 0;
  pointer-events: none;
  position: absolute;
  width: clamp(180px, 20vw, 340px);
  z-index: 3;
  height: calc(100% - 64px);
}

body:not(.b2b-landing) .section-flight-svg {
  height: 100%;
  overflow: visible;
  width: 100%;
}

body:not(.b2b-landing) .section-flight-route,
body:not(.b2b-landing) .section-flight-route-active {
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

body:not(.b2b-landing) .section-flight-route {
  opacity: .58;
  stroke: rgba(230, 188, 0, 0.42);
  stroke-dasharray: 10 12;
}

body:not(.b2b-landing) .section-flight-route-active {
  filter: drop-shadow(0 0 12px rgba(230, 188, 0, 0.18));
  opacity: .98;
  stroke: #E6BC00;
  stroke-dasharray: 12 10;
}

body:not(.b2b-landing) .section-flight-plane {
  height: auto;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform-origin: center center;
  width: clamp(56px, 4.6vw, 84px);
  will-change: transform, opacity;
  filter: drop-shadow(0 10px 24px rgba(6, 43, 85, 0.18));
}

@media (max-width: 1100px) {
  body:not(.b2b-landing) .section-flight-connector {
    width: clamp(120px, 14vw, 180px);
  }
}

@media (max-width: 900px) {
  body:not(.b2b-landing) .section-flight-connector {
    display: none;
  }
}

/* ===== Home cleanup after IG removal and responsive tightening ===== */
body:not(.b2b-landing) .destinations-scroll,
body:not(.b2b-landing) .proof-section,
body:not(.b2b-landing) .credentials {
  background: #f8fbff;
}

body:not(.b2b-landing) .destinations-scroll::before {
  display: none;
}

body:not(.b2b-landing) .dest-card-inner,
body:not(.b2b-landing) .proof-card,
body:not(.b2b-landing) .cred-grid-three .cred-card {
  background: rgba(255, 255, 255, 0.92);
}

body:not(.b2b-landing) .credentials-header h2 {
  white-space: nowrap;
}

body:not(.b2b-landing) .profile-card[data-profile="medical"] .profile-badge {
  align-items: center;
  justify-content: center;
}

body:not(.b2b-landing) .profile-card[data-profile="medical"] .profile-badge svg {
  height: 32px;
  width: 32px;
}

body:not(.b2b-landing) .destinations-scroll {
  padding-block: clamp(28px, 3.2vw, 44px);
}

body:not(.b2b-landing) .scroll-container {
  height: min(78vh, 760px);
}

body:not(.b2b-landing) .scroll-wrapper {
  gap: 30px;
  padding-inline: clamp(18px, 5vw, 86px);
}

body:not(.b2b-landing) .scroll-title {
  min-width: 390px;
  padding-right: 24px;
}

body:not(.b2b-landing) .scroll-title p {
  max-width: 470px;
}

body:not(.b2b-landing) .dest-card {
  height: 540px;
  width: 430px;
}

body:not(.b2b-landing) .dest-card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 164px;
  padding: 30px 28px;
}

body:not(.b2b-landing) .dest-card-content span {
  line-height: 1.25;
  min-height: 2.5em;
}

body:not(.b2b-landing) .dest-card-content h3 {
  font-size: clamp(1.5rem, 1.24rem + .72vw, 1.95rem);
  line-height: 1.08;
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  body:not(.b2b-landing) .profiles-grid,
  body:not(.b2b-landing) .cred-grid.cred-grid-three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body:not(.b2b-landing) .hero {
    padding-block: 72px 28px;
  }

  body:not(.b2b-landing) .hero-text-container {
    min-height: 250px;
  }

  body:not(.b2b-landing) .hero-title {
    font-size: clamp(1.96rem, 8.6vw, 2.7rem);
    max-width: 13ch;
  }

  body:not(.b2b-landing) .hero-desc {
    font-size: .96rem;
    line-height: 1.56;
    max-width: 34ch;
  }

  body:not(.b2b-landing) .stats-section {
    margin-top: -8px;
    padding: 34px 0;
  }

  body:not(.b2b-landing) .profiles-section {
    padding-top: 42px;
    padding-bottom: 28px;
  }

  body:not(.b2b-landing) .profile-content {
    padding: 36px 18px 18px;
  }

  body:not(.b2b-landing) .profile-content h3,
  body:not(.b2b-landing) .profile-card[data-profile="medical"] .profile-content h3 {
    max-width: none;
    white-space: normal;
  }

  body:not(.b2b-landing) .ev-services {
    padding: 24px 0;
  }

  body:not(.b2b-landing) .ev-panel {
    gap: 18px;
    padding-inline: 18px;
    padding-block: 22px;
  }

  body:not(.b2b-landing) .ev-intro p {
    font-size: .96rem;
    max-width: none;
  }

  body:not(.b2b-landing) .ev-feature-grid {
    grid-template-columns: 1fr;
  }

  body:not(.b2b-landing) .ev-feature {
    padding: 18px 0 18px 0;
  }

  body:not(.b2b-landing) .proof-section,
  body:not(.b2b-landing) .credentials,
  body:not(.b2b-landing) .home-final-cta {
    padding-block: 34px;
  }
}

@media (max-width: 520px) {
  body:not(.b2b-landing) .hero-title {
    font-size: clamp(1.74rem, 8.4vw, 2.12rem);
  }

  body:not(.b2b-landing) .hero-desc {
    font-size: .9rem;
    max-width: 31ch;
  }

  body:not(.b2b-landing) .credentials-header h2 {
    white-space: normal;
  }

  body:not(.b2b-landing) .destinations-scroll {
    padding-block: 26px;
  }

  body:not(.b2b-landing) .scroll-container {
    height: 72vh;
  }

  body:not(.b2b-landing) .scroll-wrapper {
    gap: 18px;
    padding-inline: 16px;
  }

  body:not(.b2b-landing) .scroll-title {
    min-width: 280px;
  }

  body:not(.b2b-landing) .scroll-title p {
    max-width: 260px;
  }

  body:not(.b2b-landing) .dest-card {
    height: 420px;
    width: 300px;
  }

  body:not(.b2b-landing) .dest-card-content {
    min-height: 152px;
    padding: 24px 20px;
  }

  body:not(.b2b-landing) .home-final-contact-row {
    gap: 10px;
  }

  body:not(.b2b-landing) .home-final-contact-pill,
  body:not(.b2b-landing) .home-final-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  body:not(.b2b-landing) .scroll-container {
    height: 74vh;
  }

  body:not(.b2b-landing) .scroll-wrapper {
    display: flex;
    gap: 18px;
    padding-inline: 18px;
    transform: none;
    width: max-content;
  }

  body:not(.b2b-landing) .scroll-title {
    min-width: 320px;
    padding-right: 18px;
  }

  body:not(.b2b-landing) .dest-card {
    height: 460px;
    width: 330px;
  }
}

/* Align home value icons and titles on a common visual row. */
body:not(.b2b-landing) .ev-feature {
  justify-content: flex-start;
}

body:not(.b2b-landing) .ev-feature-icon {
  align-items: flex-start;
  display: flex;
  flex: 0 0 46px;
  height: 46px;
  justify-content: flex-start;
  line-height: 0;
  width: 46px;
}

body:not(.b2b-landing) .ev-feature-icon svg {
  display: block;
  height: 42px;
  width: 42px;
}

body:not(.b2b-landing) .ev-feature h3 {
  margin-top: 0;
  min-height: 2.4em;
}

/* Final home polish: deeper opening gradient, wider profile cards, compact proof cards. */
body:not(.b2b-landing) .hero::after {
  height: 74vh;
  background: linear-gradient(180deg, rgba(6,43,85,0) 0%, rgba(6,43,85,.2) 10%, rgba(6,43,85,.52) 28%, rgba(6,43,85,.78) 48%, rgba(6,43,85,.95) 68%, var(--primary) 100%);
}

body:not(.b2b-landing) .hero-overlay {
  background:
    radial-gradient(circle at 50% 40%, rgba(191,216,244,.06), transparent 36%),
    linear-gradient(180deg, rgba(6,43,85,.64) 0%, rgba(6,43,85,.58) 20%, rgba(6,43,85,.64) 38%, rgba(6,43,85,.78) 56%, rgba(6,43,85,.94) 76%, var(--primary) 100%);
}

body:not(.b2b-landing) .hero-content {
  transform: translateY(clamp(28px, 5.6vh, 64px));
}

body:not(.b2b-landing) .hero-cta-container {
  animation: none;
  margin-top: clamp(44px, 6vh, 72px);
  opacity: 1;
  transform: none;
}

body:not(.b2b-landing) .profiles-grid {
  gap: clamp(22px, 3vw, 38px);
  max-width: min(1520px, calc(100vw - (var(--home-page-x) * 2)));
}

body:not(.b2b-landing) .profile-card {
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease;
}

body:not(.b2b-landing) .profile-card:hover,
body:not(.b2b-landing) .profile-card.active {
  border-color: var(--accent);
  box-shadow: 0 25px 50px rgba(16,42,76,0.15), 0 0 20px rgba(255, 184, 0, 0.15);
  transform: translateY(-12px);
}

body:not(.b2b-landing) .profile-content {
  display: flex;
  flex-direction: column;
  min-height: 230px;
}

body:not(.b2b-landing) .profile-content p {
  margin-bottom: 22px;
}

body:not(.b2b-landing) .profile-btn {
  align-items: center;
  color: var(--primary);
  display: inline-flex;
  font-size: .94rem;
  font-weight: 800;
  gap: 8px;
  margin-top: auto;
  width: fit-content;
}

body:not(.b2b-landing) .profile-btn::after {
  content: "->";
  line-height: 1;
}

body:not(.b2b-landing) .proof-grid {
  padding-top: 0;
}

body:not(.b2b-landing) .proof-plane {
  display: none;
}

body:not(.b2b-landing) .proof-card {
  min-height: 176px;
  padding: clamp(18px, 1.45vw, 22px);
}

body:not(.b2b-landing) .proof-card p {
  margin-top: 0;
  margin-bottom: 14px;
}

body:not(.b2b-landing) .proof-stars {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  body:not(.b2b-landing) .hero-content {
    transform: translateY(22px);
  }

  body:not(.b2b-landing) .profile-content {
    min-height: 0;
  }
}

/* ===== Medicos landing refresh ===== */
body.medical-landing .header,
body.medical-landing .header:not(.scrolled),
body.medical-landing .header.scrolled {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

body.medical-landing main > section {
  padding-block: clamp(64px, 8vw, 104px);
}

body.medical-landing .medical-hero {
  min-height: calc(100vh - 88px);
  padding-top: 88px;
  background:
    radial-gradient(circle at 12% 14%, rgba(254, 211, 48, 0.14), transparent 22%),
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(247,251,255,.94) 48%, rgba(226,237,249,.5) 100%);
}

body.medical-landing .medical-hero .split-hero-content {
  padding-block: clamp(40px, 8vh, 88px);
}

body.medical-landing .medical-hero .split-hero-kicker {
  margin-bottom: 4px;
}

body.medical-landing .medical-hero .split-hero-title {
  max-width: 10.5ch;
}

body.medical-landing .medical-hero .split-hero-image {
  position: relative;
}

body.medical-landing .medical-hero .split-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 24, 46, 0.04), rgba(8, 24, 46, 0.14));
  pointer-events: none;
}

body.medical-landing .statement-grid {
  align-items: center;
}

body.medical-landing .statement-title {
  max-width: 29rem;
}

body.medical-landing .medical-program-grid {
  align-items: start;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
}

body.medical-landing .medical-program-title {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: 58px minmax(0, 1fr);
}

body.medical-landing .medical-program-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--accent);
  display: inline-flex;
  height: 58px;
  justify-content: center;
  width: 58px;
}

body.medical-landing .medical-program-icon svg {
  fill: none;
  height: 26px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 26px;
}

body.medical-landing .medical-program-copy h2 {
  margin: 0;
}

body.medical-landing .statement-copy-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 60px rgba(4, 12, 24, 0.16);
}

body.medical-landing .statement-copy-card p + p {
  margin-top: 16px;
}

body.medical-landing .medical-process {
  background: linear-gradient(180deg, #f7fbff 0%, #edf5fc 100%);
}

body.medical-landing .medical-process .section-header,
body.medical-landing .medical-specialties .section-header,
body.medical-landing .b2b-faqs .section-header {
  max-width: 760px;
  margin-inline: auto;
}

body.medical-landing .medical-timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  margin-top: clamp(34px, 4vw, 48px);
}

body.medical-landing .timeline-step {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 48, 86, 0.08);
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(14, 41, 73, 0.08);
  padding: clamp(24px, 2.6vw, 32px);
  min-height: 100%;
}

body.medical-landing .timeline-step span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 89, 163, 0.1);
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 18px;
}

body.medical-landing .timeline-step h3 {
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 14px;
  text-align: center;
}

body.medical-landing .timeline-step p {
  color: var(--text-secondary);
  line-height: 1.68;
  text-align: center;
}

body.medical-landing .medical-step-icon {
  color: #2e75cf;
  display: flex;
  justify-content: center;
  margin: 2px 0 16px;
}

body.medical-landing .medical-step-icon svg {
  fill: none;
  height: 42px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 42px;
}

body.medical-landing .medical-process-cta {
  margin-top: 26px;
  text-align: center;
}

body.medical-landing .medical-specialties {
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 211, 48, 0.18), transparent 20%),
    linear-gradient(135deg, #081a32 0%, #0f2a4c 62%, #17375e 100%);
  color: #fff;
}

body.medical-landing .medical-specialties .section-label,
body.medical-landing .medical-specialties h2,
body.medical-landing .medical-specialties .section-subtitle,
body.medical-landing .medical-specialty-note h3,
body.medical-landing .medical-specialty-note p {
  color: #fff;
}

body.medical-landing .specialty-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(34px, 4vw, 48px);
}

body.medical-landing .specialty-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  min-height: 96px;
  padding: 20px 18px;
  text-align: center;
}

body.medical-landing .specialty-icon {
  color: rgba(255,255,255,.92);
  display: inline-flex;
}

body.medical-landing .specialty-icon svg {
  fill: none;
  height: 32px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 32px;
}

body.medical-landing .specialty-card span:last-child {
  color: #fff;
  line-height: 1.28;
}

body.medical-landing .medical-specialty-note {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 18px;
  text-align: center;
}

body.medical-landing .medical-specialty-note .btn {
  margin-top: 0;
}

body.medical-landing .medical-testimonials {
  background: #f7fbff;
  padding-block: clamp(28px, 4vw, 52px) clamp(64px, 8vw, 92px);
}

body.medical-landing .medical-testimonials .b2b-testimonial-grid {
  max-width: 980px;
  margin-left: auto;
  margin-right: 0;
  gap: clamp(14px, 1.6vw, 20px);
}

body.medical-landing .medical-testimonials .b2b-testimonial-card {
  min-height: 260px;
  padding: clamp(18px, 1.8vw, 24px);
}

body.medical-landing .testimonial-avatar--placeholder {
  background: linear-gradient(135deg, #eef3f9, #dbe7f3);
  border: 1px solid rgba(16, 42, 76, 0.08);
}

body.medical-landing .medical-final-cta {
  background:
    linear-gradient(135deg, rgba(255, 212, 48, 0.16), transparent 22%),
    linear-gradient(135deg, #07172b 0%, var(--primary) 62%, #17375e 100%);
}

body.medical-landing .medical-final-cta .booking-cta-inner {
  max-width: 1180px;
  text-align: center;
}

body.medical-landing .medical-final-cta p {
  max-width: 720px;
  margin-inline: auto;
}

body.medical-landing .medical-cta-actions {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 28px;
}

body.medical-landing .medical-cta-actions .btn {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 52px;
  width: 100%;
}

body.medical-landing .b2b-faqs {
  background: #f7fbff;
}

body.medical-landing .faq-list {
  max-width: 960px;
  margin: 42px auto 0;
}

body.medical-landing .faq-item {
  background: #fff;
  border: 1px solid rgba(16, 42, 76, 0.08);
  box-shadow: 0 18px 38px rgba(12, 36, 64, 0.06);
}

body.medical-landing .faq-question {
  color: var(--primary);
  font-size: 1.02rem;
}

/* ===== Home work meaning card ===== */
body:not(.b2b-landing) .work-meaning-section {
  background: transparent;
  padding: clamp(40px, 6vw, 80px) 0;
}

body:not(.b2b-landing) .work-meaning-card {
  margin: 0 auto;
  max-width: 1320px;
  position: relative;
  isolation: isolate;
}

body:not(.b2b-landing) .work-meaning-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: clamp(134px, 12vw, 168px);
  transform: translateX(-50%);
  width: min(860px, calc(100% - 160px));
  height: clamp(160px, 20vw, 240px);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 100%),
    url("../assets/images/profiles-sky-bg.webp") center center / cover no-repeat;
  z-index: 5;
}

body:not(.b2b-landing) .work-meaning-head {
  margin-bottom: clamp(22px, 3vw, 32px);
  text-align: center;
}

body:not(.b2b-landing) .work-meaning-title {
  color: var(--primary);
  font-size: clamp(2rem, 1.45rem + 2vw, 3.2rem);
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
  position: relative;
  z-index: 2;
}

body:not(.b2b-landing) .work-meaning-title-line {
  background: var(--accent);
  border-radius: 999px;
  display: block;
  height: 4px;
  margin: 14px auto 0;
  width: 54px;
}

body:not(.b2b-landing) .plane-showcase {
  margin-bottom: 0;
  position: relative;
  z-index: 20 !important;
  isolation: isolate;
}

body:not(.b2b-landing) .plane-showcase-frame {
  background: none !important;
  border-radius: 999px;
  height: clamp(160px, 20vw, 240px);
  margin: 0 auto;
  width: 100%;
  max-width: 860px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: translateY(34px);
  z-index: auto;
  overflow: visible !important;
}

body:not(.b2b-landing) .plane-showcase-sky {
  display: none;
}

body:not(.b2b-landing) .plane-showcase-image {
  display: block;
  width: 135%;
  max-width: 1400px;
  object-fit: contain;
  position: relative;
  transform: translateX(0.35%) translateY(-5%);
  z-index: 30 !important;
  pointer-events: none;
}

body:not(.b2b-landing) .benefits-band {
  background: linear-gradient(135deg, #031b34 0%, #062b55 58%, #031b34 100%);
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  position: relative;
  z-index: 10 !important;
  margin-top: -20px;
}

body:not(.b2b-landing) .benefit-item {
  color: #fff;
  padding: clamp(26px, 2.6vw, 36px);
  position: relative;
  text-align: center;
}

body:not(.b2b-landing) .benefit-item:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.14);
  content: "";
  height: calc(100% - 52px);
  position: absolute;
  right: 0;
  top: 26px;
  width: 1px;
}

body:not(.b2b-landing) .benefit-icon {
  color: var(--accent);
  display: inline-flex;
  margin-bottom: 18px;
}

body:not(.b2b-landing) .benefit-icon svg {
  fill: none;
  height: 32px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 32px;
}

body:not(.b2b-landing) .benefit-item h3 {
  color: #fff;
  font-size: clamp(1.18rem, 1rem + 0.45vw, 1.46rem);
  line-height: 1.16;
  margin: 0 0 14px;
  text-wrap: balance;
}

body:not(.b2b-landing) .benefit-item p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.58;
  margin: 0;
  max-width: 28ch;
}

@media (max-width: 1024px) {
  body:not(.b2b-landing) .work-meaning-card {
    border-radius: 28px;
    padding: 28px;
  }

  body:not(.b2b-landing) .plane-showcase-frame {
    border-radius: 999px;
    min-height: 200px;
    transform: translateY(24px);
  }

  body:not(.b2b-landing) .benefits-band {
    grid-template-columns: 1fr;
  }

  body:not(.b2b-landing) .work-meaning-card::before {
    top: 124px;
    width: calc(100% - 84px);
    height: 186px;
  }

  body:not(.b2b-landing) .benefit-item:not(:last-child)::after {
    height: 1px;
    left: 26px;
    right: 26px;
    top: auto;
    bottom: 0;
    width: auto;
  }

  body:not(.b2b-landing) .benefit-item p {
    max-width: none;
  }
}

@media (max-width: 640px) {
  body:not(.b2b-landing) .work-meaning-section {
    padding: 52px 0;
  }

  body:not(.b2b-landing) .work-meaning-card {
    border-radius: 24px;
    padding: 22px;
  }

  body:not(.b2b-landing) .plane-showcase-frame {
    border-radius: 999px;
    min-height: 140px;
    padding: 0;
    transform: translateY(14px);
  }

  body:not(.b2b-landing) .benefits-band {
    border-radius: 20px;
    margin-top: -12px;
  }

  body:not(.b2b-landing) .work-meaning-card::before {
    top: 110px;
    width: calc(100% - 40px);
    height: 138px;
  }

  body:not(.b2b-landing) .benefit-item {
    padding: 22px 20px;
  }

  body:not(.b2b-landing) .benefit-item:not(:last-child)::after {
    left: 20px;
    right: 20px;
  }
}

@media (max-width: 1024px) {
  body.medical-landing .statement-grid,
  body.medical-landing .medical-timeline,
  body.medical-landing .specialty-grid {
    grid-template-columns: 1fr;
  }

  body.medical-landing .medical-program-title {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  body.medical-landing .specialty-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.medical-landing .specialty-card {
    min-height: 88px;
  }
}

@media (max-width: 767px) {
  body.medical-landing main > section {
    padding-block: 48px;
  }

  body.medical-landing .medical-hero {
    min-height: auto;
    padding-top: 74px;
  }

  body.medical-landing .split-hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  body.medical-landing .medical-hero .split-hero-content {
    flex: 0 0 auto;
    justify-content: flex-start;
    order: 1;
    padding-block: 38px 28px;
  }

  body.medical-landing .medical-hero .split-hero-image {
    order: 2;
    min-height: 320px;
    max-height: 360px;
    flex-basis: auto;
  }

  body.medical-landing .medical-hero .split-hero-image img {
    height: 100%;
    object-position: center top;
  }

  body.medical-landing .medical-primary-cta {
    width: 100%;
  }

  body.medical-landing .timeline-step,
  body.medical-landing .b2b-testimonial-card {
    border-radius: 18px;
  }

  body.medical-landing .specialty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.medical-landing .specialty-card {
    min-height: 82px;
    padding: 18px 14px;
  }

  body.medical-landing .medical-cta-actions {
    grid-template-columns: 1fr;
  }

  body.medical-landing .medical-cta-actions .btn {
    width: 100%;
  }

  body.medical-landing .medical-specialty-note {
    align-items: stretch;
    flex-direction: column;
  }
}

/* ===== Calculator Section (Corporate Landing) ===== */
.calc-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #FFFFFF 100%);
}
.calc-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,.96);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(6,43,85,.06);
}
.calc-header {
  padding: 40px 48px 0;
  text-align: center;
}
.calc-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--primary);
  margin-bottom: 0;
}
.calc-body {
  padding: 36px 48px 48px;
}
.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}
.calc-input-group label {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.calc-slider-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.calc-range {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary-light) 100%);
  outline: none;
  cursor: default;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  cursor: default;
  transition: none;
}
.calc-range::-webkit-slider-thumb:hover {
  transform: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.calc-range::-webkit-slider-thumb:active {
  cursor: default;
}
.calc-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  cursor: default;
}
.calc-range-value {
  min-width: 80px;
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
}
.calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.calc-result-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.calc-result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.calc-result-card.accent {
  background: var(--primary);
  border-color: var(--primary);
}
.calc-result-card.accent .calc-result-number {
  color: var(--accent);
}
.calc-result-card.accent .calc-result-label {
  color: rgba(255,255,255,.8);
}
.calc-result-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--primary);
  line-height: 1.1;
  transition: all 0.3s ease;
}
.calc-result-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.no-risk-section {
  padding: 80px 0;
}
.no-risk-section h2 {
  color: #fff;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .calc-header { padding: 28px 24px 0; }
  .calc-body { padding: 24px 24px 32px; }
  .calc-results { grid-template-columns: 1fr; gap: 14px; }
  .calc-slider-wrap { gap: 14px; }
  .calc-range-value { min-width: 65px; font-size: 1rem; }
}

/* Minimal Profiles Section */
.minimal-profiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.profile-card-minimal {
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  box-shadow: 0 4px 16px rgba(6, 43, 85, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.profile-card-minimal:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(6, 43, 85, 0.12), 0 4px 20px rgba(255, 210, 31, 0.18);
}
.profile-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.profile-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-corporate {
  background-color: var(--primary);
  color: #ffffff;
}
.icon-medical {
  background-color: var(--primary);
  color: #ffffff;
}
.profile-card-header h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--primary);
}
.profile-content-minimal {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.profile-content-minimal p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.profile-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.profile-card-minimal:hover .profile-link {
  color: var(--accent);
}

@media (max-width: 768px) {
  .minimal-profiles {
    grid-template-columns: 1fr;
  }
  .profile-card-minimal {
    padding: 24px;
  }
}

/* ===== Text Readability System — Widows, Orphans & Line Balance ===== */

/* Medical landing: hero heading */
body.medical-landing .split-hero-title {
  text-wrap: balance;
  max-width: 20ch;
  line-height: 1.08;
}

/* Medical landing: all section h2 */
body.medical-landing h2 {
  text-wrap: balance;
}

/* Medical landing: CTA heading — long sentence, constrain to ~3-4 balanced lines */
body.medical-landing .booking-cta h2,
body.medical-landing .medical-final-cta h2 {
  max-width: 22ch;
  text-wrap: balance;
}

/* Medical landing: desc paragraphs — responsive font size */
body.medical-landing .split-hero-desc {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.22rem);
  line-height: 1.68;
  max-width: 56ch;
  text-wrap: pretty;
}

/* Medical landing: process steps and timeline text */
body.medical-landing .timeline-step h3 {
  text-wrap: balance;
  max-width: 18ch;
}

/* Medical landing: statement section */
body.medical-landing .statement-title h2 {
  max-width: 17ch;
  text-wrap: balance;
}

body.medical-landing .statement-content p {
  max-width: 62ch;
  text-wrap: pretty;
}

/* Medical landing: specialty grid — centered, balanced text */
.specialty-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-wrap: balance;
  hyphens: auto;
  overflow-wrap: break-word;
}

/* Medical landing: responsive container padding */
body.medical-landing .container {
  padding-inline: clamp(20px, 4vw, 56px);
}

/* Medical landing: section header subtitles */
body.medical-landing .section-subtitle {
  max-width: 58ch;
  text-wrap: pretty;
}

/* Home page: section headings balance */
body:not(.b2b-landing) .profiles-section h2,
body:not(.b2b-landing) .credentials-header h2,
body:not(.b2b-landing) .scroll-title h2,
body:not(.b2b-landing) .work-meaning-title {
  text-wrap: balance;
}

/* Home page: destination scroll title — allow wider */
body:not(.b2b-landing) .scroll-title h2 {
  max-width: 22ch;
}

/* Home page: proof / testimonial card text */
body:not(.b2b-landing) .proof-card p,
.b2b-testimonial-card p {
  text-wrap: pretty;
  max-width: 54ch;
}

/* All pages: booking CTA headings */
.booking-cta-inner h2 {
  text-wrap: balance;
}

.booking-cta-inner p {
  text-wrap: pretty;
  max-width: 60ch;
}

/* Company page: booking CTA */
body.b2b-landing:not(.medical-landing) .booking-cta-inner h2 {
  max-width: 22ch;
}

/* FAQs: question text wrapping */
.faq-question span {
  text-wrap: pretty;
  max-width: 62ch;
}

/* Footer: prevent long email/phone from causing layout issues */
.footer ul a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Footer: brand description */
.footer-brand p {
  text-wrap: pretty;
}

/* Footer bottom: registry text */
.footer-bottom {
  overflow-wrap: anywhere;
}

/* Home CTA contact pills — prevent overflow on very small screens */
.home-final-contact-pill {
  overflow-wrap: anywhere;
  min-width: 0;
}

/* Responsive: mobile-specific line balance adjustments */
@media (max-width: 640px) {
  /* Tighten heading max-widths slightly for phone-sized columns */
  body.medical-landing .split-hero-title {
    max-width: 100%;
    font-size: clamp(1.9rem, 1.4rem + 4vw, 2.6rem);
  }

  body.medical-landing .booking-cta h2,
  body.medical-landing .medical-final-cta h2 {
    max-width: 100%;
    font-size: clamp(1.5rem, 1.1rem + 4.5vw, 2.2rem);
  }

  body.medical-landing .statement-title h2 {
    max-width: 100%;
  }

  /* Prevent FAQs from having single-word lines */
  .faq-question span {
    max-width: 100%;
  }

  /* Proof cards: full width on mobile */
  body:not(.b2b-landing) .proof-card p,
  .b2b-testimonial-card p {
    max-width: 100%;
  }

  /* Booking CTA: full-width readable text */
  .booking-cta-inner h2 {
    max-width: 100%;
  }

  .booking-cta-inner p {
    max-width: 100%;
  }

  /* Ensure no heading has lines that are only 1-2 words */
  h2, h3 {
    max-width: 100%;
  }
}

/* Responsive: tablet range */
@media (min-width: 641px) and (max-width: 900px) {
  body.medical-landing .split-hero-title {
    max-width: 24ch;
    font-size: clamp(2rem, 1.5rem + 2.5vw, 2.8rem);
  }

  body.medical-landing .booking-cta h2,
  body.medical-landing .medical-final-cta h2 {
    max-width: 26ch;
  }

  body.medical-landing .statement-title h2 {
    max-width: 20ch;
  }
}

/* Ensure split-hero-title on ALL split-hero pages gets line balance */
.split-hero-title {
  text-wrap: balance;
}

/* Ensure all section headers get balanced headings */
.section-header h2,
.ed-header h2 {
  text-wrap: balance;
}

/* Ensure no-risk section h2 is balanced */
.no-risk-section h2 {
  text-wrap: balance;
  max-width: 22ch;
}

/* Philosophy section */
.philosophy-title {
  text-wrap: balance;
  max-width: 20ch;
}

/* Stats section: stat labels */
.stat-label {
  text-wrap: pretty;
  overflow-wrap: break-word;
}

/* Credential cards */
.cred-copy h3 {
  text-wrap: balance;
}

.cred-copy p {
  text-wrap: pretty;
}

/* Work-meaning section */
body:not(.b2b-landing) .work-meaning-title {
  max-width: 22ch;
  margin-inline: auto;
  text-align: center;
}

/* Profile card descriptions */
.profile-content-minimal p {
  text-wrap: pretty;
}

/* Ensure long inline anchors never overflow */
a[href^="mailto"],
a[href^="tel"] {
  overflow-wrap: anywhere;
}

/* Very small screens: minimal padding safety net */
@media (max-width: 360px) {
  .container {
    padding-inline: 16px;
  }

  .home-final-contact-row {
    flex-direction: column;
    align-items: stretch;
  }

  h1, h2 {
    hyphens: auto;
  }
}


/* ===== B2B Landing: testimonials section ===== */
.b2b-testimonials-section {
  background: #f4f8fc;
  padding-block: clamp(56px, 6.5vw, 90px);
}

.b2b-proof-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.b2b-proof-grid .proof-card {
  background: #ffffff;
  border: 1px solid rgba(6, 43, 85, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(6, 43, 85, 0.07);
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.b2b-proof-grid .proof-card:hover {
  box-shadow: 0 8px 32px rgba(6, 43, 85, 0.12);
  transform: translateY(-3px);
}

.b2b-proof-grid .proof-card > p {
  color: #2a3f5a;
  font-size: 0.95rem;
  line-height: 1.62;
  margin-bottom: 20px;
  flex-grow: 1;
  text-wrap: pretty;
}

.b2b-proof-grid .proof-stars {
  color: #FFD21F;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
  margin-top: 0;
}

.b2b-proof-grid .proof-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.b2b-proof-grid .proof-avatar,
.b2b-proof-grid .proof-avatar-initials {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.b2b-proof-grid .proof-avatar {
  object-fit: cover;
  border: 2px solid rgba(106, 155, 200, 0.3);
}

.b2b-proof-grid .proof-avatar-initials {
  background: #d4e8f7;
  color: #062B55;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(6, 43, 85, 0.12);
  user-select: none;
}

.b2b-proof-grid .proof-person strong {
  color: #062B55;
  font-size: 0.88rem;
  font-weight: 700;
  display: block;
  line-height: 1.3;
}

.b2b-proof-grid .proof-person small {
  color: #7a94ab;
  font-size: 0.78rem;
  display: block;
  line-height: 1.3;
}

@media (max-width: 860px) {
  .b2b-proof-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
  }

  .b2b-proof-grid .proof-card {
    min-height: 0;
  }
}

/* ===== Consistent h2 sizes across all pages ===== */
body:not(.b2b-landing) .profiles-section h2 {
  font-size: clamp(1.9rem, 1.3rem + 1.6vw, 2.7rem);
}

body:not(.b2b-landing) .work-meaning-title {
  font-size: clamp(1.9rem, 1.3rem + 1.6vw, 2.7rem);
}

body:not(.b2b-landing) .credentials-header h2 {
  font-size: clamp(1.9rem, 1.3rem + 1.6vw, 2.7rem);
  white-space: normal;
}

body.b2b-landing:not(.medical-landing) h2 {
  font-size: clamp(1.9rem, 1.3rem + 1.6vw, 2.7rem);
}

body.medical-landing h2 {
  font-size: clamp(1.9rem, 1.3rem + 1.6vw, 2.7rem);
}

/* ===== Reduce whitespace: credentials and destinations-scroll ===== */
body:not(.b2b-landing) .credentials {
  padding-block: clamp(24px, 2.8vw, 40px) !important;
}

body:not(.b2b-landing) .credentials-header {
  margin-bottom: clamp(12px, 1.4vw, 18px);
}

body:not(.b2b-landing) .destinations-scroll {
  padding-block: clamp(24px, 2.8vw, 40px) !important;
}

/* ===== Reduce whitespace: empresas and medicos sections ===== */
body.b2b-landing .b2b-dark-statement,
body.b2b-landing .editorial-promise,
body.b2b-landing .ev-services,
body.b2b-landing .profiles-section,
body.b2b-landing .philosophy-section,
body.b2b-landing .b2b-faqs,
body.b2b-landing .calc-section,
body.b2b-landing .medical-process {
  padding-block: clamp(52px, 6vw, 88px);
}

/* ===== Home mobile alignment fixes ===== */
body:not(.b2b-landing) .benefit-item p {
  margin-inline: auto;
}

body:not(.b2b-landing) .benefit-item h3,
body:not(.b2b-landing) .benefit-item p {
  text-align: center;
}

@media (max-width: 560px) {
  body:not(.b2b-landing) .stat-item {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    text-align: center;
  }

  body:not(.b2b-landing) .stat-icon {
    justify-content: center;
  }

  body:not(.b2b-landing) .stat-copy {
    justify-items: center;
  }
}

@media (max-width: 900px) {
  body:not(.b2b-landing) .scroll-container {
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
  }

  body:not(.b2b-landing) .scroll-wrapper {
    align-items: stretch;
    width: max-content;
  }

  body:not(.b2b-landing) .scroll-title {
    align-self: center;
    min-width: min(78vw, 320px);
  }

  body:not(.b2b-landing) .dest-card {
    flex: 0 0 min(78vw, 330px);
    height: clamp(360px, 68vh, 460px);
    width: min(78vw, 330px);
  }
}

/* ===== Company intro editorial block ===== */
.company-intro-block {
  background: linear-gradient(180deg, #eaf6ff 0%, #ffffff 100%);
  padding-block: clamp(44px, 5vw, 68px);
  border-bottom: 1px solid rgba(6, 43, 85, 0.07);
}

.intro-block-inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(28px, 3.5vw, 48px);
  max-width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.intro-block-icon {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--sky-soft);
  border: 1.5px solid rgba(6, 43, 85, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-top: 4px;
}

.intro-block-icon svg {
  width: 28px;
  height: 28px;
}

.intro-block-text {
  flex: 1;
  min-width: 0;
}

.intro-block-text h2 {
  color: var(--primary);
  font-size: clamp(1.55rem, 1rem + 1.5vw, 2.3rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 26ch;
  margin-bottom: 16px;
}

.intro-block-text h2 em {
  color: var(--primary-light);
  font-style: normal;
}

.intro-block-text p {
  color: var(--text-secondary);
  font-size: clamp(0.97rem, 0.9rem + 0.26vw, 1.08rem);
  line-height: 1.72;
  text-wrap: pretty;
  max-width: 60ch;
  margin-bottom: 0;
}

.intro-block-quote {
  color: var(--primary) !important;
  font-weight: 600;
  margin-top: 14px !important;
  font-size: clamp(0.96rem, 0.9rem + 0.16vw, 1.04rem) !important;
  text-wrap: balance;
}

@media (max-width: 640px) {
  .intro-block-inner {
    flex-direction: column;
    gap: 20px;
  }

  .intro-block-icon {
    width: 56px;
    height: 56px;
    margin-top: 0;
  }

  .intro-block-icon svg {
    width: 24px;
    height: 24px;
  }

  .intro-block-text h2,
  .intro-block-text p {
    max-width: 100%;
  }
}

/* ===== Company integrated calculator block ===== */
body.b2b-landing:not(.medical-landing) .company-calc-feature {
  background:
    linear-gradient(180deg, rgba(239, 248, 255, 0.78) 0%, rgba(255, 255, 255, 0.92) 100%),
    url("../assets/images/profiles-sky-bg.webp") center center / cover no-repeat;
}

body.b2b-landing:not(.medical-landing) .company-calc-feature .container {
  max-width: min(1460px, calc(100% - clamp(32px, 5vw, 88px)));
  padding-inline: 0;
}

body.b2b-landing:not(.medical-landing) .company-calc-shell {
  display: grid;
  grid-template-columns: minmax(480px, 1.12fr) minmax(540px, 1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
  max-width: 100%;
  margin: 0 auto;
}

body.b2b-landing:not(.medical-landing) .company-calc-intro {
  max-width: 760px;
}

body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-text h2 {
  font-size: clamp(2.24rem, 1.56rem + 2vw, 3.45rem);
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 18ch;
}

body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-text h2 em {
  color: var(--primary-light);
}

body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-text p {
  font-size: clamp(1.04rem, 0.94rem + 0.26vw, 1.16rem);
  line-height: 1.76;
  max-width: 58ch;
}

body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-quote {
  font-size: clamp(1.08rem, 0.98rem + 0.22vw, 1.18rem) !important;
  margin-top: 22px !important;
  max-width: 58ch !important;
}

body.b2b-landing:not(.medical-landing) .company-calc-feature .calc-card {
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(16, 42, 76, 0.1);
  max-width: none;
}

body.b2b-landing:not(.medical-landing) .company-calc-feature .calc-header {
  padding: 34px 38px 0;
}

body.b2b-landing:not(.medical-landing) .company-calc-feature .calc-header h2 {
  font-size: clamp(2rem, 1.5rem + 1.5vw, 2.75rem);
  line-height: 1.08;
  text-wrap: balance;
}

body.b2b-landing:not(.medical-landing) .statement-title h2::after,
body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-text h2::after,
body.b2b-landing:not(.medical-landing) .ed-header h2::after,
body.b2b-landing:not(.medical-landing) .section-header h2::after,
body.b2b-landing:not(.medical-landing) .profiles-section h2::after,
body.b2b-landing:not(.medical-landing) .b2b-fit-section h2::after,
body.b2b-landing:not(.medical-landing) .booking-cta h2::after,
body.b2b-landing:not(.medical-landing) .b2b-faqs h2::after,
body.b2b-landing:not(.medical-landing) .contact h2::after {
  background: #E6BC00;
  content: "";
  display: block;
  height: 3px;
  margin-top: 12px;
  width: 42px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

body.b2b-landing:not(.medical-landing) .ed-header h2::after,
body.b2b-landing:not(.medical-landing) .profiles-section h2::after,
body.b2b-landing:not(.medical-landing) .booking-cta h2::after,
body.b2b-landing:not(.medical-landing) .b2b-faqs h2::after,
body.b2b-landing:not(.medical-landing) .contact h2::after {
  margin-inline: auto;
}

body.b2b-landing:not(.medical-landing) .statement-title h2::after,
body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-text h2::after,
body.b2b-landing:not(.medical-landing) .section-header h2::after,
body.b2b-landing:not(.medical-landing) .b2b-fit-section h2::after {
  margin-inline: 0;
}

body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-text h2::after {
  margin-top: 22px;
}

body.b2b-landing:not(.medical-landing) .btn {
  border-radius: 999px;
}

body.b2b-landing:not(.medical-landing) .profile-content .profile-btn {
  margin-top: auto;
}

body.b2b-landing:not(.medical-landing) .company-calc-feature .calc-body {
  padding: 28px 38px 34px;
}

body.b2b-landing:not(.medical-landing) .company-calc-feature .calc-results {
  gap: 0;
}

body.b2b-landing:not(.medical-landing) .company-calc-feature .calc-result-card {
  border-radius: 0;
  box-shadow: none;
  border-top: 1px solid rgba(6, 43, 85, 0.08);
  border-bottom: 1px solid rgba(6, 43, 85, 0.08);
}

body.b2b-landing:not(.medical-landing) .company-calc-feature .calc-result-card + .calc-result-card {
  border-left: 1px solid rgba(6, 43, 85, 0.08);
}

body.b2b-landing:not(.medical-landing) .company-calc-feature .calc-result-card.accent {
  border-color: rgba(6, 43, 85, 0.08);
}

/* ===== Medical integrated calculator block ===== */
body.medical-landing .medical-calc-feature {
  background:
    linear-gradient(180deg, rgba(239, 248, 255, 0.78) 0%, rgba(255, 255, 255, 0.92) 100%),
    url("../assets/images/profiles-sky-bg.webp") center center / cover no-repeat;
}

body.medical-landing .medical-calc-feature .container {
  max-width: min(1460px, calc(100% - clamp(32px, 5vw, 88px)));
  padding-inline: 0;
}

body.medical-landing .medical-calc-feature .company-calc-shell {
  display: grid;
  grid-template-columns: minmax(480px, 1.12fr) minmax(540px, 1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
  max-width: 100%;
  margin: 0 auto;
}

body.medical-landing .medical-calc-feature .company-calc-intro {
  max-width: 760px;
}

body.medical-landing .medical-calc-feature .company-calc-intro .intro-block-text h2 {
  font-size: clamp(2.24rem, 1.56rem + 2vw, 3.45rem);
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 18ch;
}

body.medical-landing .medical-calc-feature .company-calc-intro .intro-block-text h2::after {
  background: #E6BC00;
  content: "";
  display: block;
  height: 3px;
  margin-top: 22px;
  width: 42px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

body.medical-landing .medical-calc-feature .company-calc-intro .intro-block-text p {
  font-size: clamp(1.04rem, 0.94rem + 0.26vw, 1.16rem);
  line-height: 1.76;
  max-width: 58ch;
}

body.medical-landing .medical-calc-feature .company-calc-intro .intro-block-quote {
  font-size: clamp(1.08rem, 0.98rem + 0.22vw, 1.18rem) !important;
  margin-top: 22px !important;
  max-width: 58ch !important;
}

body.medical-landing .medical-calc-feature .calc-card {
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(16, 42, 76, 0.1);
  max-width: none;
}

body.medical-landing .medical-calc-feature .calc-header {
  padding: 34px 38px 0;
}

body.medical-landing .medical-calc-feature .calc-header h2 {
  font-size: clamp(2rem, 1.5rem + 1.5vw, 2.75rem);
  line-height: 1.08;
  text-wrap: balance;
}

body.medical-landing .medical-calc-feature .calc-body {
  padding: 28px 38px 34px;
}

body.medical-landing .medical-calc-feature .calc-results {
  gap: 0;
}

body.medical-landing .medical-calc-feature .calc-result-card {
  border-radius: 0;
  box-shadow: none;
  border-top: 1px solid rgba(6, 43, 85, 0.08);
  border-bottom: 1px solid rgba(6, 43, 85, 0.08);
}

body.medical-landing .medical-calc-feature .calc-result-card + .calc-result-card {
  border-left: 1px solid rgba(6, 43, 85, 0.08);
}

body.medical-landing .medical-calc-feature .calc-result-card.accent {
  border-color: rgba(6, 43, 85, 0.08);
}

/* ===== Smaller companies marquee ===== */
body.b2b-landing:not(.medical-landing) .b2b-premium-logos .marquee-item-box,
body.medical-landing .b2b-premium-logos .marquee-item-box {
  width: 196px !important;
  height: 84px !important;
  margin: 0 42px !important;
}

body.b2b-landing:not(.medical-landing) .b2b-premium-logos .marquee-item-box img,
body.medical-landing .b2b-premium-logos .marquee-item-box img {
  max-height: 72% !important;
}

@media (max-width: 1024px) {
  body.b2b-landing:not(.medical-landing) .company-calc-feature .container,
  body.medical-landing .medical-calc-feature .container {
    max-width: min(100% - 32px, 900px);
  }

  body.b2b-landing:not(.medical-landing) .company-calc-shell,
  body.medical-landing .medical-calc-feature .company-calc-shell {
    grid-template-columns: 1fr;
  }

  body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-text h2,
  body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-text p,
  body.medical-landing .medical-calc-feature .company-calc-intro .intro-block-text h2,
  body.medical-landing .medical-calc-feature .company-calc-intro .intro-block-text p {
    max-width: none;
  }
}

@media (max-width: 640px) {
  body.b2b-landing:not(.medical-landing) .company-calc-intro,
  body.medical-landing .medical-calc-feature .company-calc-intro {
    max-width: none;
  }

  body.b2b-landing:not(.medical-landing) .company-calc-feature .calc-header,
  body.medical-landing .medical-calc-feature .calc-header {
    padding: 26px 22px 0;
  }

  body.b2b-landing:not(.medical-landing) .company-calc-feature .calc-body,
  body.medical-landing .medical-calc-feature .calc-body {
    padding: 22px 22px 26px;
  }

  body.b2b-landing:not(.medical-landing) .company-calc-feature .calc-result-card + .calc-result-card,
  body.medical-landing .medical-calc-feature .calc-result-card + .calc-result-card {
    border-left: 0;
    border-top: 1px solid rgba(6, 43, 85, 0.08);
  }

  body.b2b-landing:not(.medical-landing) .b2b-premium-logos .marquee-item-box,
  body.medical-landing .b2b-premium-logos .marquee-item-box {
    width: 150px !important;
    height: 64px !important;
    margin: 0 28px !important;
  }
}

/* ===== Company model cards ===== */
body.b2b-landing:not(.medical-landing) .company-model-steps {
  background: linear-gradient(180deg, #eef7ff 0%, #ffffff 100%);
}

body.b2b-landing:not(.medical-landing) .company-model-header {
  text-align: center;
  margin-bottom: 32px;
}

body.b2b-landing:not(.medical-landing) .company-model-header p {
  max-width: 860px;
  margin-inline: auto;
}

body.b2b-landing:not(.medical-landing) .company-model-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.medical-landing .medical-process .company-model-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(30px, 4vh, 50px);
}

body.b2b-landing:not(.medical-landing) .company-model-card {
  background: #fff;
  border: 1px solid rgba(6, 43, 85, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(16, 42, 76, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 58px 24px 30px;
  position: relative;
  text-align: center;
}

body.medical-landing .medical-process .company-model-card {
  background: #fff;
  border: 1px solid rgba(6, 43, 85, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(16, 42, 76, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 58px 24px 30px;
  position: relative;
  text-align: center;
}

body.b2b-landing:not(.medical-landing) .company-model-copy {
  margin-block: auto;
}

body.medical-landing .medical-process .company-model-copy {
  margin-block: auto;
}

body.b2b-landing:not(.medical-landing) .company-model-number {
  align-items: center;
  background: var(--primary);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  height: 36px;
  justify-content: center;
  left: 18px;
  position: absolute;
  top: 18px;
  width: 36px;
}

body.medical-landing .medical-process .company-model-number {
  align-items: center;
  background: var(--primary);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  height: 36px;
  justify-content: center;
  left: 18px;
  position: absolute;
  top: 18px;
  width: 36px;
}

body.b2b-landing:not(.medical-landing) .company-model-icon {
  color: #2e75cf;
  display: inline-flex;
  margin: 26px auto 18px;
}

body.b2b-landing:not(.medical-landing) .company-model-icon--accent {
  color: #2e75cf;
}

body.b2b-landing:not(.medical-landing) .company-model-icon svg {
  fill: none;
  height: 44px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 44px;
}

body.b2b-landing:not(.medical-landing) .company-model-copy h3 {
  color: var(--primary);
  font-size: clamp(1.08rem, 0.96rem + 0.28vw, 1.24rem);
  line-height: 1.18;
  margin: 0 0 14px;
  text-wrap: balance;
}

body.medical-landing .medical-process .company-model-copy h3 {
  color: var(--primary);
  font-size: clamp(1.08rem, 0.96rem + 0.28vw, 1.24rem);
  line-height: 1.18;
  margin: 0 0 14px;
  text-wrap: balance;
}

body.b2b-landing:not(.medical-landing) .company-model-copy p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 27ch;
  text-wrap: pretty;
}

body.medical-landing .medical-process .company-model-copy p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 27ch;
  text-wrap: pretty;
}

body.b2b-landing:not(.medical-landing) .company-model-cta {
  margin-top: 28px;
  text-align: center;
}

@media (max-width: 1024px) {
  body.b2b-landing:not(.medical-landing) .company-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.medical-landing .medical-process .company-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.b2b-landing:not(.medical-landing) .company-model-copy p {
    max-width: none;
  }

  body.medical-landing .medical-process .company-model-copy p {
    max-width: none;
  }
}

/* ===== Company trust + testimonials ===== */
body.b2b-landing:not(.medical-landing) .company-trust-proof {
  background: linear-gradient(135deg, #07172b 0%, #062b55 58%, #0a3665 100%);
  padding-block: clamp(64px, 7vw, 104px);
}

body.b2b-landing:not(.medical-landing) .company-trust-proof .container {
  max-width: min(1540px, calc(100% - 16px));
}

body.b2b-landing:not(.medical-landing) .company-trust-proof-grid {
  display: grid;
  gap: clamp(34px, 4.5vw, 64px);
  grid-template-columns: minmax(0, 0.68fr) minmax(760px, 1.32fr);
  align-items: center;
}

@media (max-width: 760px) {
  body.b2b-landing:not(.medical-landing) .company-model-grid {
    grid-template-columns: 1fr;
  }

  body.medical-landing .medical-process .company-model-grid {
    grid-template-columns: 1fr;
  }
}

body.b2b-landing:not(.medical-landing) .company-trust-panel {
  color: #fff;
  justify-self: start;
  margin-left: clamp(-20px, -1.8vw, -8px);
  max-width: 680px;
  padding: 0;
  text-align: left;
}

body.b2b-landing:not(.medical-landing) .company-trust-panel h2 {
  color: #fff;
  line-height: 1.08;
  margin-bottom: 18px;
  max-width: 14ch;
}

body.b2b-landing:not(.medical-landing) .company-trust-panel h2::after {
  background: #E6BC00;
  content: "";
  display: block;
  height: 3px;
  margin-top: 12px;
  width: 42px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

body.b2b-landing:not(.medical-landing) .company-trust-panel p {
  color: rgba(255,255,255,.82);
  font-size: clamp(1.02rem, .94rem + .24vw, 1.15rem);
  line-height: 1.66;
  margin: 0;
  max-width: 56ch;
}

body.b2b-landing:not(.medical-landing) .company-trust-highlight {
  color: var(--accent) !important;
  font-weight: 700;
  margin-top: 18px !important;
}

body.b2b-landing:not(.medical-landing) .company-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 24px;
}

body.b2b-landing:not(.medical-landing) .company-trust-point {
  align-items: center;
  color: #fff;
  display: flex;
  gap: 10px;
  justify-content: center;
  min-height: 0;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  text-align: center;
}

body.b2b-landing:not(.medical-landing) .company-trust-point:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.18);
}

body.b2b-landing:not(.medical-landing) .company-trust-point-icon {
  color: #fff;
  display: inline-flex;
}

body.b2b-landing:not(.medical-landing) .company-trust-point-icon svg {
  fill: none;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 20px;
}

body.b2b-landing:not(.medical-landing) .company-trust-point span:last-child {
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.25;
}

body.b2b-landing:not(.medical-landing) .company-proof-cards {
  align-self: center;
  align-items: stretch;
  display: grid;
  gap: clamp(14px, 1.6vw, 18px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  max-width: 100%;
  width: 100%;
}

body.b2b-landing:not(.medical-landing) .company-proof-cards .b2b-testimonial-card {
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  min-height: 0 !important;
  padding: clamp(16px, 1.4vw, 22px) !important;
}

body.b2b-landing:not(.medical-landing) .company-proof-cards .b2b-testimonial-card p {
  color: #284260;
  font-size: clamp(.88rem, .82rem + .12vw, .96rem);
  line-height: 1.46;
  margin-bottom: 14px;
}

body.b2b-landing:not(.medical-landing) .company-proof-cards .b2b-testimonial-quote {
  color: var(--secondary);
  display: block;
  font-family: Georgia, serif;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 0.75;
  margin-bottom: 8px;
}

body.b2b-landing:not(.medical-landing) .company-proof-cards .b2b-testimonial-footer {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: auto;
  min-width: 0;
}

body.b2b-landing:not(.medical-landing) .company-proof-cards .testimonial-stars {
  color: var(--accent);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: .95rem;
  justify-content: flex-end;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

body.b2b-landing:not(.medical-landing) .company-proof-cards .b2b-testimonial-profile {
  flex: 1 1 auto;
  min-width: 0;
}

body.b2b-landing:not(.medical-landing) .company-proof-cards .testimonial-avatar--placeholder {
  align-items: center;
  background: linear-gradient(135deg, #eef3f9, #dbe7f3);
  border: 1px solid rgba(16, 42, 76, 0.08);
  color: var(--primary);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  justify-content: center;
}

body.b2b-landing:not(.medical-landing) .philosophy-section.sky-background {
  min-height: auto !important;
  overflow: hidden;
  padding-block: clamp(44px, 5vw, 72px) !important;
}

body.b2b-landing:not(.medical-landing) .philosophy-section .container {
  max-width: min(1280px, calc(100% - 48px));
}

body.b2b-landing:not(.medical-landing) .philosophy-split {
  gap: clamp(24px, 4vw, 56px);
  min-height: 0;
}

body.b2b-landing:not(.medical-landing) .philosophy-title {
  font-size: clamp(2.1rem, 1.35rem + 2.2vw, 3rem) !important;
  margin-bottom: 22px !important;
}

body.b2b-landing:not(.medical-landing) .philosophy-p {
  font-size: clamp(1rem, .9rem + .32vw, 1.16rem) !important;
  line-height: 1.48 !important;
  margin-bottom: 16px !important;
  max-width: 620px;
}

body.b2b-landing:not(.medical-landing) .philosophy-p.secondary {
  font-size: clamp(.96rem, .88rem + .24vw, 1.08rem) !important;
  line-height: 1.5 !important;
}

body.b2b-landing:not(.medical-landing) .philosophy-p[data-i18n="company_phil_p3"] {
  color: var(--text-secondary) !important;
  font-size: var(--company-copy) !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
  max-width: 58ch;
  opacity: 1 !important;
}

body.b2b-landing:not(.medical-landing) .philosophy-p[data-i18n="company_phil_p3"] .circle-blue {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border: 2px solid #0f5ea8;
  border-radius: 50%;
  vertical-align: middle;
}

body.b2b-landing:not(.medical-landing) .philosophy-visual {
  flex: 0 0 45%;
  margin-right: 0 !important;
}

body.b2b-landing:not(.medical-landing) .philosophy-text {
  flex: 1 1 0;
}

body.b2b-landing:not(.medical-landing) .airplane-img {
  width: min(108%, 620px) !important;
  transform: translateX(-6%) translateY(0) !important;
}

body.b2b-landing:not(.medical-landing) .philosophy-visual:hover .airplane-img {
  transform: translateX(-6%) translateY(0) !important;
}

body.b2b-landing:not(.medical-landing) .company-booking-inner {
  text-align: center;
}

body.b2b-landing:not(.medical-landing) .company-booking-inner h2,
body.b2b-landing:not(.medical-landing) .company-booking-inner p {
  text-align: center;
  margin-inline: auto;
}

@media (max-width: 1024px) {
  body.b2b-landing:not(.medical-landing) .company-trust-proof-grid {
    grid-template-columns: 1fr;
  }

  body.b2b-landing:not(.medical-landing) .company-trust-panel {
    margin-left: 0;
    max-width: 760px;
  }

  body.b2b-landing:not(.medical-landing) .company-proof-cards {
    grid-template-columns: 1fr;
  }

  body.b2b-landing:not(.medical-landing) .philosophy-split {
    flex-direction: column;
  }

  body.b2b-landing:not(.medical-landing) .philosophy-visual,
  body.b2b-landing:not(.medical-landing) .philosophy-text {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 640px) {
  body.b2b-landing:not(.medical-landing) .company-trust-point:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,.18);
  }
}

/* ===== Medical landing light redesign ===== */
body.medical-landing {
  background: #f7fbff;
}

body.medical-landing .medical-hero {
  background: #fff;
}

body.medical-landing .medical-hero .split-hero-content {
  padding-block: clamp(44px, 8vh, 92px);
}

body.medical-landing .medical-hero .split-hero-title {
  max-width: 9.8ch;
}

body.medical-landing .medical-hero .split-hero-desc {
  max-width: 62ch;
}

body.medical-landing .medical-hero .split-hero-image {
  background: #fff !important;
  overflow: visible;
}

body.medical-landing .medical-hero .split-hero-image::before,
body.medical-landing .medical-hero .split-hero-image::after {
  content: none !important;
  background: none !important;
}

body.medical-landing .medical-hero .split-hero-image img {
  height: auto;
  left: -18%;
  max-width: none;
  object-fit: contain;
  object-position: right bottom;
  position: absolute;
  right: auto;
  bottom: -3%;
  top: auto;
  width: min(136%, 1120px);
  min-height: 106%;
}

body.medical-landing .medical-program-section {
  background:
    linear-gradient(180deg, rgba(239,248,255,.76) 0%, rgba(255,255,255,.98) 100%),
    url("../assets/images/profiles-sky-bg.webp") center center / cover no-repeat;
  padding-block: clamp(42px, 5vw, 70px) !important;
}

body.medical-landing .medical-program-grid {
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
}

body.medical-landing .medical-program-title {
  display: block;
  max-width: 24rem;
}

body.medical-landing .medical-program-title .section-label {
  display: none;
}

body.medical-landing .medical-program-title h2 {
  color: var(--primary);
  font-size: clamp(2.05rem, 1.48rem + 1.8vw, 3.1rem);
  line-height: 1.06;
  text-wrap: balance;
}

body.medical-landing .medical-program-card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(16,42,76,.08);
  border-radius: 26px;
  box-shadow: 0 20px 48px rgba(16,42,76,.08);
  padding: clamp(24px, 2.8vw, 34px);
}

body.medical-landing .medical-program-card p {
  color: var(--text-secondary);
  line-height: 1.72;
}

body.medical-landing .medical-program-direct {
  margin: 0 auto;
  max-width: 980px;
  text-align: center;
}

body.medical-landing .medical-program-direct .medical-program-copy {
  margin: 0 auto 30px;
  max-width: 720px;
}

body.medical-landing .medical-program-direct .medical-program-copy h2 {
  color: var(--primary) !important;
  font-size: clamp(1.95rem, 1.28rem + 1.9vw, 3rem);
  line-height: 1.08;
  text-align: center;
}

body.medical-landing .medical-program-text {
  margin: 0 auto;
  max-width: 860px;
}

body.medical-landing .medical-program-text p {
  color: var(--text-secondary);
  font-size: clamp(1rem, .93rem + .22vw, 1.12rem);
  line-height: 1.7;
  margin: 0 auto 14px;
  text-align: center;
}

body.medical-landing .medical-program-text p:last-child {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0;
}

body.medical-landing .medical-process-light {
  background: #fff;
}

body.medical-landing .medical-process-light .section-header {
  max-width: 900px;
}

body.medical-landing .medical-process-light .section-header h2,
body.medical-landing .medical-process-light .section-header p {
  color: var(--primary);
}

body.medical-landing .medical-process-light .section-subtitle {
  color: var(--text-secondary) !important;
}

body.medical-landing .medical-process-cards {
  gap: 18px;
  margin-top: 28px;
}

body.medical-landing .medical-process-cards .timeline-step {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(16,42,76,.08);
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(16,42,76,.06);
  display: flex;
  flex-direction: column;
  padding: 22px 20px 24px;
  text-align: center;
}

body.medical-landing .medical-process-cards .timeline-step span {
  background: var(--primary);
  color: #fff;
  height: 34px;
  margin-bottom: 14px;
  width: 34px;
}

body.medical-landing .medical-process-cards .medical-step-icon {
  color: #2f73c9;
  margin-bottom: 14px;
}

body.medical-landing .medical-process-cards .medical-step-icon svg {
  height: 38px;
  width: 38px;
}

body.medical-landing .medical-process-cards .timeline-step h3 {
  font-size: clamp(1.05rem, .98rem + .24vw, 1.18rem);
  margin-bottom: 10px;
}

body.medical-landing .medical-process-cards .timeline-step p {
  font-size: .94rem;
  line-height: 1.56;
}

body.medical-landing .medical-process-cta {
  margin-top: 20px;
}

body.medical-landing .medical-process-cta .btn {
  min-width: 180px;
}

body.medical-landing .medical-specialties-light {
  background:
    linear-gradient(180deg, rgba(239,248,255,.72) 0%, rgba(255,255,255,.96) 100%),
    url("../assets/images/profiles-sky-bg.webp") center center / cover no-repeat;
  color: var(--primary);
}

body.medical-landing .medical-specialties-light .section-label,
body.medical-landing .medical-specialties-light h2,
body.medical-landing .medical-specialties-light .section-subtitle,
body.medical-landing .medical-specialties-light .medical-specialty-note p {
  color: var(--primary);
}

body.medical-landing .medical-specialties-light .section-subtitle,
body.medical-landing .medical-specialties-light .medical-specialty-note p {
  color: var(--text-secondary);
}

body.medical-landing .medical-specialties-light .specialty-grid {
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 30px;
}

body.medical-landing .medical-specialties-light .specialty-card {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(16,42,76,.08);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(16,42,76,.05);
  min-height: 126px;
  padding: 20px 16px;
}

body.medical-landing .medical-specialties-light .specialty-icon {
  color: #2f73c9;
}

body.medical-landing .medical-specialties-light .specialty-card span:last-child {
  color: var(--primary);
  font-size: .92rem;
  font-weight: 600;
}

body.medical-landing .medical-specialties-light .medical-specialty-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

body.medical-landing .medical-specialties-light .medical-specialty-note p {
  margin: 0;
}

body.medical-landing .medical-specialties-light .medical-specialty-note .btn {
  min-width: 176px;
}

body.medical-landing .medical-final-cta-light {
  background:
    linear-gradient(180deg, rgba(239,248,255,.76) 0%, rgba(255,255,255,.98) 100%),
    url("../assets/images/profiles-sky-bg.webp") center center / cover no-repeat;
}

body.medical-landing .medical-final-cta-light .medical-final-cta-inner {
  max-width: 1240px;
}

body.medical-landing .medical-final-cta-light h2 {
  color: var(--primary);
  font-size: clamp(1.9rem, 1.34rem + 1.5vw, 2.7rem);
  line-height: 1.12;
  margin-bottom: 14px;
  text-wrap: balance;
}

body.medical-landing .medical-final-cta-light p {
  color: var(--text-secondary);
  max-width: 780px;
}

body.medical-landing .medical-cta-action-bar {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(16,42,76,.08);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(16,42,76,.06);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 26px;
  padding: 10px;
}

body.medical-landing .medical-cta-action-bar .btn {
  font-size: .94rem;
  min-height: 48px;
  padding-inline: 18px;
}

body.medical-landing .medical-cta-action-bar .btn-outline {
  border-color: rgba(16,42,76,.12);
  color: var(--primary);
}

@media (max-width: 1100px) {
  body.medical-landing .medical-program-grid,
  body.medical-landing .medical-specialties-light .specialty-grid,
  body.medical-landing .medical-cta-action-bar {
    grid-template-columns: 1fr;
  }

  body.medical-landing .medical-specialties-light .specialty-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body.medical-landing .medical-program-grid {
    grid-template-columns: 1fr;
  }

  body.medical-landing .medical-specialties-light .specialty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.medical-landing .medical-specialties-light .medical-specialty-note {
    align-items: stretch;
    flex-direction: column;
  }
}

/* ===== Medical landing final visual corrections ===== */
body.medical-landing main > .medical-final-cta-light {
  background:
    linear-gradient(180deg, rgba(242, 249, 255, .22) 0%, rgba(255, 255, 255, .35) 100%),
    url("../assets/images/profiles-sky-bg.webp") center center / cover no-repeat !important;
  color: var(--primary);
}

body.medical-landing main > .medical-process-light {
  background: #fff !important;
  background-image: none !important;
  color: var(--primary);
}

body.medical-landing main > .medical-specialties-light {
  background: #eef7ff !important;
  background-image: none !important;
  color: var(--primary);
}

body.medical-landing .medical-process-light {
  background: #fff !important;
  background-image: none !important;
  min-height: auto !important;
  padding-block: clamp(54px, 6.2vw, 92px) clamp(72px, 7.6vw, 118px) !important;
}

body.medical-landing .medical-process-light .container {
  max-width: 1240px;
  padding-top: clamp(26px, 3.2vw, 44px) !important;
}

body.medical-landing .medical-process-light .section-header {
  margin: 0 auto 34px !important;
  max-width: 900px !important;
  text-align: center !important;
}

body.medical-landing .medical-process-cards .timeline-step::after {
  display: none !important;
}

body.medical-landing .medical-process-light .section-label {
  display: none !important;
}

body.medical-landing .medical-process-light h2 {
  color: var(--primary) !important;
  font-size: clamp(2rem, 1.34rem + 1.85vw, 2.95rem) !important;
  line-height: 1.08 !important;
  margin-bottom: 14px !important;
  text-wrap: balance;
}

body.medical-landing .medical-process-light .section-subtitle {
  color: var(--text-secondary) !important;
  font-size: 1.06rem !important;
  line-height: 1.66 !important;
  margin: 22px auto 0 !important;
  max-width: 860px !important;
}

body.medical-landing .medical-process-cards {
  display: grid !important;
  gap: 22px !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  margin: 24px auto 0 !important;
}

body.medical-landing .medical-process-cards .timeline-step {
  align-items: center !important;
  background: rgba(255, 255, 255, .96) !important;
  border: 1px solid rgba(6, 43, 85, .1) !important;
  border-radius: 24px !important;
  box-shadow: 0 16px 36px rgba(16, 42, 76, .08) !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 100% !important;
  padding: 24px 24px 28px !important;
  position: relative !important;
  text-align: center !important;
}

body.medical-landing .medical-process-cards .timeline-step > span {
  align-items: center !important;
  background: var(--primary) !important;
  border-radius: 999px !important;
  color: #fff !important;
  display: inline-flex !important;
  font-family: var(--font-heading);
  font-size: .95rem !important;
  font-weight: 800 !important;
  height: 36px !important;
  justify-content: center !important;
  left: 18px !important;
  margin: 0 !important;
  position: absolute !important;
  top: 18px !important;
  width: 36px !important;
}

body.medical-landing .medical-process-cards .medical-step-icon {
  color: #1f6fbd !important;
  display: inline-flex !important;
  margin: 26px auto 18px !important;
}

body.medical-landing .medical-process-cards .medical-step-icon svg {
  fill: none;
  height: 44px !important;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 44px !important;
}

body.medical-landing .medical-process-cards .timeline-step h3 {
  color: var(--primary) !important;
  font-size: clamp(1.16rem, 1rem + 0.38vw, 1.36rem) !important;
  line-height: 1.18 !important;
  margin: 0 0 14px !important;
  text-align: center !important;
  text-wrap: balance;
}

body.medical-landing .medical-process-cards .timeline-step p {
  color: var(--text-secondary) !important;
  font-size: .98rem !important;
  line-height: 1.58 !important;
  margin: 0 auto !important;
  text-align: center !important;
}

body.medical-landing .medical-process-cta {
  margin-top: 22px !important;
  text-align: center !important;
}

body.medical-landing .medical-process-cta .btn {
  min-width: 170px;
  padding: 13px 26px;
}

body.medical-landing .medical-specialties-light {
  background:
    linear-gradient(180deg, rgba(247, 251, 255, .94) 0%, rgba(238, 247, 255, .92) 100%),
    url("../assets/images/profiles-sky-bg.webp") center center / cover no-repeat;
  padding-block: clamp(42px, 5vw, 70px) !important;
}

body.medical-landing .medical-specialties-light .container {
  max-width: 1180px;
}

body.medical-landing .medical-specialties-light .section-header {
  margin: 0 auto 22px !important;
  max-width: 760px !important;
  text-align: center !important;
}

body.medical-landing .medical-specialties-light .section-label {
  display: none !important;
}

body.medical-landing .medical-specialties-light h2 {
  color: var(--primary) !important;
  font-size: clamp(1.65rem, 1.16rem + 1.35vw, 2.35rem) !important;
  line-height: 1.1 !important;
  margin-bottom: 8px !important;
  text-wrap: balance;
}

body.medical-landing .medical-specialties-light .section-subtitle {
  color: var(--text-secondary) !important;
  font-size: .98rem !important;
  line-height: 1.5 !important;
  margin: 8px auto 0 !important;
}

body.medical-landing .medical-specialties-light .specialty-grid {
  display: grid !important;
  gap: clamp(14px, 1.8vw, 20px) !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  margin: 26px auto 0 !important;
  max-width: 1040px;
}

body.medical-landing .medical-specialties-light .specialty-card {
  align-items: center !important;
  background: rgba(255, 255, 255, .86) !important;
  border: 1px solid rgba(16, 42, 76, .09) !important;
  border-radius: 16px !important;
  box-shadow: 0 14px 30px rgba(16, 42, 76, .07) !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 14px !important;
  justify-content: flex-start !important;
  min-height: 92px !important;
  padding: 18px 20px !important;
  text-align: left !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

body.medical-landing .medical-specialties-light .specialty-card:hover {
  border-color: rgba(46, 117, 207, .26) !important;
  box-shadow: 0 18px 38px rgba(16, 42, 76, .1) !important;
  transform: translateY(-3px);
}

body.medical-landing .medical-specialties-light .specialty-icon {
  align-items: center;
  background: rgba(46, 117, 207, .1);
  border: 1px solid rgba(46, 117, 207, .14);
  border-radius: 14px;
  color: #2e5f9f !important;
  display: inline-flex;
  flex: 0 0 auto;
  height: 64px;
  justify-content: center;
  margin-bottom: 0 !important;
  width: 64px;
}

body.medical-landing .medical-specialties-light .specialty-icon svg {
  fill: none;
  height: 42px !important;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 42px !important;
}

body.medical-landing .medical-specialties-light .specialty-icon svg * {
  fill: none !important;
  stroke: currentColor !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  stroke-width: 2 !important;
  vector-effect: non-scaling-stroke;
}

body.medical-landing .medical-specialties-light .specialty-card h3 {
  color: var(--primary) !important;
  font-size: clamp(.98rem, .9rem + .22vw, 1.08rem) !important;
  font-weight: 700 !important;
  line-height: 1.22 !important;
  margin: 0 !important;
  max-width: 20ch;
  text-align: left !important;
  text-wrap: balance;
}

body.medical-landing .medical-specialties-light .medical-specialty-note {
  align-items: center !important;
  display: flex !important;
  gap: 14px !important;
  justify-content: center !important;
  margin-top: clamp(30px, 3.6vw, 46px) !important;
  text-align: center !important;
}

body.medical-landing .medical-specialties-light .medical-specialty-note p {
  color: var(--text-secondary) !important;
  font-size: .92rem !important;
  margin: 0 !important;
  max-width: none !important;
}

body.medical-landing .medical-specialties-light .medical-specialty-note strong {
  color: var(--primary) !important;
}

body.medical-landing .medical-specialties-light .medical-specialty-note .btn {
  background: var(--primary) !important;
  color: #fff !important;
  justify-content: center;
  min-height: 42px;
  min-width: 170px;
  padding: 11px 20px;
  white-space: nowrap;
}

body.medical-landing .medical-final-cta-light {
  padding-block: clamp(38px, 4.8vw, 64px) !important;
}

body.medical-landing .medical-final-cta-light .container {
  max-width: 1280px;
}

body.medical-landing .medical-final-cta-light .medical-final-cta-inner {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  max-width: none !important;
  padding: 0 !important;
  text-align: center !important;
}

body.medical-landing .medical-final-cta-light h2 {
  color: var(--primary) !important;
  font-size: clamp(1.65rem, 1.14rem + 1.42vw, 2.45rem) !important;
  line-height: 1.13 !important;
  margin: 0 auto 12px !important;
  max-width: 820px;
  text-wrap: balance;
}

body.medical-landing .medical-final-cta-light p {
  color: var(--text-secondary) !important;
  font-size: clamp(.96rem, .9rem + .18vw, 1.05rem) !important;
  line-height: 1.5 !important;
  margin: 0 auto !important;
  max-width: 760px;
}

body.medical-landing .medical-cta-action-bar {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: grid !important;
  gap: 12px !important;
  grid-template-columns: repeat(2, minmax(220px, 1fr)) !important;
  margin: 24px auto 0 !important;
  max-width: 620px;
  padding: 0 !important;
}

body.medical-landing .medical-cta-action-bar .btn {
  border-radius: 999px !important;
  box-shadow: 0 10px 22px rgba(16, 42, 76, .08);
  font-size: .9rem !important;
  justify-content: center;
  min-height: 48px !important;
  padding: 12px 16px !important;
  white-space: nowrap;
}

body.medical-landing .medical-cta-action-bar .btn-primary {
  background: var(--primary) !important;
  color: #fff !important;
}

body.medical-landing .medical-cta-action-bar .btn-dark {
  background: #fff !important;
  border: 1px solid rgba(43, 181, 96, .24) !important;
  color: #127d40 !important;
}

body.medical-landing .medical-cta-action-bar .btn-outline {
  background: #fff !important;
  border: 1px solid rgba(16, 42, 76, .1) !important;
  color: var(--primary) !important;
}

/* Medical merged proof section: CTA + testimonials in company-style split layout */
body.medical-landing .medical-proof-merged {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(242, 249, 255, .22) 0%, rgba(255, 255, 255, .35) 100%),
    url("../assets/images/profiles-sky-bg.webp") center center / cover no-repeat !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(600px, 65vh, 860px);
  padding-block: clamp(52px, 6vw, 88px) !important;
}

body.medical-landing .medical-proof-merged .container {
  max-width: min(1540px, calc(100% - 16px));
  padding-left: 0;
  width: 100%;
}

body.medical-landing .medical-proof-merged-grid {
  align-items: center;
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.58fr);
  margin-inline: auto;
}

body.medical-landing .medical-proof-panel {
  color: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: start;
  margin-left: 0;
  max-width: 640px;
  padding: 0;
  text-align: left;
}

body.medical-landing .medical-proof-panel h2 {
  color: var(--primary);
  line-height: 1.08;
  margin-bottom: 18px;
}

body.medical-landing .medical-proof-panel h2::after {
  background: var(--accent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  content: "";
  display: block;
  height: 3px;
  margin-top: 12px;
  width: 42px;
}

body.medical-landing .medical-proof-panel p {
  color: var(--text-secondary);
  font-size: clamp(1.06rem, .96rem + .28vw, 1.18rem);
  line-height: 1.6;
  margin: 0;
  max-width: 56ch;
}

body.medical-landing .medical-proof-panel .medical-cta-action-bar {
  justify-content: start;
  margin: 16px 0 0 !important;
  max-width: 520px;
}

body.medical-landing .medical-proof-cards {
  align-items: stretch;
  align-self: center;
  display: grid;
  gap: clamp(14px, 1.6vw, 18px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  max-width: 100%;
  width: 100%;
}

body.medical-landing .medical-proof-cards .b2b-testimonial-card {
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(16, 42, 76, 0.12);
  min-height: 0 !important;
  padding: clamp(20px, 1.8vw, 26px) !important;
}

body.medical-landing .medical-proof-cards .b2b-testimonial-quote {
  color: var(--secondary);
  display: block;
  font-family: Georgia, serif;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 0.75;
  margin-bottom: 8px;
}

body.medical-landing .medical-proof-cards .b2b-testimonial-card p {
  color: #284260;
  font-size: clamp(.95rem, .88rem + .14vw, 1.02rem);
  line-height: 1.52;
  margin-bottom: 20px;
}

body.medical-landing .medical-proof-cards .b2b-testimonial-footer {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: auto;
  min-width: 0;
}

body.medical-landing .medical-proof-cards .testimonial-stars {
  color: var(--accent);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: .95rem;
  justify-content: flex-end;
  line-height: 1;
  white-space: nowrap;
}

body.medical-landing .medical-proof-cards .b2b-testimonial-profile {
  flex: 1 1 auto;
  min-width: 0;
}

body.medical-landing .medical-proof-cards .testimonial-avatar--placeholder {
  align-items: center;
  background: linear-gradient(135deg, #eef3f9, #dbe7f3);
  border: 1px solid rgba(16, 42, 76, 0.08);
  color: var(--primary);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  justify-content: center;
}

@media (max-width: 1100px) {
  body.medical-landing .medical-proof-merged-grid {
    grid-template-columns: 1fr;
  }

  body.medical-landing .medical-proof-panel {
    margin-left: 0;
    max-width: 100%;
  }

  body.medical-landing .medical-process-cards {
    grid-template-columns: 1fr !important;
  }

  body.medical-landing .medical-specialties-light .specialty-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  body.medical-landing .medical-cta-action-bar {
    grid-template-columns: 1fr !important;
    max-width: 560px;
  }
}

@media (max-width: 700px) {
  body.medical-landing .medical-proof-merged-grid {
    grid-template-columns: 1fr;
  }

  body.medical-landing .medical-proof-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  body.medical-landing .medical-proof-merged-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  body.medical-landing .medical-process-light,
  body.medical-landing .medical-specialties-light,
  body.medical-landing .medical-final-cta-light {
    padding-block: 38px !important;
  }

  body.medical-landing .medical-process-cards .timeline-step {
    min-height: 0 !important;
  }

  body.medical-landing .medical-specialties-light .specialty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.medical-landing .medical-specialties-light .medical-specialty-note {
    align-items: stretch !important;
    flex-direction: column !important;
  }

  body.medical-landing .medical-cta-action-bar .btn {
    white-space: normal;
  }
}

@media (max-width: 420px) {
  body.medical-landing .medical-specialties-light .specialty-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ===== Hero viewport fit fix (company + medical) ===== */
body.b2b-landing:not(.medical-landing) .split-hero,
body.medical-landing .medical-hero {
  min-height: calc(100vh - 88px) !important;
}

body.b2b-landing:not(.medical-landing) .split-hero-content,
body.medical-landing .medical-hero .split-hero-content {
  padding-block: clamp(24px, 4.8vh, 56px) !important;
}

/* Final medical section background overrides */
body.medical-landing main > section.medical-process-light {
  background: #fff !important;
  background-image: none !important;
}

body.medical-landing main > section.medical-specialties-light {
  background: #eef7ff !important;
  background-image: none !important;
}

/* ===== Medical hero + spacing final tighten ===== */
body.medical-landing .medical-hero {
  padding-top: 0 !important;
  min-height: 100vh !important;
  height: 100vh !important;
}

body.medical-landing .medical-hero .split-hero-content {
  padding-top: 88px !important;
  padding-bottom: 18px !important;
}

body.medical-landing .medical-hero .split-hero-image {
  align-self: stretch;
  min-height: 0 !important;
}

body.medical-landing .medical-hero .split-hero-image img {
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
}

body.medical-landing .medical-program-section {
  background-position: center top !important;
  padding-block: 12px 20px !important;
}

body.medical-landing .medical-program-direct .medical-program-copy {
  margin: -10px auto 52px !important;
}

body.medical-landing .medical-process-light {
  padding-top: 18px !important;
}

@media (max-width: 767px) {
  body.medical-landing .medical-hero {
    min-height: 100svh !important;
    height: 100svh !important;
  }
}

body.medical-landing .medical-final-cta-light .medical-final-cta-inner {
  max-width: 960px;
  margin-left: 0;
  margin-right: auto;
}

body.b2b-landing .b2b-faqs .section-header,
body.b2b-landing .b2b-faqs .faq-list,
body.b2b-landing .b2b-faqs .faq-question,
body.b2b-landing .b2b-faqs .faq-answer p {
  text-align: center;
}

body.b2b-landing .b2b-faqs .faq-question {
  justify-content: center;
  gap: 12px;
}

body.b2b-landing .b2b-faqs .faq-question svg {
  margin-left: 0;
}

body.b2b-landing .b2b-faqs .section-header h2::after {
  background: #E6BC00;
  content: "";
  display: block;
  height: 3px;
  margin: 12px auto 0;
  width: 42px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

/* ===== Global consistency lock (home + empresas + medicos + contacto) ===== */
:root {
  --title-h1-consistent: clamp(2.2rem, 1.7rem + 2.8vw, 3.9rem);
  --title-h2-consistent: clamp(1.7rem, 1.28rem + 1.7vw, 2.7rem);
  --text-p-consistent: clamp(1rem, 0.96rem + 0.22vw, 1.12rem);
  --btn-radius-consistent: 999px;
  --card-radius-consistent: 24px;
}

h1 {
  font-size: var(--title-h1-consistent) !important;
  line-height: 1.08;
}

h2 {
  font-size: var(--title-h2-consistent) !important;
  line-height: 1.12;
}

p,
li {
  font-size: var(--text-p-consistent);
  line-height: 1.65;
}

.btn,
button.btn,
a.btn {
  border-radius: var(--btn-radius-consistent) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  min-height: 50px;
  padding: 14px 30px !important;
}

.profile-card,
.profile-card-minimal,
.profile-card .profile-image,
.profile-card-minimal .profile-image,
.profile-card .profile-content,
.profile-card-minimal .profile-content,
.profile-card .profile-btn,
.profile-card-minimal .profile-btn {
  border-radius: var(--card-radius-consistent);
}

.profile-card,
.profile-card-minimal,
.calc-card,
.calc-result-card,
.srv-card,
.dest-card,
.b2b-testimonial-card,
.proof-card,
.cred-card,
.specialty-card,
.timeline-step {
  border-radius: var(--card-radius-consistent) !important;
}

body.b2b-landing:not(.medical-landing) .split-hero,
body.medical-landing .medical-hero {
  min-height: calc(100vh - 88px) !important;
}

body.b2b-landing:not(.medical-landing) .split-hero-image,
body.medical-landing .medical-hero .split-hero-image {
  min-height: clamp(420px, 58vh, 760px) !important;
}

body.b2b-landing:not(.medical-landing) .split-hero-image img,
body.medical-landing .medical-hero .split-hero-image img {
  width: 100%;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

body.b2b-landing:not(.medical-landing) .split-hero-title,
body.medical-landing .split-hero-title {
  font-size: var(--title-h1-consistent) !important;
  line-height: 1.08 !important;
}

body.b2b-landing:not(.medical-landing) .split-hero-desc,
body.medical-landing .split-hero-desc {
  font-size: var(--text-p-consistent) !important;
  line-height: 1.65 !important;
}

/* Requested copy/layout tweaks */
body.medical-landing .medical-hero .split-hero-kicker,
body.b2b-landing:not(.medical-landing) .split-hero-kicker {
  max-width: none !important;
  overflow-wrap: normal !important;
  white-space: nowrap !important;
}

body.medical-landing .medical-specialties-light .specialty-grid {
  margin-top: clamp(36px, 4.2vw, 52px) !important;
}

@media (max-width: 900px) {
  body.medical-landing .medical-hero .split-hero-kicker,
  body.b2b-landing:not(.medical-landing) .split-hero-kicker {
    white-space: normal !important;
  }
}

body.medical-landing .medical-plane-divider {
  height: 0;
  position: relative;
  z-index: 8;
  overflow: visible;
  pointer-events: none;
}

body.medical-landing .medical-plane-divider img {
  left: clamp(-320px, -22vw, -170px);
  position: absolute;
  top: clamp(-1460px, -110vw, -1080px);
  width: clamp(728px, 78vw, 1456px);
  max-width: none;
  height: auto;
  opacity: 1;
  transform: rotate(30deg);
  transform-origin: left center;
}

body.medical-landing .medical-program-direct {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: clamp(120px, 10vw, 220px) !important;
  padding-right: clamp(12px, 2vw, 28px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  transform: none !important;
}

body.medical-landing .medical-program-direct .medical-program-copy,
body.medical-landing .medical-program-direct .medical-program-text {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 62ch !important;
  text-align: right !important;
}

body.medical-landing .medical-program-direct .medical-program-copy h2 {
  color: var(--primary) !important;
  font-size: clamp(2rem, 1.4rem + 2.1vw, 3.2rem) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  position: relative;
}

body.medical-landing .medical-program-direct .medical-program-copy h2::before {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  background: var(--accent);
  margin: 0 0 14px auto;
  border-radius: 999px;
}

body.medical-landing .medical-program-direct .medical-program-text p {
  text-align: right !important;
}

body.medical-landing .medical-program-direct .medical-program-text p:last-child {
  font-weight: 700 !important;
}

@media (max-width: 900px) {
  body.medical-landing .medical-plane-divider {
    height: 0;
  }

  body.medical-landing .medical-plane-divider img {
    left: 50%;
    max-width: none;
    top: -90px;
    transform: translateX(-50%) rotate(24deg);
    width: clamp(260px, 72vw, 520px);
  }

  body.medical-landing .medical-program-direct {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    transform: none !important;
  }

  body.medical-landing .medical-program-direct .medical-program-copy,
  body.medical-landing .medical-program-direct .medical-program-text {
    max-width: 100% !important;
  }
}

/* Final lock: medical hero must match company hero viewport behavior */
body.b2b-landing:not(.medical-landing) .split-hero,
body.medical-landing .medical-hero {
  min-height: 100vh !important;
  height: 100vh !important;
  padding-top: 0 !important;
}

body.b2b-landing:not(.medical-landing) .split-hero-content,
body.medical-landing .medical-hero .split-hero-content {
  min-height: 100vh !important;
  padding-top: 88px !important;
  padding-bottom: 28px !important;
}

body.b2b-landing:not(.medical-landing) .split-hero-image,
body.medical-landing .medical-hero .split-hero-image {
  align-self: stretch !important;
  min-height: 100vh !important;
  height: 100vh !important;
}

body.b2b-landing:not(.medical-landing) .split-hero-image img,
body.medical-landing .medical-hero .split-hero-image img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  left: 0 !important;
  top: 0 !important;
  position: relative !important;
}

@media (max-width: 900px) {
  body.b2b-landing:not(.medical-landing) .split-hero,
  body.medical-landing .medical-hero,
  body.b2b-landing:not(.medical-landing) .split-hero-content,
  body.medical-landing .medical-hero .split-hero-content,
  body.b2b-landing:not(.medical-landing) .split-hero-image,
  body.medical-landing .medical-hero .split-hero-image {
    min-height: 100svh !important;
    height: 100svh !important;
  }
}

/* Keep company hero PNG visually superposed (not clipped) */
body.b2b-landing:not(.medical-landing) .split-hero-image {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible !important;
}

body.b2b-landing:not(.medical-landing) .split-hero-image img.company-hero-photo {
  position: relative !important;
  z-index: 2;
  width: min(118%, 980px) !important;
  max-width: none !important;
  height: auto !important;
  max-height: calc(100svh - 96px) !important;
  right: 0 !important;
  transform: none !important;
  object-fit: contain !important;
  object-position: right bottom !important;
}

body.b2b-landing:not(.medical-landing) .split-hero {
  overflow: visible !important;
}

body.b2b-landing:not(.medical-landing) .split-hero-content {
  position: relative;
  z-index: 3 !important;
}

body.b2b-landing:not(.medical-landing) .split-hero-image {
  position: relative;
  z-index: 2 !important;
  overflow: visible !important;
}

/* Medical program section: background image (replaces airplane overlay) */
body.medical-landing .medical-program-section {
  background: url("../assets/images/medical-program-bg.webp") center 20% / cover no-repeat !important;
}

body.medical-landing .medical-plane-divider {
  display: none !important;
}

/* Final lock for "Tus pacientes..." block */
body.medical-landing .medical-program-section .container {
  display: flex !important;
  justify-content: flex-end !important;
}

body.medical-landing .medical-program-section .medical-program-direct {
  width: min(62ch, 100%) !important;
  max-width: 62ch !important;
  margin: 0 !important;
  padding: 0 clamp(0px, 0.2vw, 4px) 0 0 !important;
  transform: translateX(clamp(84px, 8vw, 170px)) !important;
  align-items: stretch !important;
}

body.medical-landing .medical-program-section .medical-program-copy,
body.medical-landing .medical-program-section .medical-program-text {
  margin: 0 !important;
  width: 100% !important;
  max-width: 62ch !important;
  text-align: right !important;
}

body.medical-landing .medical-program-section .medical-program-copy h2 {
  width: 100% !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  text-align: right !important;
}

body.medical-landing .medical-program-section .medical-program-text p:first-child {
  margin-top: 14px !important;
}

body.medical-landing .medical-program-section .medical-program-copy .medical-program-title-line {
  display: block;
  width: 100%;
  text-align: right !important;
  white-space: nowrap;
}

body.medical-landing .medical-program-section .medical-program-text p {
  width: 100% !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  text-align: right !important;
}

body.medical-landing .medical-program-section .medical-program-text p:last-child {
  font-weight: 700 !important;
}

@media (max-width: 900px) {
  body.medical-landing .medical-program-section .container {
    display: block !important;
  }

  body.medical-landing .medical-program-section .medical-program-direct,
  body.medical-landing .medical-program-section .medical-program-copy,
  body.medical-landing .medical-program-section .medical-program-text {
    max-width: 100% !important;
    text-align: left !important;
    transform: none !important;
  }

body.medical-landing .medical-program-section .medical-program-copy h2,
body.medical-landing .medical-program-section .medical-program-text p {
    text-align: left !important;
  }

  body.medical-landing .medical-program-section .medical-program-copy .medical-program-title-line {
    white-space: normal;
  }
}

/* Home hero titles: same size across slide 1 (h1) and slide 2/3 (h2) */
.hero .hero-text-slide h1.hero-title,
.hero .hero-text-slide h2.hero-title {
  font-size: clamp(2.95rem, 5.7vw, 5rem) !important;
  line-height: 1.06 !important;
  margin-top: 0 !important;
  margin-bottom: clamp(18px, 2.2vw, 28px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: min(1120px, 94vw) !important;
  text-align: center !important;
}

body.b2b-landing:not(.medical-landing) .split-hero-title,
body.medical-landing .split-hero-title {
  font-size: clamp(2.2rem, 1.7rem + 2.8vw, 3.9rem) !important;
}

.hero-highlight-blue {
  color: #1f6fbd !important;
}

.medical-hero-line-nowrap {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .medical-hero-line-nowrap {
    white-space: normal;
  }
}

body.b2b-landing:not(.medical-landing) .split-hero-title .company-hero-line {
  display: block;
  white-space: nowrap;
}

@media (max-width: 900px) {
  body.b2b-landing:not(.medical-landing) .split-hero-title .company-hero-line {
    white-space: normal;
  }
}

/* Lower paragraph + CTA block under hero title (Company + Medical) */
body.b2b-landing:not(.medical-landing) .split-hero-copy,
body.medical-landing .split-hero-copy {
  margin-top: clamp(16px, 2.2vw, 30px) !important;
}

body.b2b-landing:not(.medical-landing) .hero-action-row,
body.medical-landing .hero-action-row {
  margin-top: clamp(18px, 2.4vw, 34px) !important;
}

.hero .hero-text-slide .hero-desc {
  margin-bottom: clamp(28px, 3.4vw, 44px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: min(1040px, 94vw) !important;
  text-align: center !important;
}

.hero .hero-cta-container {
  margin-top: clamp(66px, 9.6vh, 128px) !important;
}

.hero .hero-text-container {
  min-height: clamp(360px, 42vh, 500px) !important;
  align-items: flex-start !important;
}

.hero .hero-text-slide {
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  justify-content: flex-start !important;
  padding-top: clamp(10px, 1.8vh, 24px) !important;
}

/* ===============================
   Responsive Stability Layer
   =============================== */
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  min-width: 0;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4.5vw, 64px);
}

@media (min-width: 1537px) {
  .container {
    max-width: 1320px;
  }
}

section {
  scroll-margin-top: 96px;
}

h1,
.hero-title,
.split-hero-title {
  line-height: 1.08;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h2,
h3,
h4,
p,
li,
a,
button {
  overflow-wrap: break-word;
}

p {
  line-height: 1.6;
}

.btn {
  white-space: normal;
}

[class*="grid"],
[class*="row"],
[class*="shell"],
[class*="layout"],
[class*="content"] {
  min-width: 0;
}

/* Desktop + laptop baseline */
.hero,
.split-hero,
.ticket-shell,
.company-calc-shell,
.medical-program-direct,
.medical-proof-merged-grid {
  width: 100%;
  max-width: 100%;
}

/* 901px - 1200px */
@media (max-width: 1200px) {
  .container {
    padding-inline: clamp(24px, 4.2vw, 48px);
  }

  .hero .hero-text-slide h1.hero-title,
  .hero .hero-text-slide h2.hero-title {
    font-size: clamp(2.2rem, 4.7vw, 3.9rem) !important;
    max-width: min(980px, 100%) !important;
  }

  .hero .hero-text-slide .hero-desc {
    max-width: min(860px, 100%) !important;
  }

  body.b2b-landing:not(.medical-landing) .split-hero,
  body.medical-landing .medical-hero {
    min-height: auto !important;
    height: auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-content,
  body.medical-landing .medical-hero .split-hero-content,
  body.b2b-landing:not(.medical-landing) .split-hero-image,
  body.medical-landing .medical-hero .split-hero-image {
    min-height: auto !important;
    height: auto !important;
  }

  body.medical-landing .medical-program-section .medical-program-direct {
    transform: translateX(clamp(20px, 3vw, 56px)) !important;
  }
}

/* Tablet 641px - 900px */
@media (max-width: 900px) {
  .container {
    padding-inline: 32px;
  }

  body.b2b-landing:not(.medical-landing) .split-hero,
  body.medical-landing .medical-hero {
    grid-template-columns: 1fr !important;
    padding-top: 96px !important;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-image,
  body.medical-landing .medical-hero .split-hero-image {
    order: 2;
    min-height: clamp(280px, 42vw, 460px) !important;
    overflow: hidden !important;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-content,
  body.medical-landing .medical-hero .split-hero-content {
    order: 1;
    padding-top: 0 !important;
    padding-inline: 0 !important;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-image img.company-hero-photo,
  body.medical-landing .medical-hero .split-hero-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  body.medical-landing .medical-program-section .medical-program-direct {
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .form-progress {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Mobile up to 640px */
@media (max-width: 640px) {
  .container {
    padding-inline: 20px;
  }

  .header .container {
    padding-inline: 16px;
  }

  .hero .hero-text-slide h1.hero-title,
  .hero .hero-text-slide h2.hero-title {
    font-size: clamp(1.7rem, 9vw, 2.4rem) !important;
    line-height: 1.12 !important;
    max-width: 100% !important;
  }

  .hero .hero-text-slide .hero-desc {
    font-size: clamp(0.98rem, 3.8vw, 1.08rem) !important;
    line-height: 1.58 !important;
    max-width: 100% !important;
  }

  .hero .hero-cta-container {
    margin-top: clamp(28px, 6vh, 56px) !important;
  }

  .hero .hero-text-container {
    min-height: auto !important;
  }

  .mobile-nav,
  .mobile-nav a {
    max-width: 100%;
  }

  .services-grid,
  .clients-grid,
  .profiles-grid,
  .srv-grid,
  .b2b-testimonial-grid,
  .company-model-grid,
  .specialty-grid,
  .destinations-grid,
  .ig-grid,
  .footer-grid,
  .contact-grid,
  .ticket-shell {
    grid-template-columns: 1fr !important;
  }

  .split-hero-copy,
  .split-hero-desc,
  .medical-program-text,
  .medical-specialty-note p {
    max-width: 100% !important;
  }

  .ticket-shell,
  .ticket-stub,
  .ticket-form,
  .boarding-strip {
    width: 100%;
    max-width: 100%;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .container {
    padding-inline: 18px;
  }

  .btn,
  .btn-primary,
  .btn-dark,
  .btn-outline,
  .hero-cta,
  .nav-cta {
    min-height: 46px;
    width: auto;
    max-width: 100%;
  }

  .hero .hero-text-slide h1.hero-title,
  .hero .hero-text-slide h2.hero-title {
    font-size: clamp(1.55rem, 9.4vw, 2.1rem) !important;
  }
}

/* Final lock: medical marquee must match company sizing and spacing */
body.medical-landing .trust-banner.b2b-premium-logos {
  padding-block: clamp(18px, 2.8vh, 34px) !important;
  margin-bottom: 0 !important;
}

body.medical-landing .b2b-premium-logos .marquee-item-box {
  width: 196px !important;
  height: 84px !important;
  margin: 0 42px !important;
}

body.medical-landing .b2b-premium-logos .marquee-item-box img {
  max-height: 72% !important;
}

body.medical-landing .medical-program-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

@media (min-width: 1100px) {
  body.medical-landing .trust-banner {
    min-height: auto !important;
    scroll-snap-align: none !important;
  }

  body.medical-landing .medical-program-section {
    align-items: center !important;
  }
}

@media (max-width: 640px) {
  body.medical-landing .b2b-premium-logos .marquee-item-box {
    width: 150px !important;
    height: 64px !important;
    margin: 0 28px !important;
  }
}

/* Mobile readability pass: empresas hero as soft background image */
@media (max-width: 767px) {
  body.b2b-landing:not(.medical-landing) .split-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: clamp(520px, 78svh, 700px) !important;
    align-items: flex-end;
    padding-top: 92px !important;
    padding-bottom: 28px !important;
  }

  body.b2b-landing:not(.medical-landing) .split-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../assets/images/empresas-hero.webp?v=20260518a") center 22% / cover no-repeat;
    filter: blur(5px) saturate(0.9);
    transform: scale(1.08);
    z-index: -2;
  }

  body.b2b-landing:not(.medical-landing) .split-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(6, 18, 38, 0.42) 0%, rgba(6, 18, 38, 0.72) 58%, rgba(6, 18, 38, 0.82) 100%);
    z-index: -1;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-image {
    display: none !important;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-content {
    width: min(100%, 680px);
    margin: 0 auto;
    padding: clamp(18px, 4vw, 26px);
    border-radius: 18px;
    background: rgba(7, 20, 44, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    box-shadow: 0 16px 42px rgba(0, 10, 30, 0.2);
  }

  body.b2b-landing:not(.medical-landing) .split-hero-kicker,
  body.b2b-landing:not(.medical-landing) .split-hero-title,
  body.b2b-landing:not(.medical-landing) .split-hero-desc {
    color: #f6f9ff !important;
    text-shadow: 0 2px 14px rgba(4, 12, 26, 0.55);
  }

  body.b2b-landing:not(.medical-landing) .split-hero-title {
    font-size: clamp(1.9rem, 8vw, 2.7rem) !important;
    line-height: 1.12 !important;
    margin-bottom: 14px;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-desc {
    font-size: clamp(1rem, 3.9vw, 1.08rem) !important;
    line-height: 1.62 !important;
  }
}

/* Medical page: disable snap-lock behavior that causes intermittent scroll stalls */
@media (min-width: 1100px) {
  @supports selector(html:has(body.medical-landing)) {
    html:has(body.medical-landing) {
      scroll-snap-type: none !important;
    }
  }

  body.medical-landing main > section {
    scroll-snap-align: none !important;
  }
}

/* Company page: disable snap-lock behavior to improve nav/scroll smoothness */
@media (min-width: 1100px) {
  @supports selector(html:has(body.b2b-landing:not(.medical-landing))) {
    html:has(body.b2b-landing:not(.medical-landing)) {
      scroll-snap-type: none !important;
    }
  }

  body.b2b-landing:not(.medical-landing) main > section {
    scroll-snap-align: none !important;
  }
}

/* ==========================================
   Responsive Stabilization Pass (Mac + Mobile)
   ========================================== */

:root {
  --resp-section-pad-desktop: clamp(56px, 7vh, 92px);
  --resp-section-pad-mobile: clamp(38px, 7.5vw, 60px);
}

/* Mac / laptop tuning */
@media (min-width: 1024px) and (max-width: 1728px) {
  .container {
    max-width: min(1280px, calc(100vw - 56px));
  }

  body.b2b-landing:not(.medical-landing) .split-hero,
  body.medical-landing .medical-hero {
    min-height: clamp(680px, 82vh, 860px) !important;
    height: auto !important;
  }

  body.b2b-landing:not(.medical-landing) main > section,
  body.medical-landing main > section,
  body:not(.b2b-landing) main > section {
    padding-block: var(--resp-section-pad-desktop) !important;
  }

  body.b2b-landing:not(.medical-landing) .company-proof-cards,
  body.medical-landing .medical-proof-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 1.4vw, 20px);
  }
}

/* Short-height Macs */
@media (min-width: 1024px) and (max-height: 900px) {
  .header {
    height: 74px;
  }

  body.b2b-landing:not(.medical-landing) .split-hero,
  body.medical-landing .medical-hero {
    min-height: clamp(620px, 78vh, 760px) !important;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-title,
  body.medical-landing .split-hero-title,
  body:not(.b2b-landing) .hero-title {
    font-size: clamp(2rem, 2.8vw, 3.2rem) !important;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-desc,
  body.medical-landing .split-hero-desc,
  body:not(.b2b-landing) .hero-desc {
    font-size: clamp(.98rem, 1.1vw, 1.08rem) !important;
  }
}

/* Tablet */
@media (max-width: 1023px) {
  .container {
    padding-inline: clamp(18px, 4vw, 28px);
  }

  .header .container {
    padding-inline: clamp(14px, 3.2vw, 22px);
  }

  body.b2b-landing:not(.medical-landing) .split-hero,
  body.medical-landing .medical-hero {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    height: auto !important;
    padding-top: 96px !important;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-content,
  body.medical-landing .medical-hero .split-hero-content {
    padding-top: 0 !important;
    padding-inline: 0 !important;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-image,
  body.medical-landing .medical-hero .split-hero-image {
    order: 2;
    min-height: clamp(260px, 46vw, 420px) !important;
  }

  body.b2b-landing:not(.medical-landing) .company-proof-cards,
  body.medical-landing .medical-proof-cards {
    grid-template-columns: 1fr !important;
  }

  .company-trust-proof-grid,
  .medical-proof-merged-grid,
  .company-model-grid,
  .profiles-grid-3,
  .b2b-fit-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Phones */
@media (max-width: 767px) {
  body.b2b-landing:not(.medical-landing) main > section,
  body.medical-landing main > section,
  body:not(.b2b-landing) main > section {
    padding-block: var(--resp-section-pad-mobile) !important;
  }

  body:not(.b2b-landing) .hero-title,
  body.b2b-landing:not(.medical-landing) .split-hero-title,
  body.medical-landing .split-hero-title {
    font-size: clamp(1.68rem, 8.2vw, 2.45rem) !important;
    line-height: 1.08 !important;
  }

  body:not(.b2b-landing) .hero-desc,
  body.b2b-landing:not(.medical-landing) .split-hero-desc,
  body.medical-landing .split-hero-desc {
    font-size: clamp(.96rem, 3.8vw, 1.06rem) !important;
    line-height: 1.56 !important;
  }

  .btn,
  .btn-primary,
  .btn-dark,
  .btn-outline,
  .form-next,
  .form-submit,
  .form-prev {
    min-height: 48px !important;
    padding-inline: 20px !important;
  }

  .faq-question {
    font-size: .98rem;
    line-height: 1.4;
  }

  .faq-answer p {
    font-size: .95rem;
    line-height: 1.55;
  }
}

/* Very small phones */
@media (max-width: 420px) {
  .container {
    padding-inline: 16px;
  }

  .header .container {
    padding-inline: 12px;
  }

  .nav-logo-img {
    max-height: 48px;
  }

  .btn,
  .btn-primary,
  .btn-dark,
  .btn-outline {
    width: 100%;
  }
}

/* ==========================================
   Overflow Repair Pass (medical/company pages)
   ========================================== */

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

main,
main > section,
.container {
  min-width: 0;
}

body.medical-landing .medical-program-section {
  min-height: auto !important;
  overflow: hidden !important;
  padding-block: 78px !important;
}

body.medical-landing .medical-program-section .container {
  display: flex !important;
  justify-content: flex-end !important;
  max-width: min(1320px, calc(100vw - 64px)) !important;
  padding-inline: 32px !important;
}

body.medical-landing .medical-program-section .medical-program-direct {
  margin-left: auto !important;
  max-width: 680px !important;
  padding: 0 !important;
  transform: none !important;
  width: min(680px, 48%) !important;
}

body.medical-landing .medical-program-section .medical-program-copy,
body.medical-landing .medical-program-section .medical-program-text {
  max-width: 100% !important;
  overflow-wrap: normal !important;
  text-align: right !important;
}

body.medical-landing .medical-program-section .medical-program-copy h2 {
  font-size: 3rem !important;
  line-height: 1.08 !important;
  max-width: 100% !important;
}

body.medical-landing .medical-program-section .medical-program-copy .medical-program-title-line {
  display: block;
  max-width: 100%;
  text-align: right !important;
  white-space: normal !important;
}

body.medical-landing .medical-program-section .medical-program-text p {
  font-size: 1.08rem !important;
  line-height: 1.62 !important;
  max-width: 100% !important;
  text-align: right !important;
}

body.medical-landing .medical-final-cta-light {
  overflow: hidden !important;
  padding-block: 76px !important;
}

body.medical-landing .medical-final-cta-light .container {
  max-width: min(1280px, calc(100vw - 64px)) !important;
  padding-inline: 32px !important;
}

body.medical-landing .medical-proof-merged-grid {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.42fr) !important;
  gap: 28px !important;
  width: 100% !important;
}

body.medical-landing .medical-proof-panel {
  max-width: 520px !important;
  min-width: 0 !important;
}

body.medical-landing .medical-proof-panel h2 {
  font-size: 2.35rem !important;
  line-height: 1.12 !important;
}

body.medical-landing .medical-proof-panel p {
  font-size: 1rem !important;
  line-height: 1.55 !important;
}

body.medical-landing .medical-proof-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  min-width: 0 !important;
}

body.medical-landing .medical-proof-cards .b2b-testimonial-card {
  min-width: 0 !important;
}

body.medical-landing .medical-proof-cards .b2b-testimonial-card p {
  font-size: .96rem !important;
  line-height: 1.5 !important;
}

@media (max-width: 1280px) {
  body.medical-landing .medical-program-section {
    background-position: 31% center !important;
  }

  body.medical-landing .medical-program-section .medical-program-direct {
    width: min(620px, 52%) !important;
  }

  body.medical-landing .medical-program-section .medical-program-copy h2 {
    font-size: 2.55rem !important;
  }

  body.medical-landing .medical-proof-merged-grid {
    grid-template-columns: 1fr !important;
  }

  body.medical-landing .medical-proof-panel {
    max-width: 760px !important;
  }

  body.medical-landing .medical-proof-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  body.medical-landing .medical-program-section {
    background:
      linear-gradient(90deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.82) 100%),
      url("../assets/images/medical-program-bg.webp") 30% center / cover no-repeat !important;
  }

  body.medical-landing .medical-program-section .container {
    display: block !important;
    max-width: min(760px, calc(100vw - 40px)) !important;
    padding-inline: 20px !important;
  }

  body.medical-landing .medical-program-section .medical-program-direct {
    width: 100% !important;
  }

  body.medical-landing .medical-program-section .medical-program-copy,
  body.medical-landing .medical-program-section .medical-program-text,
  body.medical-landing .medical-program-section .medical-program-copy .medical-program-title-line,
  body.medical-landing .medical-program-section .medical-program-text p {
    text-align: left !important;
  }

  body.medical-landing .medical-program-section .medical-program-copy h2,
  body.medical-landing .medical-proof-panel h2 {
    font-size: 2.15rem !important;
  }

  body.medical-landing .medical-proof-cards {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  body.medical-landing .medical-program-section,
  body.medical-landing .medical-final-cta-light {
    padding-block: 52px !important;
  }

  body.medical-landing .medical-program-section .container,
  body.medical-landing .medical-final-cta-light .container {
    max-width: calc(100vw - 32px) !important;
    padding-inline: 16px !important;
  }

  body.medical-landing .medical-program-section .medical-program-copy h2,
  body.medical-landing .medical-proof-panel h2 {
    font-size: 1.78rem !important;
  }

  body.medical-landing .medical-cta-action-bar {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================
   Production responsive hardening
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden !important;
  width: 100%;
}

body,
main,
section,
.container,
.split-hero,
.split-hero-content,
.split-hero-image,
.medical-program-section,
.medical-proof-merged,
.company-trust-proof-grid,
.medical-proof-merged-grid,
.company-proof-cards,
.medical-proof-cards {
  min-width: 0;
}

img,
picture,
video {
  display: block;
  height: auto;
  max-width: 100%;
}

.container {
  margin-inline: auto;
  max-width: 1320px;
  padding-inline: clamp(20px, 5vw, 64px);
  width: 100%;
}

@media (min-width: 1537px) {
  .container {
    max-width: 1400px;
  }
}

@media (max-width: 1200px) {
  .container {
    padding-inline: 48px;
  }
}

@media (max-width: 900px) {
  .container {
    padding-inline: 32px;
  }
}

@media (max-width: 640px) {
  .container {
    padding-inline: 20px;
  }
}

section {
  overflow-x: clip;
  padding-block: clamp(56px, 7vw, 110px);
}

.btn,
button,
input,
textarea,
select {
  max-width: 100%;
}

.btn,
.nav-cta,
.medical-cta-action-bar .btn,
.split-hero-cta,
.company-hero-cta {
  border-radius: 999px !important;
}

input,
textarea,
.contact-field,
.contact-input,
.form-control,
.ticket-form input,
.ticket-form textarea,
.contact-form input,
.contact-form textarea,
body.contact-page input,
body.contact-page textarea {
  border-radius: 999px !important;
}

body.contact-page textarea,
textarea {
  border-radius: 28px !important;
}

/* Mobile navigation: keep CTA hidden and hamburger always visible/readable. */
@media (max-width: 900px) {
  .header,
  body.b2b-landing .header,
  body.medical-landing .header,
  body.contact-page .header {
    background: rgba(255, 255, 255, .96) !important;
    border-bottom: 1px solid rgba(16, 42, 76, .08);
    box-shadow: 0 10px 30px rgba(16, 42, 76, .08);
    padding-block: 8px !important;
  }

  .header .container {
    max-width: none;
    padding-inline: 16px !important;
  }

  .nav {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    min-width: 0;
  }

  .nav-right {
    align-items: center;
    display: flex !important;
    flex: 0 0 auto;
    gap: 8px;
  }

  .nav-links,
  .nav-cta {
    display: none !important;
  }

  .nav-logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-logo-img,
  .header.scrolled .nav-logo-img,
  body.b2b-landing .header .nav-logo-img {
    height: 48px !important;
    max-width: 150px;
    object-fit: contain;
    width: auto;
  }

  .lang-trigger {
    background: rgba(16, 42, 76, .06) !important;
    border: 1px solid rgba(16, 42, 76, .08) !important;
    color: var(--primary) !important;
    min-height: 42px;
    min-width: 42px;
    padding: 8px !important;
  }

  .lang-trigger .current-lang,
  .lang-trigger .chevron {
    display: none !important;
  }

  .hamburger {
    align-items: center;
    background: rgba(16, 42, 76, .06) !important;
    border: 1px solid rgba(16, 42, 76, .08) !important;
    border-radius: 999px;
    cursor: pointer;
    display: flex !important;
    flex-direction: column;
    flex-shrink: 0;
    gap: 5px;
    height: 42px;
    justify-content: center;
    min-height: 42px;
    min-width: 42px;
    padding: 0 !important;
    position: relative;
    width: 42px;
    z-index: 1002;
  }

  .hamburger span,
  .header.scrolled .hamburger span,
  body.b2b-landing .header .hamburger span,
  body.medical-landing .header .hamburger span,
  body.contact-page .header .hamburger span {
    background: var(--primary) !important;
    display: block !important;
    height: 2px;
    width: 22px;
  }

  .mobile-nav {
    left: 0;
    max-width: 100vw;
    overflow-x: hidden;
    right: 0;
    top: 64px;
    z-index: 1001;
  }
}

@media (max-width: 380px) {
  .header .container {
    padding-inline: 12px !important;
  }

  .nav-logo-img,
  .header.scrolled .nav-logo-img,
  body.b2b-landing .header .nav-logo-img {
    height: 42px !important;
    max-width: 124px;
  }

  .lang-trigger,
  .hamburger {
    height: 38px;
    min-height: 38px;
    min-width: 38px;
    width: 38px;
  }
}

/* Company and medical heroes: on phones the image becomes a readable background. */
@media (max-width: 900px) {
  body.b2b-landing:not(.medical-landing) .split-hero,
  body.medical-landing .medical-hero {
    align-items: center !important;
    display: flex !important;
    height: auto !important;
    isolation: isolate;
    min-height: 100svh !important;
    overflow: hidden !important;
    padding: 108px 0 58px !important;
    position: relative;
  }

  body.b2b-landing:not(.medical-landing) .split-hero {
    background:
      linear-gradient(90deg, rgba(5, 24, 48, .78) 0%, rgba(5, 24, 48, .55) 46%, rgba(5, 24, 48, .26) 100%),
      url("../assets/images/empresas-hero.webp?v=20260518a") center center / cover no-repeat !important;
  }

  body.medical-landing .medical-hero {
    background:
      linear-gradient(90deg, rgba(5, 24, 48, .78) 0%, rgba(5, 24, 48, .48) 52%, rgba(255, 255, 255, .2) 100%),
      url("../assets/images/service-medical-concierge.webp?v=20260517c") center center / cover no-repeat !important;
  }

  body.b2b-landing:not(.medical-landing) .split-hero::before,
  body.medical-landing .medical-hero::before {
    background: rgba(255, 255, 255, .08);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: -1;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-image,
  body.medical-landing .medical-hero .split-hero-image {
    display: none !important;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-content,
  body.medical-landing .medical-hero .split-hero-content {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    height: auto !important;
    margin: 0 auto;
    max-width: 760px;
    min-height: 0 !important;
    padding: 0 24px !important;
    position: relative;
    text-align: left;
    width: 100%;
    z-index: 1;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-kicker,
  body.b2b-landing:not(.medical-landing) .split-hero-title,
  body.b2b-landing:not(.medical-landing) .split-hero-desc,
  body.medical-landing .medical-hero .split-hero-kicker,
  body.medical-landing .medical-hero .split-hero-title,
  body.medical-landing .medical-hero .split-hero-desc {
    color: #fff !important;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .42);
  }

  body.b2b-landing:not(.medical-landing) .split-hero-title,
  body.medical-landing .medical-hero .split-hero-title {
    font-size: 3.1rem !important;
    line-height: 1.05 !important;
    max-width: 12ch;
    overflow-wrap: anywhere;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-desc,
  body.medical-landing .medical-hero .split-hero-desc {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    max-width: 34rem;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-actions,
  body.medical-landing .split-hero-actions {
    align-items: stretch;
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    max-width: 360px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  body.b2b-landing:not(.medical-landing) .split-hero,
  body.medical-landing .medical-hero {
    min-height: 92svh !important;
    padding: 94px 0 46px !important;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-content,
  body.medical-landing .medical-hero .split-hero-content {
    padding-inline: 20px !important;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-title,
  body.medical-landing .medical-hero .split-hero-title {
    font-size: 2.38rem !important;
    max-width: 11ch;
  }
}

@media (max-width: 360px) {
  body.b2b-landing:not(.medical-landing) .split-hero-title,
  body.medical-landing .medical-hero .split-hero-title {
    font-size: 2.12rem !important;
  }
}

/* Medical "Tus pacientes..." section: prevent desktop/laptop clipping. */
body.medical-landing .medical-program-section {
  background: url("../assets/images/medical-program-bg.webp") 24% center / cover no-repeat !important;
  min-height: 0 !important;
  padding-block: clamp(70px, 7vw, 116px) !important;
}

body.medical-landing .medical-program-section .container {
  display: flex !important;
  justify-content: flex-end !important;
  max-width: 1320px !important;
  padding-inline: clamp(20px, 5vw, 64px) !important;
  width: 100% !important;
}

body.medical-landing .medical-program-section .medical-program-direct {
  align-items: stretch !important;
  margin-left: auto !important;
  max-width: 620px !important;
  padding: 0 !important;
  transform: translateX(clamp(24px, 2vw, 42px)) !important;
  width: min(620px, 50%) !important;
}

body.medical-landing .medical-program-section .medical-program-copy,
body.medical-landing .medical-program-section .medical-program-text {
  max-width: 100% !important;
  text-align: right !important;
}

body.medical-landing .medical-program-section .medical-program-copy h2 {
  font-size: 3rem !important;
  line-height: 1.1 !important;
  max-width: 100% !important;
  overflow-wrap: anywhere;
  text-align: right !important;
}

body.medical-landing .medical-program-section .medical-program-copy .medical-program-title-line {
  display: inline;
  white-space: normal !important;
}

body.medical-landing .medical-program-section .medical-program-text p {
  font-size: 1.08rem !important;
  line-height: 1.62 !important;
  max-width: 100% !important;
  text-align: right !important;
}

@media (max-width: 1440px) {
  body.medical-landing .medical-program-section {
    background-position: 27% center !important;
  }

  body.medical-landing .medical-program-section .medical-program-direct {
    max-width: 570px !important;
    width: min(570px, 48%) !important;
  }

  body.medical-landing .medical-program-section .medical-program-copy h2 {
    font-size: 2.42rem !important;
  }
}

@media (max-width: 1200px) {
  body.medical-landing .medical-program-section {
    background: url("../assets/images/medical-program-bg.webp") 30% center / cover no-repeat !important;
  }

  body.medical-landing .medical-program-section .medical-program-direct {
    max-width: 560px !important;
    width: min(560px, 58%) !important;
  }

  body.medical-landing .medical-program-section .medical-program-copy h2 {
    font-size: 2.18rem !important;
  }
}

@media (max-width: 900px) {
  body.medical-landing .medical-program-section {
    background:
      linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.86) 100%),
      url("../assets/images/medical-program-bg.webp") 30% center / cover no-repeat !important;
    padding-block: 58px !important;
  }

  body.medical-landing .medical-program-section .container {
    display: block !important;
    max-width: 760px !important;
    padding-inline: 24px !important;
  }

  body.medical-landing .medical-program-section .medical-program-direct {
    max-width: 100% !important;
    width: 100% !important;
  }

  body.medical-landing .medical-program-section .medical-program-copy,
  body.medical-landing .medical-program-section .medical-program-text,
  body.medical-landing .medical-program-section .medical-program-copy h2,
  body.medical-landing .medical-program-section .medical-program-text p {
    text-align: left !important;
  }

  body.medical-landing .medical-program-section .medical-program-copy h2 {
    font-size: 2rem !important;
  }
}

@media (max-width: 480px) {
  body.medical-landing .medical-program-section .container {
    padding-inline: 20px !important;
  }

  body.medical-landing .medical-program-section .medical-program-copy h2 {
    font-size: 1.78rem !important;
  }
}

/* Proof/testimonial sections: stack before they get squeezed. */
body.medical-landing .medical-proof-merged .container,
body.b2b-landing:not(.medical-landing) .company-trust-proof .container {
  max-width: 1320px !important;
  padding-inline: clamp(20px, 5vw, 64px) !important;
}

body.medical-landing .medical-proof-merged-grid,
body.b2b-landing:not(.medical-landing) .company-trust-proof-grid {
  align-items: center;
  gap: clamp(24px, 3vw, 40px) !important;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.35fr) !important;
  width: 100%;
}

body.medical-landing .medical-proof-panel,
body.b2b-landing:not(.medical-landing) .company-trust-panel,
body.b2b-landing:not(.medical-landing) .company-proof-panel {
  min-width: 0;
}

body.medical-landing .medical-proof-panel h2,
body.b2b-landing:not(.medical-landing) .company-trust-panel h2,
body.b2b-landing:not(.medical-landing) .company-proof-panel h2 {
  font-size: 2.65rem !important;
  line-height: 1.12 !important;
  overflow-wrap: anywhere;
}

body.medical-landing .medical-proof-cards,
body.b2b-landing:not(.medical-landing) .company-proof-cards {
  display: grid !important;
  gap: 18px !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  min-width: 0;
  width: 100%;
}

body.medical-landing .medical-proof-cards .b2b-testimonial-card,
body.b2b-landing:not(.medical-landing) .company-proof-cards .b2b-testimonial-card {
  border-radius: 24px !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 24px !important;
  width: 100%;
}

@media (max-width: 1440px) {
  body.medical-landing .medical-proof-merged-grid,
  body.b2b-landing:not(.medical-landing) .company-trust-proof-grid {
    grid-template-columns: 1fr !important;
  }

  body.medical-landing .medical-proof-panel,
  body.b2b-landing:not(.medical-landing) .company-trust-panel,
  body.b2b-landing:not(.medical-landing) .company-proof-panel {
    max-width: 820px !important;
  }

  body.medical-landing .medical-proof-panel h2,
  body.b2b-landing:not(.medical-landing) .company-trust-panel h2,
  body.b2b-landing:not(.medical-landing) .company-proof-panel h2 {
    font-size: 2.42rem !important;
  }
}

@media (max-width: 900px) {
  body.medical-landing .medical-proof-merged,
  body.b2b-landing:not(.medical-landing) .company-trust-proof {
    min-height: 0 !important;
    padding-block: 58px !important;
  }

  body.medical-landing .medical-proof-merged .container,
  body.b2b-landing:not(.medical-landing) .company-trust-proof .container {
    padding-inline: 24px !important;
  }

  body.medical-landing .medical-proof-cards,
  body.b2b-landing:not(.medical-landing) .company-proof-cards {
    grid-template-columns: 1fr !important;
  }

  body.medical-landing .medical-proof-panel h2,
  body.b2b-landing:not(.medical-landing) .company-trust-panel h2,
  body.b2b-landing:not(.medical-landing) .company-proof-panel h2 {
    font-size: 2rem !important;
  }
}

@media (max-width: 480px) {
  body.medical-landing .medical-proof-merged .container,
  body.b2b-landing:not(.medical-landing) .company-trust-proof .container {
    padding-inline: 20px !important;
  }

  body.medical-landing .medical-proof-panel h2,
  body.b2b-landing:not(.medical-landing) .company-trust-panel h2,
  body.b2b-landing:not(.medical-landing) .company-proof-panel h2 {
    font-size: 1.76rem !important;
  }

  body.medical-landing .medical-cta-action-bar,
  body.b2b-landing:not(.medical-landing) .company-proof-actions {
    grid-template-columns: 1fr !important;
    width: 100%;
  }
}

/* Generic grids/cards: avoid rigid desktop columns on tablets and phones. */
@media (max-width: 1200px) {
  .srv-grid,
  .steps-grid,
  .benefits-grid,
  .cred-grid,
  .specialty-grid,
  .profiles-grid,
  .dest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .srv-grid,
  .steps-grid,
  .benefits-grid,
  .cred-grid,
  .specialty-grid,
  .profiles-grid,
  .dest-grid,
  .cards-grid {
    grid-template-columns: 1fr !important;
  }

  .profile-card,
  .profile-card-minimal,
  .srv-card,
  .dest-card,
  .cred-card,
  .specialty-card,
  .b2b-testimonial-card,
  .proof-card {
    height: auto !important;
    min-height: 0 !important;
  }
}

/* Contact ticket guardrails for laptop/tablet/mobile. */
body.contact-page .contact-section,
body.contact-page .ticket-section {
  min-height: auto !important;
  overflow-x: hidden !important;
  padding-block: clamp(36px, 5vw, 72px) !important;
}

body.contact-page .ticket-shell,
body.contact-page .contact-ticket,
body.contact-page .ticket-card {
  max-width: 100%;
  min-width: 0;
}

@media (max-width: 1200px) {
  body.contact-page .ticket-shell,
  body.contact-page .contact-ticket {
    transform: none !important;
  }
}

@media (max-width: 900px) {
  body.contact-page .ticket-shell {
    grid-template-columns: 1fr !important;
  }
}

/* Company desktop hero: show full PNG without clipping. */
body.b2b-landing:not(.medical-landing) .split-hero {
  overflow: visible !important;
}

body.b2b-landing:not(.medical-landing) .split-hero-image {
  align-items: stretch !important;
  display: flex !important;
  justify-content: flex-end !important;
  min-width: 0 !important;
  overflow: visible !important;
}

body.b2b-landing:not(.medical-landing) .split-hero-image img.company-hero-photo {
  height: 100% !important;
  max-height: none !important;
  max-width: none !important;
  min-width: 100% !important;
  object-fit: contain !important;
  object-position: right top !important;
  width: auto !important;
}

@media (min-width: 1024px) {
  /* Company hero must mirror medical hero behavior */
  body.b2b-landing:not(.medical-landing) .split-hero {
    align-items: stretch !important;
    height: 100svh !important;
    min-height: 100svh !important;
    padding-block: 0 !important;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-content,
  body.b2b-landing:not(.medical-landing) .split-hero-image {
    height: 100svh !important;
    min-height: 100svh !important;
    align-self: stretch !important;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-image img.company-hero-photo {
    bottom: 0 !important;
    height: 100% !important;
    left: auto !important;
    max-width: none !important;
    min-width: 100% !important;
    object-fit: contain !important;
    object-position: right top !important;
    right: 0 !important;
    top: 0 !important;
    width: auto !important;
  }
}

/* Match home profile-card hover effect on process/model cards. */
body.medical-landing .medical-process-cards .timeline-step,
body.medical-landing .medical-process-cards.company-model-grid .company-model-card,
body.b2b-landing:not(.medical-landing) .company-model-card {
  border: 2px solid transparent !important;
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease,
    background-color .3s ease !important;
}

body.medical-landing .medical-process-cards .timeline-step:hover,
body.medical-landing .medical-process-cards.company-model-grid .company-model-card:hover,
body.b2b-landing:not(.medical-landing) .company-model-card:hover {
  border-color: var(--accent) !important;
  box-shadow:
    0 14px 36px rgba(6, 43, 85, .12),
    0 4px 20px rgba(255, 210, 31, .18) !important;
  transform: translateY(-5px) !important;
}

body.medical-landing .medical-process-cards.company-model-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

@media (max-width: 1024px) {
  body.medical-landing .medical-process-cards.company-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  body.medical-landing .medical-process-cards.company-model-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Final hero lock: full-size company image and non-overlapping highlights. */
@media (min-width: 1024px) {
  body.b2b-landing:not(.medical-landing) .split-hero-image {
    overflow: visible !important;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-image img.company-hero-photo {
    bottom: 0 !important;
    height: 100% !important;
    left: auto !important;
    max-width: none !important;
    min-width: 100% !important;
    object-fit: contain !important;
    object-position: right top !important;
    right: 0 !important;
    top: 0 !important;
    width: auto !important;
  }
}

body.b2b-landing:not(.medical-landing) .split-hero .split-hero-title {
  line-height: 1.16 !important;
}

body.medical-landing .medical-hero .split-hero-title {
  line-height: 1.4 !important;
}

body.b2b-landing .split-hero-title .hero-highlight {
  padding: 0 .1em .08em !important;
  position: relative;
  top: .08em;
}

/* Final proof sections layout: wider, lower testimonial cards with clearer separation. */
@media (min-width: 1100px) {
  body.b2b-landing:not(.medical-landing) .company-trust-proof .container,
  body.medical-landing .medical-proof-merged .container {
    max-width: min(1640px, calc(100vw - 72px)) !important;
    padding-inline: clamp(24px, 2.2vw, 42px) !important;
  }

  body.b2b-landing:not(.medical-landing) .company-trust-proof-grid,
  body.medical-landing .medical-proof-merged-grid {
    align-items: center !important;
    gap: clamp(56px, 5vw, 96px) !important;
    grid-template-columns: minmax(360px, .72fr) minmax(820px, 1.62fr) !important;
  }

  body.b2b-landing:not(.medical-landing) .company-trust-panel,
  body.medical-landing .medical-proof-panel {
    justify-self: start !important;
    margin-left: 0 !important;
    max-width: 620px !important;
    text-align: left !important;
  }

  body.b2b-landing:not(.medical-landing) .company-proof-cards,
  body.medical-landing .medical-proof-cards {
    gap: 18px !important;
    grid-template-columns: repeat(3, minmax(250px, 1fr)) !important;
    margin-left: clamp(-28px, -1.4vw, -12px) !important;
    max-width: none !important;
    width: 100% !important;
  }

  body.b2b-landing:not(.medical-landing) .company-proof-cards .b2b-testimonial-card,
  body.medical-landing .medical-proof-cards .b2b-testimonial-card {
    min-height: 0 !important;
    padding: 20px 22px !important;
  }

  body.b2b-landing:not(.medical-landing) .company-proof-cards .b2b-testimonial-card p,
  body.medical-landing .medical-proof-cards .b2b-testimonial-card p {
    font-size: .95rem !important;
    line-height: 1.42 !important;
    margin-bottom: 16px !important;
  }

  body.b2b-landing:not(.medical-landing) .company-proof-cards .b2b-testimonial-quote,
  body.medical-landing .medical-proof-cards .b2b-testimonial-quote {
    font-size: 2rem !important;
    margin-bottom: 6px !important;
  }
}

@media (min-width: 1100px) and (max-width: 1320px) {
  body.b2b-landing:not(.medical-landing) .company-trust-proof-grid,
  body.medical-landing .medical-proof-merged-grid {
    grid-template-columns: minmax(320px, .76fr) minmax(0, 1.35fr) !important;
  }

body.b2b-landing:not(.medical-landing) .company-proof-cards,
body.medical-landing .medical-proof-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* Home mobile hero: keep text, CTA, and flight animation in normal flow. */
@media (max-width: 768px) {
  body:not(.b2b-landing) .pin-spacer:has(> .hero),
  body:not(.b2b-landing) .hero {
    height: auto !important;
    min-height: 100svh !important;
  }

  body:not(.b2b-landing) .hero {
    padding: 96px 0 34px !important;
  }

  body:not(.b2b-landing) .hero-content {
    justify-content: center !important;
    padding: 0 22px !important;
  }

  body:not(.b2b-landing) .hero-text-container {
    display: block !important;
    min-height: 0 !important;
    max-width: 100% !important;
  }

  body:not(.b2b-landing) .hero-text-slide {
    display: none !important;
    position: static !important;
    inset: auto !important;
    padding-top: 0 !important;
    transform: none !important;
  }

  body:not(.b2b-landing) .hero-text-slide.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  body:not(.b2b-landing) .hero .hero-title {
    font-size: clamp(2.15rem, 10vw, 3.05rem) !important;
    line-height: 1.06 !important;
    margin: 0 auto 18px !important;
    max-width: 11ch !important;
  }

  body:not(.b2b-landing) .hero .hero-desc {
    font-size: clamp(.98rem, 4vw, 1.08rem) !important;
    line-height: 1.55 !important;
    margin: 0 auto !important;
    max-width: 30rem !important;
  }

  body:not(.b2b-landing) .hero-progress {
    margin-top: 18px !important;
  }

  body:not(.b2b-landing) .hero-cta-container {
    margin-top: 22px !important;
    opacity: 1 !important;
    animation: none !important;
  }

  body:not(.b2b-landing) .hero-cta {
    min-width: min(420px, calc(100vw - 72px)) !important;
    width: auto !important;
  }
}

/* Medical page polish: hero rhythm, title rules, and CTA spacing. */
body.medical-landing .medical-hero .split-hero-title {
  line-height: 1.16 !important;
}

@media (min-width: 1024px) {
  body.medical-landing .medical-hero .split-hero-image {
    overflow: hidden !important;
  }

  body.medical-landing .medical-hero .split-hero-image img {
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: right center !important;
    transform: scale(1.08) !important;
    transform-origin: right center !important;
    width: 100% !important;
  }
}

body.medical-landing .medical-program-section .medical-program-copy h2::before {
  display: none !important;
}

body.medical-landing .medical-program-section .medical-program-copy h2::after,
body.medical-landing .medical-process-light .section-header h2::after,
body.medical-landing .medical-specialties-light .section-header h2::after {
  background: var(--accent) !important;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(255, 210, 31, .4);
  content: "" !important;
  display: block !important;
  height: 3px;
  margin-top: 14px;
  width: 42px;
}

body.medical-landing .medical-program-section .medical-program-copy h2::after {
  margin-left: auto;
}

body.medical-landing .medical-process-light .section-header h2::after,
body.medical-landing .medical-specialties-light .section-header h2::after {
  margin-left: auto;
  margin-right: auto;
}

body.medical-landing .medical-process-cta {
  margin-top: 38px !important;
}

body.medical-landing .medical-specialty-note .btn {
  min-width: 210px !important;
  padding-inline: 28px !important;
}

body.medical-landing .medical-cta-action-bar .btn-dark {
  background: #fff !important;
  border-color: rgba(16, 42, 76, .18) !important;
  color: var(--primary) !important;
}

body.medical-landing .medical-cta-action-bar .btn-dark:hover {
  background: rgba(16, 42, 76, .06) !important;
  border-color: rgba(16, 42, 76, .32) !important;
  color: var(--primary) !important;
}

@media (max-width: 900px) {
  body.medical-landing .medical-program-section .medical-program-copy h2::after {
    margin-left: 0;
  }
}

/* Medical hero refinement: preserve zoom while letting the tablet breathe. */
body.medical-landing .medical-hero .split-hero-title {
  line-height: 1.11 !important;
}

@media (min-width: 1024px) {
  body.medical-landing .medical-hero,
  body.medical-landing .medical-hero .split-hero-image {
    overflow: visible !important;
  }

  body.medical-landing .medical-hero .split-hero-content {
    position: relative;
    z-index: 3;
  }

  body.medical-landing .medical-hero .split-hero-image {
    position: relative;
    z-index: 2;
  }

  body.medical-landing .medical-hero .split-hero-image img {
    bottom: auto !important;
    height: 100% !important;
    left: auto !important;
    max-height: none !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: right center !important;
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) scale(1.08) !important;
    transform-origin: right center !important;
    width: auto !important;
  }
}

/* Keep the medical logo strip above the hero image overflow. */
body.medical-landing .medical-hero {
  position: relative;
  z-index: 1;
}

body.medical-landing .trust-banner.b2b-premium-logos {
  background: #f4f6f8 !important;
  position: relative !important;
  z-index: 8 !important;
}

body.medical-landing .trust-banner.b2b-premium-logos .marquee-container {
  position: relative;
  z-index: 9;
}

/* Medical copy correction: keep requested text changes inside the existing layout. */
body.medical-landing .medical-hero .split-hero-title {
  font-size: clamp(2.45rem, 4.1vw, 3.55rem) !important;
  line-height: 1.08 !important;
  max-width: 15.6ch !important;
}

body.medical-landing .medical-hero .split-hero-title .hero-highlight {
  line-height: 1.05 !important;
  padding: 0 .1em .05em !important;
  top: 0 !important;
}

body.medical-landing .medical-hero-highlight-nowrap {
  white-space: nowrap;
}

body.medical-landing .medical-hero .split-hero-desc {
  color: var(--text-secondary) !important;
  font-weight: 400 !important;
  max-width: 44rem !important;
  text-shadow: none !important;
}

body.medical-landing .medical-program-section {
  background-position: 20% center !important;
  min-height: clamp(620px, 70vh, 760px) !important;
  padding-block: clamp(92px, 8vw, 130px) !important;
}

body.medical-landing .medical-program-section .container {
  max-width: 1440px !important;
  padding-left: clamp(20px, 5vw, 64px) !important;
  padding-right: clamp(18px, 2vw, 32px) !important;
}

body.medical-landing .medical-program-section .medical-program-direct {
  max-width: 760px !important;
  transform: translateX(clamp(12px, 1.8vw, 30px)) !important;
  width: min(760px, 56%) !important;
}

body.medical-landing .medical-program-section .medical-program-copy h2 {
  font-size: clamp(2.22rem, 2.35vw, 2.65rem) !important;
  line-height: 1.08 !important;
}

body.medical-landing .medical-program-section .medical-program-copy .medical-program-title-line {
  display: block !important;
  text-align: right !important;
  white-space: nowrap !important;
}

body.medical-landing .medical-program-section .medical-program-text p {
  font-size: 1.06rem !important;
  line-height: 1.56 !important;
  font-weight: 400 !important;
  max-width: 100% !important;
  text-align: justify !important;
  text-align-last: right;
}

body.medical-landing .medical-program-section .medical-program-text p strong {
  color: var(--primary);
  font-weight: 800;
}

body.medical-landing .medical-program-section .medical-program-text p:last-child {
  color: var(--text-secondary) !important;
  font-weight: 400 !important;
}

body.medical-landing .medical-process-light .section-header h2 {
  font-size: clamp(2.15rem, 2.85vw, 3.05rem) !important;
  line-height: 1.08 !important;
  max-width: none !important;
  text-align: center !important;
  white-space: nowrap;
}

body.medical-landing .medical-process-light .section-header {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: none !important;
  text-align: center !important;
  width: 100% !important;
}

body.medical-landing .medical-process-light {
  padding-top: clamp(92px, 9vw, 124px) !important;
}

body.medical-landing .medical-process-cards.company-model-grid {
  display: grid !important;
  gap: 22px !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  margin: 56px auto 0 !important;
  max-width: min(1270px, calc(100vw - 140px)) !important;
}

body.medical-landing .medical-process-cards.company-model-grid .company-model-card {
  align-items: center !important;
  background: #fff !important;
  border: 2px solid transparent !important;
  border-radius: 24px !important;
  box-shadow: 0 16px 36px rgba(16, 42, 76, 0.08) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-height: 300px !important;
  padding: 58px 28px 34px !important;
  position: relative !important;
  text-align: center !important;
}

body.medical-landing .medical-process-cards.company-model-grid .company-model-number {
  align-items: center !important;
  background: var(--primary) !important;
  border-radius: 999px !important;
  color: #fff !important;
  display: inline-flex !important;
  font-family: var(--font-heading);
  font-size: .95rem !important;
  font-weight: 800 !important;
  height: 36px !important;
  justify-content: center !important;
  left: 18px !important;
  position: absolute !important;
  top: 18px !important;
  width: 36px !important;
}

body.medical-landing .medical-process-cards.company-model-grid .company-model-copy {
  margin-block: auto !important;
}

body.medical-landing .medical-process-cards.company-model-grid .company-model-copy h3 {
  color: var(--primary) !important;
  font-size: clamp(1.08rem, .96rem + .28vw, 1.24rem) !important;
  line-height: 1.18 !important;
  margin: 0 0 14px !important;
  text-align: center !important;
  text-wrap: balance;
}

body.medical-landing .medical-process-cards.company-model-grid .company-model-copy p {
  color: var(--text-secondary) !important;
  font-size: .98rem !important;
  line-height: 1.5 !important;
  margin: 0 auto !important;
  max-width: 27ch !important;
  text-align: center !important;
  text-wrap: pretty;
}

body.medical-landing .medical-process-cards.company-model-grid .company-model-card:hover {
  border-color: var(--accent) !important;
}

body.medical-landing .medical-complete-service {
  background: #fff;
  padding-block: clamp(72px, 8vw, 112px);
}

body.medical-landing .medical-complete-service .container {
  max-width: min(1460px, calc(100vw - 64px));
}

body.medical-landing .medical-complete-service-grid {
  align-items: center;
  display: grid;
  gap: clamp(48px, 7vw, 118px);
  grid-template-columns: minmax(430px, .88fr) minmax(560px, 1.12fr);
}

body.medical-landing .medical-complete-service-copy {
  max-width: 620px;
}

body.medical-landing .medical-complete-service-copy h2 {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 3.1vw, 3.25rem);
  line-height: 1.06;
  margin: 0 0 20px;
}

body.medical-landing .medical-complete-service-copy h2::after {
  background: var(--accent);
  content: "";
  display: block;
  height: 3px;
  margin-top: 16px;
  width: 44px;
}

body.medical-landing .medical-complete-service-copy p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.62;
  margin: 0 0 18px;
  text-align: justify;
  text-align-last: left;
}

body.medical-landing .medical-complete-service-copy p strong {
  color: var(--primary);
  font-weight: 400;
}

body.medical-landing .medical-complete-service-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

body.medical-landing .medical-complete-service-list li {
  align-items: center;
  color: var(--primary);
  display: grid;
  font-size: 1rem;
  font-weight: 400;
  gap: 12px;
  grid-template-columns: 22px minmax(0, 1fr);
  line-height: 1.35;
}

body.medical-landing .medical-complete-service-list li::before {
  align-items: center;
  background: transparent;
  border: 2px solid #0d65bf;
  border-radius: 999px;
  content: "";
  display: inline-flex;
  height: 10px;
  justify-content: center;
  margin-left: 5px;
  width: 10px;
}

body.medical-landing .medical-complete-service-media {
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(6, 43, 85, .16);
  overflow: hidden;
  position: relative;
}

body.medical-landing .medical-complete-service-media img {
  aspect-ratio: 1.5 / 1;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

body.medical-landing .medical-standards {
  background:
    linear-gradient(180deg, rgba(246, 251, 255, .78) 0%, rgba(255, 255, 255, .96) 100%),
    url("../assets/images/profiles-sky-bg.webp") center center / cover no-repeat;
  min-height: 0 !important;
  padding-block: clamp(62px, 6vw, 86px);
}

body.medical-landing .medical-standards .container {
  max-width: min(1360px, calc(100vw - 64px));
}

body.medical-landing .medical-standards-header {
  margin: 0 auto clamp(34px, 4vw, 48px);
  max-width: 760px;
  text-align: center;
}

body.medical-landing .medical-standards-header .section-label {
  justify-content: center;
}

body.medical-landing .medical-standards-header h2,
body.medical-landing .medical-behind-scenes-copy h2 {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 3vw, 3.15rem);
  line-height: 1.08;
  margin: 0;
}

body.medical-landing .medical-standards-header h2::after,
body.medical-landing .medical-behind-scenes-copy h2::after {
  background: var(--accent);
  content: "";
  display: block;
  height: 3px;
  margin: 16px auto 0;
  width: 44px;
}

body.medical-landing .medical-standards-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.55;
  margin: 20px auto 0;
  max-width: 720px;
}

body.medical-landing .medical-standards-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-inline: auto;
  max-width: 1180px;
}

body.medical-landing .medical-standard-card {
  align-items: center;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(16, 42, 76, .08);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(16, 42, 76, .08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 190px;
  padding: 34px 40px;
  text-align: center;
  transition: border-color .24s ease, box-shadow .24s ease;
}

body.medical-landing .medical-standard-card:hover {
  border-color: rgba(16, 42, 76, .12);
  box-shadow: 0 24px 58px rgba(16, 42, 76, .14);
}

body.medical-landing .medical-standard-card h3 {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, 1vw + .84rem, 1.32rem);
  line-height: 1.15;
  margin: 0 0 14px;
}

body.medical-landing .medical-standard-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

body.medical-landing .medical-behind-scenes {
  background: linear-gradient(135deg, #07172b 0%, var(--primary) 58%, #17375e 100%);
  min-height: 0 !important;
  padding-block: clamp(66px, 7vw, 102px);
}

body.medical-landing .medical-behind-scenes-copy {
  margin: 0 auto;
  max-width: 860px;
  text-align: center;
}

body.medical-landing .medical-behind-scenes-copy .section-label {
  justify-content: center;
  color: var(--accent) !important;
}

body.medical-landing .medical-behind-scenes-copy h2 {
  color: #fff !important;
}

body.medical-landing .medical-behind-scenes-text {
  max-width: 740px;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.medical-landing .medical-behind-scenes-text p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.08rem !important;
  line-height: 1.7 !important;
  margin: 0 !important;
  text-align: justify !important;
  text-align-last: center !important;
}

body.medical-landing .medical-closing-cta {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(248, 252, 255, .34) 0%, rgba(255, 255, 255, .7) 100%),
    url("../assets/images/profiles-sky-bg.webp") center center / cover no-repeat !important;
  display: flex;
  min-height: 0 !important;
  padding-block: clamp(78px, 8vw, 118px) !important;
}

body.medical-landing .medical-closing-cta .container {
  max-width: 1180px !important;
}

body.medical-landing .medical-closing-cta-panel {
  background:
    linear-gradient(180deg, rgba(7, 31, 58, .78), rgba(7, 31, 58, .78)),
    url("../assets/images/profiles-sky-bg.webp") center center / cover no-repeat;
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(6, 43, 85, .18);
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(58px, 6vw, 86px) clamp(28px, 6vw, 86px);
  text-align: center;
}

body.medical-landing .medical-closing-cta .medical-proof-panel {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  margin: 0 auto !important;
  max-width: 720px !important;
  padding: 0 !important;
  text-align: center !important;
  width: 100% !important;
}

body.medical-landing .medical-closing-cta .medical-proof-panel h2 {
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3.45rem) !important;
  line-height: 1.05 !important;
  margin: 0 !important;
  text-wrap: balance;
}

body.medical-landing .medical-closing-cta .medical-proof-panel h2::after {
  background: var(--accent);
  content: "";
  display: block;
  height: 3px;
  margin: 18px auto 0;
  width: 44px;
}

body.medical-landing .medical-closing-cta .medical-proof-panel p {
  color: rgba(255, 255, 255, .88) !important;
  font-size: 1rem !important;
  font-weight: 400;
  line-height: 1.58 !important;
  margin: 22px auto 0 !important;
  max-width: 680px !important;
  text-align: center !important;
}

body.medical-landing .medical-closing-cta .medical-cta-action-bar {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: flex !important;
  gap: 14px !important;
  justify-content: center !important;
  margin: 34px auto 0 !important;
  padding: 0 !important;
  width: fit-content !important;
}

body.medical-landing .medical-closing-cta .btn-primary {
  background: var(--accent) !important;
  border: 2px solid #fff !important;
  color: var(--primary) !important;
}

body.medical-landing .medical-closing-cta .btn-dark {
  background: #fff !important;
  border: 2px solid #fff !important;
  color: var(--primary) !important;
}

body.medical-landing .medical-closing-cta .btn-dark:hover,
body.medical-landing .medical-closing-cta .btn-dark:focus-visible {
  background: #fff !important;
  border-color: var(--accent) !important;
  color: var(--primary) !important;
  box-shadow: none !important;
}

body.medical-landing .medical-closing-cta .btn-primary:hover,
body.medical-landing .medical-closing-cta .btn-primary:focus-visible {
  background: var(--accent) !important;
  border-color: #fff !important;
  color: var(--primary) !important;
  box-shadow: none !important;
}

body.medical-landing .medical-closing-cta .medical-cta-action-bar .btn {
  flex: 0 0 auto !important;
  min-width: 220px !important;
  width: auto !important;
}

body.medical-landing .medical-specialty-carousel-section {
  background: linear-gradient(180deg, #fff 0%, #f6fbff 100%) !important;
  overflow: hidden;
  padding-block: clamp(76px, 8vw, 112px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
}

body.medical-landing .medical-specialty-carousel-wrap {
  width: 100%;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
  display: block;
}

body.medical-landing .medical-specialty-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

body.medical-landing .medical-specialty-intro h2 {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3vw, 3.05rem);
  line-height: 1.08;
  margin: 0 0 18px;
}

body.medical-landing .medical-specialty-intro h2::after {
  background: var(--accent);
  content: "";
  display: block;
  height: 3px;
  margin: 14px auto 0;
  width: 44px;
}

body.medical-landing .medical-specialty-intro .section-subtitle {
  color: var(--text-secondary);
  font-size: 1.12rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 680px;
}

body.medical-landing .medical-specialty-carousel {
  display: flex;
  gap: clamp(18px, 2.2vw, 28px);
  overflow: visible;
  overscroll-behavior-x: contain;
  padding: 8px clamp(20px, 5vw, 64px) 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  width: max-content;
}

body.medical-landing .medical-specialty-footer {
  text-align: center;
  margin-top: 48px;
  max-width: 760px;
  margin-inline: auto;
}

body.medical-landing .medical-specialty-footer .medical-specialty-note-text {
  font-size: 1.06rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  text-wrap: pretty;
}

body.medical-landing .medical-specialty-carousel::-webkit-scrollbar {
  display: none;
}

body.medical-landing .medical-specialty-slide {
  background: var(--primary);
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(6, 43, 85, .16);
  flex: 0 0 clamp(310px, 25vw, 380px);
  height: clamp(310px, 25vw, 380px);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
}

body.medical-landing .medical-specialty-slide::after {
  background: linear-gradient(180deg, rgba(3, 23, 45, 0) 34%, rgba(3, 23, 45, .84) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

body.medical-landing .medical-specialty-slide img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .35s ease;
  width: 100%;
}

body.medical-landing .medical-specialty-slide:first-child img {
  object-position: 72% center;
}

body.medical-landing .medical-specialty-slide:hover img {
  transform: scale(1.055);
}

body.medical-landing .medical-specialty-slide-copy {
  bottom: clamp(24px, 2.6vw, 34px);
  display: grid;
  grid-template-rows: 18px 1fr;
  left: clamp(24px, 3vw, 34px);
  max-width: min(82%, 330px);
  min-height: 104px;
  position: absolute;
  right: clamp(24px, 3vw, 34px);
  z-index: 2;
}

body.medical-landing .medical-specialty-slide-copy span {
  align-self: start;
  color: var(--accent);
  display: block;
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

body.medical-landing .medical-specialty-slide-copy h3 {
  align-self: start;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 1.8vw, 1.95rem);
  line-height: 1.05;
  margin: 16px 0 0;
}

@media (max-width: 1280px) {
  body.medical-landing .medical-program-section .medical-program-direct {
    width: min(720px, 58%) !important;
  }

  body.medical-landing .medical-process-cards.company-model-grid {
    max-width: min(1120px, calc(100vw - 56px)) !important;
  }
}

@media (max-width: 1024px) {
  body.medical-landing .medical-process-light .section-header h2 {
    white-space: normal;
  }

  body.medical-landing .medical-process-cards.company-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: min(680px, calc(100vw - 40px)) !important;
  }
}

@media (max-width: 900px) {
  body.medical-landing .medical-program-section {
    min-height: 0 !important;
  }

  body.medical-landing .medical-program-section .medical-program-direct {
    max-width: 100% !important;
    transform: none !important;
    width: 100% !important;
  }

  body.medical-landing .medical-program-section .medical-program-copy .medical-program-title-line {
    text-align: left !important;
  }

  body.medical-landing .medical-complete-service-grid {
    grid-template-columns: 1fr;
  }

  body.medical-landing .medical-complete-service .container,
  body.medical-landing .medical-standards .container {
    max-width: min(100%, calc(100vw - 40px));
  }

  body.medical-landing .medical-complete-service-copy {
    max-width: 100%;
  }

  body.medical-landing .medical-complete-service-media {
    border-radius: 18px;
  }

  body.medical-landing .medical-standards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.medical-landing .medical-specialty-carousel-wrap {
    align-items: stretch;
    display: block;
    margin-top: 0;
    padding-left: 24px;
    width: auto;
  }

  body.medical-landing .medical-specialty-intro {
    max-width: min(620px, calc(100vw - 48px));
    margin: 0 auto;
  }

  body.medical-landing .medical-specialty-carousel {
    width: auto !important;
    margin-top: 28px;
    overflow-x: auto;
    padding-left: 0;
  }

  body.medical-landing .medical-specialty-slide {
    flex-basis: min(78vw, 380px);
    height: min(78vw, 380px);
  }

  body.medical-landing .medical-specialty-footer {
    margin-top: 36px;
    padding-inline: 24px;
  }
}

@media (max-width: 760px) {
  body.medical-landing .medical-hero .split-hero-title {
    max-width: 100% !important;
  }

  body.medical-landing .medical-hero-highlight-nowrap {
    white-space: normal;
  }

  body.medical-landing .medical-process-cards.company-model-grid {
    grid-template-columns: 1fr !important;
    max-width: min(390px, calc(100vw - 40px)) !important;
  }

  body.medical-landing .medical-standards-grid {
    grid-template-columns: 1fr;
  }

  body.medical-landing .medical-standard-card {
    min-height: 0;
  }

  body.medical-landing .medical-closing-cta .medical-cta-action-bar {
    align-items: stretch !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  body.medical-landing .medical-closing-cta .medical-cta-action-bar .btn {
    min-width: 0 !important;
    width: 100% !important;
  }

  body.medical-landing .medical-behind-scenes-text p {
    text-align: center !important;
  }
}

/* Company hero photo lock: fill the entire right side without shortening the book. */
@media (min-width: 1024px) {
  body.b2b-landing:not(.medical-landing) .split-hero-image {
    background: url("../assets/images/empresas-hero.webp?v=20260518a") right top / auto 100% no-repeat !important;
    overflow: visible !important;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-image img.company-hero-photo {
    display: none !important;
  }
}

/* Company hero: keep the same photo placement but let the book overflow. */
@media (min-width: 1024px) {
  body.b2b-landing:not(.medical-landing) .split-hero {
    overflow: visible !important;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-content {
    position: relative;
    z-index: 3;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-image {
    background: none !important;
    overflow: visible !important;
    position: relative;
    z-index: 2;
  }

  body.b2b-landing:not(.medical-landing) .split-hero-image img.company-hero-photo {
    display: block !important;
    height: 100% !important;
    left: auto !important;
    max-height: none !important;
    max-width: none !important;
    min-width: 100% !important;
    object-fit: contain !important;
    object-position: right top !important;
    pointer-events: none;
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    width: auto !important;
  }
}

/* ===== Patient Journey / Concerns Section ===== */
body.medical-landing .medical-patient-journey {
  background: #ffffff !important;
  padding-block: clamp(76px, 8vw, 112px) !important;
  display: block !important;
}

body.medical-landing .medical-patient-journey .section-header {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

body.medical-landing .medical-patient-journey h2 {
  color: var(--primary) !important;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3vw, 3.05rem) !important;
  line-height: 1.08 !important;
  margin: 0 0 18px !important;
}

body.medical-landing .medical-patient-journey h2::after {
  background: var(--accent);
  content: "";
  display: block;
  height: 3px;
  margin: 14px auto 0;
  width: 44px;
}

body.medical-landing .medical-patient-journey .section-subtitle {
  color: var(--text-secondary) !important;
  font-size: 1.12rem !important;
  line-height: 1.6 !important;
  margin: 0 auto !important;
  max-width: 720px;
}

body.medical-landing .medical-patient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3.2vw, 44px);
  margin-top: clamp(96px, 8vw, 132px);
  justify-items: center;
  align-items: start;
}

body.medical-landing .medical-patient-card {
  width: 100%;
  max-width: 440px; /* Made them bigger! */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: clamp(238px, 19vw, 282px);
}

body.medical-landing .medical-patient-phone-wrapper {
  width: 100%;
  height: clamp(238px, 19vw, 282px);
  margin-top: 0;
  overflow: hidden;
  position: relative;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(0);
  background: transparent;
}

body.medical-landing .medical-patient-phone-wrapper:hover,
body.medical-landing .medical-patient-card.is-phone-hovered .medical-patient-phone-wrapper {
  transform: none;
}

body.medical-landing .medical-patient-phone-scroll {
  width: 100%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(clamp(150px, 12vw, 176px));
}

body.medical-landing .medical-patient-phone-img {
  width: 100%;
  height: auto;
  display: block;
}

body.medical-landing .medical-patient-card:hover .medical-patient-phone-scroll,
body.medical-landing .medical-patient-phone-wrapper:hover .medical-patient-phone-scroll,
body.medical-landing .medical-patient-card.is-phone-hovered .medical-patient-phone-scroll {
  transform: translateY(clamp(4px, .7vw, 12px));
}

/* Yellow patient benefit banner */
body.medical-landing .medical-patient-banner {
  background: var(--accent) !important;
  border-radius: 20px;
  padding: clamp(20px, 3vw, 30px) clamp(24px, 4vw, 48px);
  max-width: 960px;
  margin: clamp(28px, 3.2vw, 44px) auto 0;
  text-align: center;
  box-shadow: 0 14px 32px rgba(255, 210, 31, 0.14);
}

body.medical-landing .medical-patient-banner p {
  color: var(--primary) !important;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.08vw, 1.14rem) !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  margin: 0 !important;
}

/* Responsive configurations */
@media (max-width: 900px) {
  body.medical-landing .medical-patient-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 36px;
  }
  
  body.medical-landing .medical-patient-card {
    max-width: 320px;
  }

  body.medical-landing .medical-patient-phone-wrapper {
    aspect-ratio: 1480 / 1518; /* Show the entire phone screen on mobile */
    border-radius: 0;
    margin-top: 0;
    box-shadow: none;
  }
  
  body.medical-landing .medical-patient-phone-wrapper:hover {
    transform: none;
  }
  
  body.medical-landing .medical-patient-phone-scroll {
    clip-path: none !important; /* Show full phone on mobile */
    transform: none !important;
  }
}

/* ===== Medical page definitive visual alignment ===== */
body.medical-landing .medical-hero .hero-highlight {
  display: inline-block !important;
  margin-top: 0.12em !important;
  padding-top: 0.02em !important;
}

body.medical-landing .trust-banner.b2b-premium-logos {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

body.medical-landing .medical-program-section {
  background-image: url("../assets/images/medical-program-office-bg.webp") !important;
  background-position: center clamp(-104px, -5.2vw, -58px) !important;
  background-repeat: no-repeat !important;
  background-size: 100% auto !important;
  background-color: #fff !important;
  height: 49.6vw !important;
  margin-top: 0 !important;
  min-height: 610px !important;
  padding-block: 0 !important;
}

body.medical-landing .medical-program-section .medical-program-direct {
  margin-left: auto !important;
  margin-right: clamp(0px, .8vw, 16px) !important;
  transform: translateX(clamp(12px, 1.8vw, 34px)) !important;
  width: min(820px, 58vw) !important;
}

body.medical-landing .medical-program-section .medical-program-copy h2 {
  font-size: clamp(2.05rem, 2.25vw, 2.55rem) !important;
  max-width: 100% !important;
}

body.medical-landing .medical-complete-service {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 58%, #f6faff 100%) !important;
}

body.medical-landing .medical-process-light,
body.medical-landing .medical-patient-journey,
body.medical-landing .b2b-faqs {
  background: #fff !important;
}

body.medical-landing .medical-specialty-carousel-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
}

body.medical-landing .medical-complete-service-copy p strong {
  color: var(--primary) !important;
  font-weight: 800 !important;
}

body.medical-landing .medical-standard-card:hover,
body.medical-landing .medical-standard-card:focus-within,
body.medical-landing .medical-standard-card:active {
  border-color: var(--accent) !important;
  outline: 0 !important;
  box-shadow: 0 24px 58px rgba(16, 42, 76, .14) !important;
}

body.medical-landing .medical-behind-scenes.company-trust-proof {
  background: linear-gradient(135deg, #07172b 0%, #062b55 58%, #0a3665 100%) !important;
  padding-block: clamp(64px, 7vw, 104px) !important;
}

body.medical-landing .medical-behind-scenes.company-trust-proof .container {
  max-width: min(1600px, calc(100% - 16px)) !important;
}

body.medical-landing .medical-trust-proof-grid {
  align-items: center !important;
  display: grid !important;
  gap: clamp(46px, 6vw, 92px) !important;
  grid-template-columns: minmax(420px, .74fr) minmax(820px, 1.26fr) !important;
}

body.medical-landing .medical-behind-scenes .company-trust-panel {
  color: #fff !important;
  justify-self: start !important;
  margin: 0 0 0 clamp(-48px, -3.4vw, -18px) !important;
  max-width: 760px !important;
  padding: 0 !important;
  text-align: left !important;
}

body.medical-landing .medical-behind-scenes .company-trust-panel .section-label {
  color: var(--accent) !important;
  justify-content: flex-start !important;
}

body.medical-landing .medical-behind-scenes .company-trust-panel h2 {
  color: #fff !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(2rem, 2.55vw, 2.8rem) !important;
  line-height: 1.08 !important;
  margin: 0 0 18px !important;
  max-width: 100% !important;
  text-wrap: balance !important;
}

body.medical-landing .medical-behind-scenes .company-trust-panel h2::after {
  background: #E6BC00 !important;
  content: "" !important;
  display: block !important;
  height: 3px !important;
  margin: 12px 0 0 !important;
  width: 42px !important;
}

body.medical-landing .medical-behind-scenes .company-trust-panel p {
  color: rgba(255, 255, 255, .82) !important;
  font-size: clamp(1.02rem, .94rem + .24vw, 1.15rem) !important;
  line-height: 1.66 !important;
  margin: 0 !important;
  max-width: 56ch !important;
  text-align: left !important;
  text-align-last: left !important;
}

body.medical-landing .medical-behind-scenes .company-trust-highlight {
  color: var(--accent) !important;
  font-weight: 700 !important;
  margin-top: 18px !important;
}

body.medical-landing .medical-behind-scenes .company-trust-points {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  justify-content: flex-start !important;
  margin-top: 24px !important;
}

body.medical-landing .medical-behind-scenes .company-trust-point {
  align-items: center !important;
  background: rgba(255, 255, 255, .06) !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: 999px !important;
  color: #fff !important;
  display: flex !important;
  gap: 10px !important;
  justify-content: center !important;
  padding: 12px 16px !important;
}

body.medical-landing .medical-behind-scenes .company-trust-point-icon svg {
  fill: none !important;
  height: 20px !important;
  stroke: currentColor !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  stroke-width: 1.8 !important;
  width: 20px !important;
}

body.medical-landing .medical-behind-scenes .company-proof-cards {
  align-self: center !important;
  align-items: stretch !important;
  display: grid !important;
  gap: clamp(16px, 1.8vw, 24px) !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

body.medical-landing .medical-behind-scenes .company-proof-cards .b2b-testimonial-card {
  background: rgba(255, 255, 255, .94) !important;
  border: 1px solid rgba(255, 255, 255, .22) !important;
  border-radius: 16px !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .16) !important;
  min-height: 0 !important;
  padding: clamp(16px, 1.4vw, 22px) !important;
}

body.medical-landing .medical-behind-scenes .company-proof-cards .b2b-testimonial-card p {
  color: #284260 !important;
  font-size: clamp(.88rem, .82rem + .12vw, .96rem) !important;
  line-height: 1.46 !important;
  margin-bottom: 14px !important;
}

body.medical-landing .medical-behind-scenes .company-proof-cards .b2b-testimonial-quote {
  color: var(--secondary) !important;
  display: block !important;
  font-family: Georgia, serif !important;
  font-size: 2.3rem !important;
  font-weight: 800 !important;
  line-height: .75 !important;
  margin-bottom: 8px !important;
}

body.medical-landing .medical-behind-scenes .company-proof-cards .b2b-testimonial-footer {
  align-items: center !important;
  display: flex !important;
  gap: 14px !important;
  justify-content: space-between !important;
  margin-top: auto !important;
  min-width: 0 !important;
}

body.medical-landing .medical-behind-scenes .company-proof-cards .testimonial-stars {
  color: var(--accent) !important;
  display: inline-flex !important;
  flex: 0 0 auto !important;
  font-size: .95rem !important;
  justify-content: flex-end !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

body.medical-landing .medical-patient-grid {
  margin-top: 0 !important;
  transform: translateY(clamp(-26px, -2.2vw, -14px)) !important;
}

body.medical-landing .medical-patient-journey .section-header {
  margin-bottom: clamp(14px, 1.8vw, 24px) !important;
}

@media (max-width: 1180px) {
  body.medical-landing .medical-trust-proof-grid {
    grid-template-columns: 1fr !important;
  }

  body.medical-landing .medical-behind-scenes .company-trust-panel {
    margin-left: 0 !important;
    max-width: 760px !important;
  }

  body.medical-landing .medical-behind-scenes .company-proof-cards {
    grid-template-columns: repeat(3, minmax(240px, 1fr)) !important;
    overflow-x: auto !important;
    padding-bottom: 8px !important;
  }
}

@media (max-width: 760px) {
  body.medical-landing .medical-behind-scenes .company-proof-cards {
    grid-template-columns: 1fr !important;
    overflow: visible !important;
  }
}

/* ============================================================
   Mobile Responsive Fixes — June 2026
   ============================================================ */

/* 1. Navbar: remove gray box from lang-trigger and hamburger buttons */
@media (max-width: 900px) {
  .lang-trigger {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
  }
  .hamburger {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
  }
}



/* 3. Hero split-image: keep hidden at ≤900px (background is set on parent) */
@media (max-width: 900px) {
  body.b2b-landing:not(.medical-landing) .split-hero-image,
  body.medical-landing .medical-hero .split-hero-image {
    display: none !important;
  }
}

/* 4. Hero-highlight: remove text-shadow inherited from title on mobile */
@media (max-width: 900px) {
  body.b2b-landing .split-hero-title .hero-highlight,
  body.medical-landing .split-hero-title .hero-highlight {
    text-shadow: none !important;
    color: #102A4C !important;
    background: #FFD21F !important;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
}

/* 5. Médicos "Tus pacientes ya van a viajar" section:
      dark overlay so background image doesn't bleed into white text */
@media (max-width: 900px) {
  body.medical-landing .medical-program-section {
    background:
      linear-gradient(rgba(6, 43, 85, 0.82), rgba(6, 43, 85, 0.82)),
      url("../assets/images/medical-program-office-bg.webp") center center / cover no-repeat !important;
    height: auto !important;
    min-height: 0 !important;
    padding-block: 64px 52px !important;
  }
  body.medical-landing .medical-program-section .medical-program-direct {
    width: 100% !important;
    max-width: 560px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    transform: none !important;
    align-items: flex-start !important;
    text-align: left !important;
  }
  body.medical-landing .medical-program-section .medical-program-copy h2 {
    font-size: clamp(1.7rem, 6vw, 2.1rem) !important;
    max-width: 100% !important;
    text-align: left !important;
  }
  body.medical-landing .medical-program-section .medical-program-text {
    text-align: left !important;
  }
  body.medical-landing .medical-program-section .medical-program-text p {
    max-width: 100% !important;
    text-align: left !important;
  }
}

/* 6. Médicos patient journey: reduce title size on small screens */
@media (max-width: 560px) {
  body.medical-landing .medical-patient-journey h2 {
    font-size: clamp(1.6rem, 7vw, 2rem) !important;
    line-height: 1.14 !important;
  }
  body.medical-landing .medical-patient-journey .section-subtitle {
    font-size: 0.97rem !important;
  }
}

/* 7. Médicos phone cards: slide-up animation when scrolled into view on mobile */
@media (max-width: 900px) {
  body.medical-landing .medical-patient-card {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.55s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  body.medical-landing .medical-patient-card.is-phone-hovered {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/* 8. General: prevent accidental horizontal overflow in sections */
@media (max-width: 900px) {
  body.medical-landing main > section,
  body.b2b-landing main > section {
    overflow-x: hidden;
  }
}

/* ============================================================
   Mobile Fixes Round 2 — June 2026
   ============================================================ */

/* 9. Mobile nav: CTA button "Hablemos hoy" — accent background so text is readable
      (.mobile-nav .btn sets color: var(--primary) which makes btn-primary invisible) */
.mobile-nav .btn.btn-primary {
  background: var(--accent) !important;
  color: var(--primary) !important;
  border-color: transparent !important;
  font-weight: 700 !important;
}

/* 10. Médicos hero: darken right-side gradient so white text is always readable
       (original has rgba(255,255,255,.2) on right which makes text disappear) */
@media (max-width: 900px) {
  body.medical-landing .medical-hero {
    background:
      linear-gradient(180deg, rgba(4, 18, 42, .78) 0%, rgba(4, 18, 42, .72) 100%),
      url("../assets/images/service-medical-concierge.webp?v=20260517c") center center / cover no-repeat !important;
  }
}

/* 11. Médicos "Tus pacientes ya van a viajar" — fix container alignment and title overflow */
@media (max-width: 900px) {
  body.medical-landing .medical-program-section .container {
    justify-content: center !important;
    padding-inline: 24px !important;
  }
  body.medical-landing .medical-program-section .medical-program-direct {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    align-items: flex-start !important;
    text-align: left !important;
  }
  body.medical-landing .medical-program-section .medical-program-copy h2 {
    font-size: clamp(1.55rem, 5.5vw, 2rem) !important;
    max-width: 100% !important;
    text-align: left !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  body.medical-landing .medical-program-section .medical-program-text p {
    max-width: 100% !important;
    text-align: left !important;
    word-break: break-word !important;
  }
  .medical-program-title-line {
    display: block !important;
  }
}

/* ============================================================
   Mobile Fixes Round 3 — June 2026
   ============================================================ */

/* 12. Médicos hero: force white text for ALL text inside the hero on mobile.
       Base rules have !important + competing specificity — override here at end of file. */
@media (max-width: 900px) {
  body.medical-landing .medical-hero .split-hero-content,
  body.medical-landing .medical-hero .split-hero-content p,
  body.medical-landing .medical-hero .split-hero-content .split-hero-kicker,
  body.medical-landing .medical-hero .split-hero-content .split-hero-title,
  body.medical-landing .medical-hero .split-hero-content .split-hero-desc {
    color: #fff !important;
    text-shadow: none !important;
  }
}

/* 13. Médicos program section: white text since background is now dark blue overlay */
@media (max-width: 900px) {
  body.medical-landing .medical-program-section .medical-program-copy h2,
  body.medical-landing .medical-program-section .medical-program-copy .medical-program-title-line {
    color: #fff !important;
    text-shadow: none !important;
  }
  body.medical-landing .medical-program-section .medical-program-text p,
  body.medical-landing .medical-program-section .medical-program-text p:last-child,
  body.medical-landing .medical-program-section .medical-program-text p strong {
    color: rgba(255, 255, 255, 0.88) !important;
    text-shadow: none !important;
  }
}

/* ============================================================
   Home Page Mobile — Complete Overhaul
   ============================================================ */

@media (max-width: 768px) {

  /* ── 1. HERO TITLE: smaller font so <br> tags give clean 3-line layout ── */
  body:not(.b2b-landing) .hero-text-container {
    min-height: 0 !important;
    position: static !important;
  }
  body:not(.b2b-landing) .hero-text-slide {
    position: static !important;
    inset: auto !important;
  }
  body:not(.b2b-landing) .hero .hero-title {
    font-size: clamp(1.38rem, 5.4vw, 1.85rem) !important;
    line-height: 1.14 !important;
    max-width: none !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 18px !important;
  }

  /* ── 2. HERO DESC: more air between title and paragraph ── */
  body:not(.b2b-landing) .hero .hero-desc {
    font-size: clamp(0.84rem, 3.5vw, 0.95rem) !important;
    line-height: 1.68 !important;
    max-width: 32ch !important;
    margin-top: 2px !important;
  }

  /* ── 3. HERO CTA: pull up so it sits closer to text ── */
  body:not(.b2b-landing) .hero-cta-container {
    margin-top: 24px !important;
    animation: none !important;
    opacity: 1 !important;
  }
  body:not(.b2b-landing) .hero-progress {
    margin-top: 20px !important;
  }

  /* ── 4. STATS: flush against hero, connects visually to profiles ── */
  body:not(.b2b-landing) .hero {
    padding-bottom: 0 !important;
  }
  body:not(.b2b-landing) .stats-section {
    background: linear-gradient(180deg, #f0f7ff 0%, #EAF6FF 100%) !important;
    margin-top: 0 !important;
    padding: 14px 0 36px !important;
  }
  body:not(.b2b-landing) .stats-grid {
    border-radius: 16px !important;
    border: 1px solid rgba(191, 216, 244, 0.5) !important;
    box-shadow: 0 4px 20px rgba(6, 43, 85, 0.06) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    margin-inline: 4px !important;
  }

  /* ── 5. PROFILES: a bit more gap between title and cards ── */
  body:not(.b2b-landing) .minimal-profiles {
    margin-top: 16px !important;
  }

  /* ── 6. CAROUSEL: vertical stack with properly visible cards ── */
  body:not(.b2b-landing) .scroll-container {
    height: auto !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }
  body:not(.b2b-landing) .scroll-wrapper {
    flex-direction: column !important;
    min-width: 0 !important;
    gap: 14px !important;
    padding: 0 16px !important;
    overflow: visible !important;
  }
  body:not(.b2b-landing) .scroll-title {
    min-width: 0 !important;
    width: 100% !important;
    padding-right: 0 !important;
    margin-bottom: 6px !important;
    display: block !important;
  }
  body:not(.b2b-landing) .scroll-title::after {
    display: none !important;
  }
  body:not(.b2b-landing) .scroll-title h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem) !important;
  }
  /* Card: explicit height so image fills correctly */
  body:not(.b2b-landing) .dest-card {
    width: 100% !important;
    height: 260px !important;
    scroll-snap-align: none !important;
    flex-shrink: 0;
  }
  body:not(.b2b-landing) .dest-card-inner {
    height: 100% !important;
    border-radius: 16px !important;
    position: relative !important;
    overflow: hidden !important;
  }
  /* Image as absolute fill so it covers the card */
  body:not(.b2b-landing) .dest-card-inner img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  body:not(.b2b-landing) .dest-card-content {
    padding: 18px 20px 20px !important;
  }
  body:not(.b2b-landing) .dest-card-content h3 {
    font-size: 1.22rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
  }
  body:not(.b2b-landing) .dest-card-content span {
    font-size: 0.7rem !important;
    min-height: 0 !important;
    margin-bottom: 8px !important;
  }
  body:not(.b2b-landing) .dest-card-content p {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
  }
}

/* ============================================================
   Home Mobile — DEFINITIVE FIXES (override all previous)
   ============================================================ */

/* ═══ HERO: bigger titles, content higher ═══ */
@media (max-width: 768px) {
  body:not(.b2b-landing) .hero {
    padding-top: 82px !important;
    padding-bottom: 52px !important;
  }
  body:not(.b2b-landing) .hero-content {
    justify-content: flex-start !important;
    padding-top: 0 !important;
    padding-inline: 22px !important;
  }
  body:not(.b2b-landing) .hero-text-container {
    min-height: 0 !important;
    position: static !important;
  }
  body:not(.b2b-landing) .hero-text-slide {
    position: static !important;
    inset: auto !important;
  }
  body:not(.b2b-landing) .hero .hero-title {
    font-size: clamp(1.78rem, 7.6vw, 2.5rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em !important;
    max-width: none !important;
    text-wrap: initial !important;
    margin-bottom: 18px !important;
  }
  body:not(.b2b-landing) .hero .hero-desc {
    font-size: clamp(0.88rem, 3.8vw, 1.02rem) !important;
    line-height: 1.65 !important;
    max-width: 30ch !important;
    margin-top: 0 !important;
  }
  body:not(.b2b-landing) .hero-progress {
    margin-top: 22px !important;
  }
  body:not(.b2b-landing) .hero-cta-container {
    margin-top: 26px !important;
    animation: none !important;
    opacity: 1 !important;
  }
  body:not(.b2b-landing) .hero-cta {
    min-width: 0 !important;
    width: auto !important;
    padding: 14px 32px !important;
  }
}



/* ═══ PLANE + WORK-MEANING: bigger and tighter ═══ */
@media (max-width: 640px) {
  body:not(.b2b-landing) .plane-showcase-frame {
    min-height: 240px !important;
    height: 240px !important;
    transform: translateY(20px) !important;
  }
  body:not(.b2b-landing) .plane-showcase-image {
    width: 200% !important;
    transform: translateX(0%) translateY(-12%) !important;
  }
  body:not(.b2b-landing) .work-meaning-card::before {
    top: 80px !important;
    height: 190px !important;
    width: calc(100% - 44px) !important;
  }
  body:not(.b2b-landing) .benefits-band {
    margin-top: -24px !important;
    position: relative !important;
    z-index: 5 !important;
  }
}

/* ═══ CAROUSEL: restore horizontal scroll like desktop ═══ */
@media (max-width: 768px) {
  /* Override previous column-flex change — back to horizontal */
  body:not(.b2b-landing) .scroll-container {
    height: auto !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  }
  body:not(.b2b-landing) .scroll-wrapper {
    flex-direction: row !important;
    min-width: max-content !important;
    gap: 12px !important;
    padding: 0 16px 20px !important;
    align-items: stretch !important;
    overflow: visible !important;
  }
  /* Title: first item in the scroll, visible before swiping */
  body:not(.b2b-landing) .scroll-title {
    width: 76vw !important;
    min-width: 76vw !important;
    flex-shrink: 0 !important;
    padding-right: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding-bottom: 8px !important;
  }
  body:not(.b2b-landing) .scroll-title::after {
    display: none !important;
  }
  body:not(.b2b-landing) .scroll-title h2 {
    font-size: clamp(1.55rem, 6.5vw, 2.1rem) !important;
    margin-bottom: 10px !important;
    line-height: 1.1 !important;
  }
  body:not(.b2b-landing) .scroll-title p {
    font-size: 0.87rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
  }
  /* Cards: swipeable, proper size to show images */
  body:not(.b2b-landing) .dest-card {
    width: 72vw !important;
    height: 320px !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start !important;
    border-radius: 18px !important;
  }
  body:not(.b2b-landing) .dest-card-inner {
    height: 100% !important;
    border-radius: 18px !important;
    position: relative !important;
    overflow: hidden !important;
  }
  body:not(.b2b-landing) .dest-card-inner img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  body:not(.b2b-landing) .dest-card-content {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 20px 18px !important;
    background: linear-gradient(to top, rgba(8, 24, 46, 0.97) 0%, rgba(16, 42, 76, 0.52) 60%, transparent 100%) !important;
  }
  body:not(.b2b-landing) .dest-card-content h3 {
    font-size: 1.18rem !important;
    line-height: 1.18 !important;
    margin-bottom: 4px !important;
    color: #fff !important;
  }
  body:not(.b2b-landing) .dest-card-content span {
    font-size: 0.68rem !important;
    min-height: 0 !important;
    margin-bottom: 8px !important;
    display: block !important;
  }
  body:not(.b2b-landing) .dest-card-content p {
    display: none !important;
  }
}

/* ============================================================
   Home Mobile — Stats 2×2 bonito + Plane centrado y abajo
   ============================================================ */

/* ─── STATS: 2×2 grid con íconos, limpio y legible ─── */
@media (max-width: 1024px) {
  body:not(.b2b-landing) .stats-section {
    background: transparent !important;
    margin-top: -38px !important;
    margin-bottom: -150px !important;
    padding: 0 16px 0 !important;
    position: relative !important;
    z-index: 10 !important;
  }
  body:not(.b2b-landing) .stats-grid {
    background: #ffffff !important;
    border: 1px solid rgba(191, 216, 244, 0.55) !important;
    border-radius: 18px !important;
    box-shadow: 0 8px 36px rgba(6, 43, 85, 0.13) !important;
    margin-inline: 0 !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    padding: 6px !important;
  }
  body:not(.b2b-landing) .stat-divider {
    display: none !important;
  }
  /* Todos los items: reset + base style */
  body:not(.b2b-landing) .stat-item {
    align-items: center !important;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14) !important;
    border-left: none !important;
    border-right: none !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    padding: 18px 10px 14px !important;
    text-align: center !important;
  }
  /* Columna derecha: separador vertical izquierdo */
  body:not(.b2b-landing) .stat-item:nth-child(3),
  body:not(.b2b-landing) .stat-item:nth-child(7) {
    border-left: 1px solid rgba(148, 163, 184, 0.14) !important;
  }
  /* Fila inferior: sin borde abajo */
  body:not(.b2b-landing) .stat-item:nth-child(5),
  body:not(.b2b-landing) .stat-item:nth-child(7) {
    border-bottom: none !important;
  }
  /* Ícono visible y bien tamaño */
  body:not(.b2b-landing) .stat-icon {
    display: inline-flex !important;
    margin-bottom: 8px !important;
    color: var(--primary-light) !important;
  }
  body:not(.b2b-landing) .stat-icon svg {
    width: 22px !important;
    height: 22px !important;
  }
  /* Números */
  body:not(.b2b-landing) .stat-number {
    font-size: clamp(1.35rem, 5.2vw, 1.7rem) !important;
    line-height: 1.1 !important;
  }
  /* Etiquetas */
  body:not(.b2b-landing) .stat-label {
    font-size: clamp(0.68rem, 2.4vw, 0.78rem) !important;
    line-height: 1.35 !important;
    margin-top: 2px !important;
  }
  body:not(.b2b-landing) .profiles-section {
    padding-top: 48px !important;
  }
}

/* ─── WORK-MEANING: sky más abajo, avión más grande y centrado ─── */
@media (max-width: 640px) {
  /* Más separación entre título y avión */
  body:not(.b2b-landing) .work-meaning-head {
    margin-bottom: 44px !important;
  }
  /* Sky: bajar al nivel del avión */
  body:not(.b2b-landing) .work-meaning-card::before {
    top: 170px !important;
    height: 210px !important;
    width: calc(100% - 44px) !important;
  }
  /* Frame del avión: más alto y más abajo */
  body:not(.b2b-landing) .plane-showcase-frame {
    min-height: 270px !important;
    height: 270px !important;
    transform: translateY(28px) !important;
  }
  /* Avión: más grande y centrado */
  body:not(.b2b-landing) .plane-showcase-image {
    width: 220% !important;
    transform: translateX(0%) translateY(-6%) !important;
  }
  /* Tarjetas pegadas al avión */
  body:not(.b2b-landing) .benefits-band {
    margin-top: -30px !important;
    position: relative !important;
    z-index: 5 !important;
  }
}

/* ============================================================
   Home Mobile — requested responsive refinements
   ============================================================ */
@media (max-width: 768px) {
  body:not(.b2b-landing) .profiles-section {
    padding-top: 78px !important;
  }

  body:not(.b2b-landing) .profiles-section .container > .reveal {
    margin-bottom: 28px !important;
    max-width: min(100%, 360px) !important;
    text-align: center !important;
  }

  body:not(.b2b-landing) .profiles-section .section-label {
    justify-content: center !important;
  }

  body:not(.b2b-landing) .profiles-section h2 {
    text-align: center !important;
  }

  body:not(.b2b-landing) .profiles-section h2::after {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body:not(.b2b-landing) .minimal-profiles {
    gap: 14px !important;
    margin-top: 8px !important;
    max-width: min(100%, 340px) !important;
  }

  body:not(.b2b-landing) .profile-card-minimal {
    padding: 20px 22px !important;
  }

  body:not(.b2b-landing) .profile-card-header {
    gap: 12px !important;
    margin-bottom: 14px !important;
  }

  body:not(.b2b-landing) .profile-icon {
    height: 48px !important;
    width: 48px !important;
  }

  body:not(.b2b-landing) .profile-card-header h3 {
    font-size: 1.18rem !important;
  }

  body:not(.b2b-landing) .profile-content-minimal p {
    font-size: 0.9rem !important;
    line-height: 1.52 !important;
    margin-bottom: 16px !important;
  }

  body:not(.b2b-landing) .profile-link {
    font-size: 0.88rem !important;
  }

  body:not(.b2b-landing) .destinations-scroll .scroll-container {
    scroll-padding-left: 16px !important;
  }

  body:not(.b2b-landing) .destinations-scroll .scroll-wrapper {
    min-width: max-content !important;
    padding-left: 16px !important;
  }

  body:not(.b2b-landing) .destinations-scroll .scroll-title {
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(240,247,255,.92)) !important;
    border: 1px solid rgba(16,42,76,.08) !important;
    border-radius: 18px !important;
    box-shadow: 0 14px 36px rgba(6,43,85,.08) !important;
    justify-content: center !important;
    min-height: 320px !important;
    order: 0 !important;
    padding: 26px 22px !important;
    scroll-snap-align: start !important;
    text-align: left !important;
    width: 82vw !important;
    min-width: 82vw !important;
  }

  body:not(.b2b-landing) .destinations-scroll .dest-card {
    order: 1 !important;
  }
}

@media (max-width: 420px) {
  body:not(.b2b-landing) .profiles-section {
    padding-top: 86px !important;
  }

  body:not(.b2b-landing) .minimal-profiles {
    max-width: min(100%, 318px) !important;
  }

  body:not(.b2b-landing) .profile-card-minimal {
    padding: 18px 20px !important;
  }
}

/* ============================================================
   Empresas Mobile — testimonials and FAQ alignment refinements
   ============================================================ */
@media (max-width: 768px) {
  body.b2b-landing:not(.medical-landing) .company-proof-cards .b2b-testimonial-card,
  body.b2b-landing:not(.medical-landing) .company-proof-cards .b2b-testimonial-card p {
    text-align: left !important;
  }

  body.b2b-landing:not(.medical-landing) .company-proof-cards .b2b-testimonial-footer {
    align-items: baseline !important;
    display: grid !important;
    gap: 4px 8px !important;
    grid-template-columns: auto auto !important;
    justify-content: start !important;
    text-align: left !important;
  }

  body.b2b-landing:not(.medical-landing) .company-proof-cards .b2b-testimonial-profile,
  body.b2b-landing:not(.medical-landing) .company-proof-cards .testimonial-info {
    display: contents !important;
  }

  body.b2b-landing:not(.medical-landing) .company-proof-cards .testimonial-name {
    grid-column: 1 !important;
    grid-row: 1 !important;
    text-align: left !important;
  }

  body.b2b-landing:not(.medical-landing) .company-proof-cards .testimonial-stars {
    align-self: baseline !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  body.b2b-landing:not(.medical-landing) .company-proof-cards .testimonial-role {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    text-align: left !important;
  }

  body.b2b-landing:not(.medical-landing) .b2b-faqs h2 {
    text-align: center !important;
  }

  body.b2b-landing:not(.medical-landing) .b2b-faqs h2::after {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ============================================================
   Medicos Mobile — hero highlight, program copy, phone spacing
   ============================================================ */
@media (max-width: 900px) {
  body.medical-landing .medical-hero .split-hero-title .hero-highlight.medical-hero-highlight-nowrap {
    align-items: flex-start !important;
    background: transparent !important;
    box-decoration-break: initial !important;
    -webkit-box-decoration-break: initial !important;
    color: #102A4C !important;
    display: inline-flex !important;
    flex-direction: column !important;
    gap: 0.14em !important;
    padding: 0 !important;
    white-space: normal !important;
  }

  body.medical-landing .medical-hero .split-hero-title .medical-hero-highlight-piece {
    background: #FFD21F !important;
    color: #102A4C !important;
    display: inline-block !important;
    line-height: 1.04 !important;
    padding: 0 .12em .04em !important;
    text-shadow: none !important;
    width: fit-content !important;
  }

  body.medical-landing .medical-program-section .container {
    justify-content: flex-start !important;
    padding-inline: 24px !important;
  }

  body.medical-landing .medical-program-section .medical-program-direct {
    align-items: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    max-width: 560px !important;
    text-align: left !important;
    width: 100% !important;
  }

  body.medical-landing .medical-program-section .medical-program-copy,
  body.medical-landing .medical-program-section .medical-program-text,
  body.medical-landing .medical-program-section .medical-program-copy h2,
  body.medical-landing .medical-program-section .medical-program-copy .medical-program-title-line,
  body.medical-landing .medical-program-section .medical-program-text p,
  body.medical-landing .medical-program-section .medical-program-text p:last-child,
  body.medical-landing .medical-program-section .medical-program-text p strong {
    max-width: 100% !important;
    text-align: left !important;
    text-align-last: left !important;
  }

  body.medical-landing .medical-patient-grid {
    margin-top: 64px !important;
  }
}

@media (max-width: 560px) {
  body.medical-landing .medical-patient-grid {
    margin-top: 72px !important;
  }
}

/* ============================================================
   Empresas Mobile — final testimonial and FAQ lock
   ============================================================ */
@media (max-width: 768px) {
  body.b2b-landing:not(.medical-landing) .company-proof-cards--mobile-medical {
    gap: 22px !important;
    grid-template-columns: 1fr !important;
  }

  body.b2b-landing:not(.medical-landing) .company-proof-cards--mobile-medical .b2b-testimonial-card {
    border-radius: 20px !important;
    padding: 28px 26px !important;
    text-align: left !important;
  }

  body.b2b-landing:not(.medical-landing) .company-proof-cards--mobile-medical .b2b-testimonial-quote {
    font-size: 2.1rem !important;
    margin-bottom: 18px !important;
  }

  body.b2b-landing:not(.medical-landing) .company-proof-cards--mobile-medical .b2b-testimonial-card p {
    font-size: 0.95rem !important;
    line-height: 1.48 !important;
    margin-bottom: 22px !important;
    text-align: left !important;
  }

  body.b2b-landing:not(.medical-landing) .company-proof-cards--mobile-medical .b2b-testimonial-footer {
    align-items: end !important;
    display: grid !important;
    gap: 10px 18px !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    justify-content: stretch !important;
    text-align: left !important;
  }

  body.b2b-landing:not(.medical-landing) .company-proof-cards--mobile-medical .b2b-testimonial-profile,
  body.b2b-landing:not(.medical-landing) .company-proof-cards--mobile-medical .testimonial-info {
    display: block !important;
    min-width: 0 !important;
  }

  body.b2b-landing:not(.medical-landing) .company-proof-cards--mobile-medical .testimonial-name {
    display: block !important;
    font-size: 0.98rem !important;
    line-height: 1.18 !important;
    margin-bottom: 8px !important;
    text-align: left !important;
  }

  body.b2b-landing:not(.medical-landing) .company-proof-cards--mobile-medical .testimonial-role {
    display: block !important;
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
    text-align: left !important;
  }

  body.b2b-landing:not(.medical-landing) .company-proof-cards--mobile-medical .testimonial-stars {
    align-self: end !important;
    display: inline-flex !important;
    font-size: 0.98rem !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-content: flex-end !important;
    letter-spacing: 0 !important;
    padding-bottom: 2px !important;
    white-space: nowrap !important;
  }

  body.b2b-landing:not(.medical-landing) .b2b-faqs .container > .reveal {
    margin-bottom: 34px !important;
    text-align: center !important;
  }

  body.b2b-landing:not(.medical-landing) .b2b-faqs h2 {
    text-align: center !important;
  }

  body.b2b-landing:not(.medical-landing) .b2b-faqs h2::after {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.b2b-landing:not(.medical-landing) .b2b-faqs .faq-list {
    margin-top: 12px !important;
  }

  body.b2b-landing:not(.medical-landing) .b2b-faqs .faq-question {
    align-items: center !important;
    display: grid !important;
    gap: 16px !important;
    grid-template-columns: minmax(0, 1fr) 22px !important;
    justify-content: stretch !important;
    text-align: center !important;
  }

  body.b2b-landing:not(.medical-landing) .b2b-faqs .faq-question span {
    min-width: 0 !important;
    text-align: center !important;
  }

  body.b2b-landing:not(.medical-landing) .b2b-faqs .faq-question svg {
    justify-self: end !important;
    margin-left: 0 !important;
  }
}

/* ============================================================
   Home — profile active state, benefits consistency, testimonials
   ============================================================ */
body:not(.b2b-landing) .benefit-item h3 {
  color: #fff !important;
  font-size: clamp(1.18rem, 1rem + 0.45vw, 1.46rem) !important;
  font-weight: 800 !important;
  line-height: 1.16 !important;
}

body:not(.b2b-landing) .benefit-item p {
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.58 !important;
}

body:not(.b2b-landing) .home-testimonials-section {
  background: #f3f6fa;
  padding: clamp(72px, 8vw, 108px) 0;
}

body:not(.b2b-landing) .home-testimonials-section .home-testimonials-header {
  margin-bottom: clamp(28px, 4vw, 44px);
}

body:not(.b2b-landing) .home-credentials-testimonials {
  align-items: stretch;
  display: grid;
  gap: clamp(18px, 2vw, 26px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(28px, 3vw, 42px) auto 0;
  max-width: 100%;
  width: 100%;
}

body:not(.b2b-landing) .home-testimonial-card {
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(16, 42, 76, 0.08) !important;
  border-radius: 16px !important;
  box-shadow: 0 18px 44px rgba(16, 42, 76, 0.08) !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  padding: clamp(22px, 2.2vw, 30px) !important;
  text-align: left !important;
}

body:not(.b2b-landing) .home-testimonial-card .b2b-testimonial-quote {
  color: #6aa1d5 !important;
  display: block !important;
  font-family: Georgia, serif;
  font-size: 2.3rem !important;
  font-weight: 800 !important;
  line-height: 0.75 !important;
  margin-bottom: 22px !important;
}

body:not(.b2b-landing) .home-testimonial-card p {
  color: #284260 !important;
  font-size: clamp(1rem, .92rem + .18vw, 1.08rem) !important;
  line-height: 1.52 !important;
  margin: 0 0 26px !important;
  text-align: left !important;
}

body:not(.b2b-landing) .home-testimonial-card .b2b-testimonial-footer {
  align-items: end !important;
  display: grid !important;
  gap: 10px 18px !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  margin-top: auto !important;
  text-align: left !important;
}

body:not(.b2b-landing) .home-testimonial-card .b2b-testimonial-profile,
body:not(.b2b-landing) .home-testimonial-card .testimonial-info {
  display: block !important;
  min-width: 0 !important;
}

body:not(.b2b-landing) .home-testimonial-card .testimonial-name {
  color: var(--primary) !important;
  display: block !important;
  font-size: 1.08rem !important;
  font-weight: 800 !important;
  line-height: 1.22 !important;
  margin-bottom: 8px !important;
  text-align: left !important;
}

body:not(.b2b-landing) .home-testimonial-card .testimonial-role {
  color: var(--primary-light) !important;
  display: block !important;
  font-size: 0.98rem !important;
  line-height: 1.3 !important;
  text-align: left !important;
}

body:not(.b2b-landing) .home-testimonial-card .testimonial-stars {
  align-self: end !important;
  color: var(--accent) !important;
  display: inline-flex !important;
  font-size: 1.08rem !important;
  justify-content: flex-end !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  padding-bottom: 2px !important;
  white-space: nowrap !important;
}

@media (max-width: 768px) {
  body:not(.b2b-landing) .profile-card-minimal.is-mobile-selected {
    border-color: var(--accent) !important;
    box-shadow: 0 14px 34px rgba(6, 43, 85, 0.11), 0 0 0 2px rgba(255, 210, 31, 0.46) !important;
  }

  body:not(.b2b-landing) .home-credentials-testimonials {
    gap: 18px;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  body:not(.b2b-landing) .home-testimonial-card {
    border-radius: 20px !important;
    padding: 28px 26px !important;
  }

  body:not(.b2b-landing) .home-testimonial-card p {
    font-size: 1.04rem !important;
    line-height: 1.48 !important;
  }

  body:not(.b2b-landing) .home-testimonial-card .testimonial-name {
    font-size: 0.96rem !important;
    line-height: 1.18 !important;
    margin-bottom: 6px !important;
  }

  body:not(.b2b-landing) .home-testimonial-card .testimonial-role {
    font-size: 0.88rem !important;
    line-height: 1.22 !important;
  }

  body:not(.b2b-landing) .home-testimonial-card .testimonial-stars {
    font-size: 0.96rem !important;
  }
}

/* ============================================================
   Medicos — patient banner and mobile FAQ arrows
   ============================================================ */
body.medical-landing .medical-patient-banner {
  background: #062b55 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  margin: clamp(28px, 3.2vw, 44px) auto 0 !important;
  max-width: min(1120px, calc(100vw - 96px)) !important;
  padding: clamp(18px, 2.2vw, 26px) clamp(28px, 5vw, 72px) !important;
  text-align: center !important;
}

body.medical-landing .medical-patient-banner p {
  color: #fff !important;
  font-size: clamp(1rem, 1.2vw, 1.18rem) !important;
  font-weight: 500 !important;
  line-height: 1.28 !important;
  margin: 0 auto !important;
  max-width: 76ch !important;
  text-align: center !important;
}

body.medical-landing .medical-patient-banner-line {
  display: block;
}

body.medical-landing .medical-patient-banner strong {
  color: #fff !important;
  font-weight: 800 !important;
}

@media (max-width: 768px) {
  body.medical-landing .medical-patient-banner {
    max-width: calc(100vw - 40px) !important;
    padding: 18px 24px !important;
  }

  body.medical-landing .b2b-faqs .faq-question {
    align-items: center !important;
    display: grid !important;
    gap: 16px !important;
    grid-template-columns: minmax(0, 1fr) 22px !important;
    justify-content: stretch !important;
  }

  body.medical-landing .b2b-faqs .faq-question svg {
    justify-self: end !important;
    margin-left: 0 !important;
  }
}

/* ============================================================
   Home — compact small-laptop responsive pass
   ============================================================ */
@media (min-width: 901px) and (max-width: 1440px) {
  body:not(.b2b-landing) section:not(.hero) {
    padding-block: clamp(28px, 3vw, 48px) !important;
  }



  body:not(.b2b-landing) .profiles-section h2,
  body:not(.b2b-landing) .work-meaning-title,
  body:not(.b2b-landing) .credentials-header h2 {
    font-size: clamp(1.65rem, 1.7vw, 2.25rem) !important;
  }

  body:not(.b2b-landing) .profiles-section {
    min-height: 430px !important;
    padding-block: 58px 66px !important;
  }

  body:not(.b2b-landing) .profiles-section .container > .reveal {
    margin-bottom: 30px !important;
  }

  body:not(.b2b-landing) .credentials-header {
    margin-bottom: 22px !important;
  }

  body:not(.b2b-landing) .minimal-profiles {
    gap: 18px !important;
    max-width: 880px !important;
  }

  body:not(.b2b-landing) .profile-card-minimal {
    padding: 24px 30px !important;
  }

  body:not(.b2b-landing) .profile-icon {
    height: 48px !important;
    width: 48px !important;
  }

  body:not(.b2b-landing) .profile-card-header h3 {
    font-size: 1.18rem !important;
  }

  body:not(.b2b-landing) .profile-content-minimal p {
    font-size: 0.88rem !important;
    line-height: 1.48 !important;
    margin-bottom: 16px !important;
  }

  body:not(.b2b-landing) .work-meaning-section {
    padding-block: 28px 38px !important;
  }

  body:not(.b2b-landing) .work-meaning-card::before {
    height: 150px !important;
    top: 104px !important;
    width: min(680px, calc(100% - 180px)) !important;
  }

  body:not(.b2b-landing) .plane-showcase-frame {
    height: 154px !important;
    max-width: 720px !important;
    transform: translateY(24px) !important;
  }

  body:not(.b2b-landing) .plane-showcase-image {
    width: 122% !important;
  }

  body:not(.b2b-landing) .benefits-band {
    border-radius: 18px !important;
    margin-top: -18px !important;
  }

  body:not(.b2b-landing) .benefit-item {
    padding: 24px 22px !important;
  }

  body:not(.b2b-landing) .benefit-icon {
    margin-bottom: 12px !important;
  }

  body:not(.b2b-landing) .benefit-icon svg {
    height: 26px !important;
    width: 26px !important;
  }

  body:not(.b2b-landing) .benefit-item h3 {
    font-size: 1.05rem !important;
    margin-bottom: 10px !important;
  }

  body:not(.b2b-landing) .benefit-item p {
    font-size: 0.88rem !important;
    line-height: 1.48 !important;
  }

  body:not(.b2b-landing) .destinations-scroll {
    padding-block: 18px 32px !important;
  }

  body:not(.b2b-landing) .scroll-container {
    align-items: flex-start !important;
    box-sizing: border-box !important;
    height: min(72vh, 640px) !important;
    min-height: 560px !important;
    overflow: visible !important;
    padding-top: 76px !important;
  }

  body:not(.b2b-landing) .scroll-wrapper {
    align-items: flex-start !important;
    gap: 24px !important;
    padding-inline: clamp(28px, 5vw, 72px) !important;
  }

  body:not(.b2b-landing) .scroll-title {
    min-width: 340px !important;
    padding-right: 16px !important;
  }

  body:not(.b2b-landing) .scroll-title h2 {
    font-size: clamp(1.75rem, 2.3vw, 2.45rem) !important;
    line-height: 1.08 !important;
  }

  body:not(.b2b-landing) .scroll-title p {
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
    max-width: 390px !important;
  }

  body:not(.b2b-landing) .dest-card {
    height: min(54vh, 460px) !important;
    min-height: 410px !important;
    width: 360px !important;
  }

  body:not(.b2b-landing) .dest-card-content {
    min-height: 132px !important;
    padding: 24px 22px !important;
  }

  body:not(.b2b-landing) .dest-card-content span {
    font-size: 0.66rem !important;
    min-height: 0 !important;
  }

  body:not(.b2b-landing) .dest-card-content h3 {
    font-size: 1.32rem !important;
    line-height: 1.12 !important;
  }

  body:not(.b2b-landing) .cred-grid-three .cred-card {
    padding: 16px !important;
  }

  body:not(.b2b-landing) .cred-copy h3 {
    font-size: 1rem !important;
  }

  body:not(.b2b-landing) .cred-copy p {
    font-size: 0.82rem !important;
  }

  body:not(.b2b-landing) .home-credentials-testimonials {
    gap: 18px !important;
    margin-top: 26px !important;
  }

  body:not(.b2b-landing) .home-testimonial-card {
    padding: 22px !important;
  }

  body:not(.b2b-landing) .home-testimonial-card .b2b-testimonial-quote {
    font-size: 2rem !important;
    margin-bottom: 16px !important;
  }

  body:not(.b2b-landing) .home-testimonial-card p {
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
    margin-bottom: 20px !important;
  }

  body:not(.b2b-landing) .home-testimonial-card .testimonial-name {
    font-size: 0.94rem !important;
  }

  body:not(.b2b-landing) .home-testimonial-card .testimonial-role {
    font-size: 0.84rem !important;
  }

  body:not(.b2b-landing) .home-final-cta {
    padding-block: 46px !important;
  }

  body:not(.b2b-landing) .home-final-cta-inner h2 {
    font-size: clamp(1.75rem, 2.2vw, 2.55rem) !important;
  }
}

/* ============================================================
   Global section typography consistency
   Applies to section titles/copy, excluding heroes and framed cards.
   ============================================================ */
:root {
  --section-title-uniform: clamp(1.9rem, 1.28rem + 1.55vw, 2.7rem);
  --section-copy-uniform: clamp(0.98rem, 0.9rem + 0.2vw, 1.08rem);
}

body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) > .container > .reveal > h2,
body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .section-header > h2,
body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .credentials-header > h2,
body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .scroll-title > h2,
body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .work-meaning-title,
body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .medical-specialty-intro > h2,
body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .medical-program-copy > h2,
body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .intro-block-text > h2,
body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .company-trust-panel > h2,
body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .medical-complete-service-copy > h2,
body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .medical-standards-header > h2,
body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .medical-behind-scenes-copy > h2 {
  font-size: var(--section-title-uniform) !important;
  line-height: 1.08 !important;
}

body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .section-subtitle,
body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .section-header > p,
body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .scroll-title > p,
body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .intro-block-text > p,
body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .company-trust-panel > p,
body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .medical-specialty-intro > p,
body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .medical-program-text > p,
body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .medical-complete-service-copy > p,
body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .medical-standards-header > p,
body:not(.contact-page) main > section:not(.hero):not(.split-hero):not(.medical-hero):not(.home-final-cta) .medical-behind-scenes-text > p {
  font-size: var(--section-copy-uniform) !important;
  line-height: 1.6 !important;
}

@media (min-width: 901px) and (max-width: 1440px) {
  :root {
    --section-title-uniform: clamp(1.65rem, 1.7vw, 2.25rem);
    --section-copy-uniform: 0.92rem;
  }
}

/* ============================================================
   Empresas — compact typography pass outside cards/hero/media
   ============================================================ */
body.b2b-landing:not(.medical-landing) {
  --section-title-uniform: clamp(1.74rem, 1.22rem + 1.35vw, 2.38rem);
  --section-copy-uniform: clamp(0.92rem, 0.86rem + 0.16vw, 1rem);
  --company-copy-compact: clamp(0.92rem, 0.86rem + 0.16vw, 1rem);
}

body.b2b-landing:not(.medical-landing) main > section:not(.split-hero):not(.booking-cta) {
  font-size: var(--company-copy-compact);
}

body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-text h2,
body.b2b-landing:not(.medical-landing) .ed-header h2,
body.b2b-landing:not(.medical-landing) .profiles-section > .container > .reveal > h2,
body.b2b-landing:not(.medical-landing) .company-trust-panel h2,
body.b2b-landing:not(.medical-landing) .philosophy-title,
body.b2b-landing:not(.medical-landing) .b2b-faqs h2 {
  font-size: var(--section-title-uniform) !important;
  line-height: 1.08 !important;
}

body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-text p,
body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-quote,
body.b2b-landing:not(.medical-landing) .ed-header p,
body.b2b-landing:not(.medical-landing) .company-trust-panel > p,
body.b2b-landing:not(.medical-landing) .philosophy-p,
body.b2b-landing:not(.medical-landing) .philosophy-p.secondary {
  font-size: var(--company-copy-compact) !important;
  line-height: 1.58 !important;
}

body.b2b-landing:not(.medical-landing) .company-trust-point span:last-child {
  font-size: 0.86rem !important;
}

@media (min-width: 901px) and (max-width: 1440px) {
  body.b2b-landing:not(.medical-landing) {
    --section-title-uniform: clamp(1.54rem, 1.45vw, 2.04rem);
    --section-copy-uniform: 0.88rem;
    --company-copy-compact: 0.88rem;
  }

  body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-text h2,
  body.b2b-landing:not(.medical-landing) .company-trust-panel h2,
  body.b2b-landing:not(.medical-landing) .philosophy-title {
    max-width: 18ch;
  }

  body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-text p,
  body.b2b-landing:not(.medical-landing) .company-trust-panel > p,
  body.b2b-landing:not(.medical-landing) .philosophy-p {
    max-width: 54ch;
  }
}

/* ============================================================
   Medicos — laptop typography and alignment refinement
   ============================================================ */
@media (min-width: 901px) and (max-width: 1440px) {
  body.medical-landing {
    --section-title-uniform: clamp(1.56rem, 1.5vw, 2.08rem);
    --section-copy-uniform: 0.9rem;
  }

  body.medical-landing .medical-hero .split-hero-kicker {
    font-size: 0.68rem !important;
    letter-spacing: 0.11em !important;
  }

  body.medical-landing .medical-hero .split-hero-title {
    font-size: clamp(1.95rem, 3.05vw, 2.8rem) !important;
    line-height: 1.08 !important;
    max-width: 13.8ch !important;
  }

  body.medical-landing .medical-hero .split-hero-desc {
    font-size: 0.95rem !important;
    line-height: 1.58 !important;
    max-width: 34rem !important;
  }

  body.medical-landing main > section:not(.medical-hero) .section-header > h2,
  body.medical-landing main > section:not(.medical-hero) .medical-specialty-intro > h2,
  body.medical-landing main > section:not(.medical-hero) .medical-program-copy > h2,
  body.medical-landing main > section:not(.medical-hero) .company-trust-panel > h2,
  body.medical-landing main > section:not(.medical-hero) .medical-patient-journey h2,
  body.medical-landing main > section:not(.medical-hero) .b2b-faqs h2 {
    font-size: var(--section-title-uniform) !important;
    line-height: 1.08 !important;
  }

  body.medical-landing main > section:not(.medical-hero) .section-subtitle,
  body.medical-landing main > section:not(.medical-hero) .section-header > p,
  body.medical-landing main > section:not(.medical-hero) .medical-specialty-intro > p,
  body.medical-landing main > section:not(.medical-hero) .medical-program-text > p,
  body.medical-landing main > section:not(.medical-hero) .company-trust-panel > p,
  body.medical-landing main > section:not(.medical-hero) .medical-patient-journey .section-subtitle {
    font-size: var(--section-copy-uniform) !important;
    line-height: 1.58 !important;
  }

  body.medical-landing .medical-program-section .container {
    padding-left: clamp(28px, 5vw, 72px) !important;
    padding-right: clamp(52px, 7vw, 108px) !important;
  }

  body.medical-landing .medical-program-section .medical-program-direct {
    margin-left: auto !important;
    margin-right: clamp(12px, 2.5vw, 42px) !important;
    max-width: 560px !important;
    transform: none !important;
    width: min(560px, 46%) !important;
  }

  body.medical-landing .medical-program-section .medical-program-copy,
  body.medical-landing .medical-program-section .medical-program-text {
    max-width: 100% !important;
  }

  body.medical-landing .medical-program-section .medical-program-copy .medical-program-title-line {
    text-align: right !important;
  }

  body.medical-landing .medical-program-section .medical-program-text p {
    text-align: right !important;
    text-align-last: right !important;
  }

  body.medical-landing .medical-trust-proof-grid {
    gap: clamp(34px, 4vw, 62px) !important;
    grid-template-columns: minmax(340px, 0.82fr) minmax(680px, 1.18fr) !important;
  }

  body.medical-landing .medical-behind-scenes .company-trust-panel {
    justify-self: center !important;
    margin-left: 0 !important;
    max-width: 560px !important;
    transform: translateX(12px) !important;
  }

  body.medical-landing .medical-behind-scenes .company-trust-panel h2,
  body.medical-landing .medical-behind-scenes .company-trust-panel p {
    max-width: 100% !important;
  }
}

/* ============================================================
   Empresas — final typography reference lock
   Copy matches the service-card body copy: 0.95rem.
   Editorial section titles stay larger without affecting calculator/cards.
   ============================================================ */
body.b2b-landing:not(.medical-landing) {
  --company-copy-reference: 0.95rem;
  --company-editorial-title-reference: clamp(2.08rem, 1.65rem + 1.15vw, 2.72rem);
  --company-utility-title-reference: clamp(1.55rem, 1.28rem + .72vw, 1.9rem);
  --section-copy-uniform: var(--company-copy-reference);
  --company-copy-compact: var(--company-copy-reference);
}

body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) .company-calc-intro h2,
body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) .ed-header h2,
body.b2b-landing:not(.medical-landing) main > section.profiles-section h2,
body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) .company-trust-panel h2,
body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) .philosophy-title,
body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) .booking-cta-inner h2 {
  font-size: var(--company-editorial-title-reference) !important;
  line-height: 1.14 !important;
  letter-spacing: 0 !important;
}

body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) .calc-header h2,
body.b2b-landing:not(.medical-landing) main > section.b2b-faqs h2 {
  font-size: var(--company-utility-title-reference) !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) p,
body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) li,
body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) label,
body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) .calc-result-label,
body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) .testimonial-role,
body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) .faq-question {
  font-size: var(--company-copy-reference) !important;
  line-height: 1.6 !important;
}

body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) .profile-content p {
  font-size: var(--company-copy-reference) !important;
  line-height: 1.58 !important;
}

body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) .testimonial-name {
  font-size: var(--company-copy-reference) !important;
  line-height: 1.35 !important;
}

@media (max-width: 900px) {
  body.b2b-landing:not(.medical-landing) {
    --company-copy-reference: 0.95rem;
  }
}

/* ============================================================
   Home — copy size bump and profile-section breathing room
   ============================================================ */
body:not(.b2b-landing) .hero-desc {
  font-size: calc(var(--home-hero-desc, 1rem) + 0.0625rem) !important;
}

body:not(.b2b-landing) .profile-content-minimal p,
body:not(.b2b-landing) .benefit-item p,
body:not(.b2b-landing) .scroll-title p,
body:not(.b2b-landing) .dest-card-content p,
body:not(.b2b-landing) .cred-copy p,
body:not(.b2b-landing) .home-testimonial-card p,
body:not(.b2b-landing) .home-testimonial-card .testimonial-role,
body:not(.b2b-landing) .home-final-cta p {
  font-size: calc(1em + 0.0625rem) !important;
}

body:not(.b2b-landing) .profiles-section {
  margin-top: clamp(18px, 3vw, 42px) !important;
  padding-top: clamp(78px, 8vw, 116px) !important;
}

@media (min-width: 901px) and (max-width: 1440px) {
  body:not(.b2b-landing) .profile-content-minimal p {
    font-size: 0.9425rem !important;
  }

  body:not(.b2b-landing) .benefit-item p {
    font-size: 0.9425rem !important;
  }

  body:not(.b2b-landing) .scroll-title p {
    font-size: 0.9825rem !important;
  }

  body:not(.b2b-landing) .cred-copy p {
    font-size: 0.8825rem !important;
  }

  body:not(.b2b-landing) .home-testimonial-card p {
    font-size: 0.9625rem !important;
  }

  body:not(.b2b-landing) .home-testimonial-card .testimonial-role {
    font-size: 0.9025rem !important;
  }

  body:not(.b2b-landing) .profiles-section {
    margin-top: clamp(24px, 3vw, 46px) !important;
    padding-top: 82px !important;
  }
}

@media (max-width: 900px) {
  body:not(.b2b-landing) .profile-content-minimal p {
    font-size: 0.9625rem !important;
  }

  body:not(.b2b-landing) .benefit-item p,
  body:not(.b2b-landing) .scroll-title p,
  body:not(.b2b-landing) .home-testimonial-card p,
  body:not(.b2b-landing) .home-final-cta p {
    font-size: 1.0125rem !important;
  }

  body:not(.b2b-landing) .profiles-section {
    margin-top: 24px !important;
    padding-top: 70px !important;
  }
}

/* ============================================================
   Empresas — title scale + line-length refinement
   ============================================================ */
body.b2b-landing:not(.medical-landing) {
  --company-editorial-title-reference: clamp(2.205rem, 1.775rem + 1.15vw, 2.845rem);
  --company-utility-title-reference: clamp(1.675rem, 1.405rem + .72vw, 2.025rem);
}

body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-text h2 {
  max-width: 22ch !important;
}

body.b2b-landing:not(.medical-landing) .philosophy-title {
  max-width: 23ch !important;
}

body.b2b-landing:not(.medical-landing) .company-booking-inner h2 {
  max-width: 28ch !important;
}

@media (min-width: 901px) and (max-width: 1440px) {
  body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-text h2 {
    max-width: 21.5ch !important;
  }

  body.b2b-landing:not(.medical-landing) .philosophy-title {
    max-width: 22.5ch !important;
  }

  body.b2b-landing:not(.medical-landing) .company-booking-inner h2 {
    max-width: 27ch !important;
  }
}

@media (max-width: 640px) {
  body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-text h2,
  body.b2b-landing:not(.medical-landing) .philosophy-title,
  body.b2b-landing:not(.medical-landing) .company-booking-inner h2 {
    max-width: 100% !important;
  }
}

/* Empresas — stronger body text scale */
body.b2b-landing:not(.medical-landing) {
  --company-copy-reference: 1.05rem;
}

@media (min-width: 901px) and (max-width: 1440px) {
  body.b2b-landing:not(.medical-landing) {
    --company-copy-reference: 1.03rem;
  }
}

@media (max-width: 640px) {
  body.b2b-landing:not(.medical-landing) {
    --company-copy-reference: 1rem;
  }
}

/* Empresas — final title emphasis and testimonial author sizing */
body.b2b-landing:not(.medical-landing) {
  --company-editorial-title-reference: clamp(2.38rem, 1.92rem + 1.25vw, 3.18rem);
  --company-utility-title-reference: clamp(1.78rem, 1.46rem + .78vw, 2.15rem);
}

body.b2b-landing:not(.medical-landing) .split-hero-kicker {
  font-size: clamp(0.86rem, 0.78rem + 0.18vw, 1rem) !important;
}

body.b2b-landing:not(.medical-landing) .company-calc-intro {
  padding-left: clamp(28px, 3.2vw, 64px) !important;
}

body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-text h2,
body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-text p,
body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-quote {
  margin-left: 0 !important;
}

body.b2b-landing:not(.medical-landing) .company-proof-cards .testimonial-name,
body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) .testimonial-name {
  font-size: 0.94rem !important;
  line-height: 1.28 !important;
}

body.b2b-landing:not(.medical-landing) .company-proof-cards .testimonial-role,
body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) .testimonial-role {
  font-size: 0.86rem !important;
  line-height: 1.3 !important;
}

@media (min-width: 901px) and (max-width: 1440px) {
  body.b2b-landing:not(.medical-landing) {
    --company-editorial-title-reference: clamp(2.22rem, 1.7rem + 1.35vw, 2.82rem);
  }

  body.b2b-landing:not(.medical-landing) .company-calc-intro {
    padding-left: clamp(34px, 4vw, 72px) !important;
  }
}

@media (max-width: 640px) {
  body.b2b-landing:not(.medical-landing) {
    --company-editorial-title-reference: clamp(2rem, 8vw, 2.42rem);
  }

  body.b2b-landing:not(.medical-landing) .company-calc-intro {
    padding-left: 0 !important;
  }
}

/* Empresas — match key editorial titles to calculator title scale */
body.b2b-landing:not(.medical-landing) {
  --company-key-title-reference: clamp(2rem, 1.5rem + 1.5vw, 2.75rem);
}

body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-text h2,
body.b2b-landing:not(.medical-landing) .philosophy-title,
body.b2b-landing:not(.medical-landing) .company-booking-inner h2 {
  font-size: var(--company-key-title-reference) !important;
  line-height: 1.08 !important;
}

@media (max-width: 640px) {
  body.b2b-landing:not(.medical-landing) {
    --company-key-title-reference: clamp(2rem, 9vw, 2.75rem);
  }
}

/* Empresas — thinner logo strip and stronger key titles */
body.b2b-landing:not(.medical-landing) .trust-banner.b2b-premium-logos {
  padding-block: clamp(10px, 1.5vh, 18px) !important;
}

body.b2b-landing:not(.medical-landing) .b2b-premium-logos .marquee-container {
  min-height: 0 !important;
}

body.b2b-landing:not(.medical-landing) .b2b-premium-logos .marquee-item-box {
  height: 58px !important;
  margin: 0 34px !important;
  width: 150px !important;
}

body.b2b-landing:not(.medical-landing) .b2b-premium-logos .marquee-item-box img {
  max-height: 48px !important;
}

body.b2b-landing:not(.medical-landing) {
  --company-key-title-reference: clamp(2.55rem, 1.98rem + 1.65vw, 3.45rem);
}

body.b2b-landing:not(.medical-landing) .company-calc-intro .intro-block-text h2,
body.b2b-landing:not(.medical-landing) .philosophy-title,
body.b2b-landing:not(.medical-landing) .company-booking-inner h2 {
  font-size: var(--company-key-title-reference) !important;
  line-height: 1.04 !important;
}

@media (min-width: 901px) and (max-width: 1440px) {
  body.b2b-landing:not(.medical-landing) {
    --company-key-title-reference: clamp(2.35rem, 1.72rem + 1.65vw, 3.05rem);
  }

  body.b2b-landing:not(.medical-landing) .b2b-premium-logos .marquee-item-box {
    height: 52px !important;
    margin: 0 28px !important;
    width: 136px !important;
  }

  body.b2b-landing:not(.medical-landing) .b2b-premium-logos .marquee-item-box img {
    max-height: 42px !important;
  }
}

@media (max-width: 640px) {
  body.b2b-landing:not(.medical-landing) {
    --company-key-title-reference: clamp(2.1rem, 10vw, 3rem);
  }

  body.b2b-landing:not(.medical-landing) .b2b-premium-logos .marquee-item-box {
    height: 42px !important;
    margin: 0 18px !important;
    width: 112px !important;
  }

  body.b2b-landing:not(.medical-landing) .b2b-premium-logos .marquee-item-box img {
    max-height: 34px !important;
  }
}

/* ============================================================
   Home — profiles background extension + carousel intro alignment
   ============================================================ */
body:not(.b2b-landing) .profiles-section {
  margin-top: -96px !important;
  padding-top: calc(clamp(78px, 8vw, 116px) + 96px) !important;
}

body:not(.b2b-landing) .destinations-scroll .scroll-wrapper {
  align-items: center !important;
}

body:not(.b2b-landing) .destinations-scroll .scroll-title {
  align-self: center !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-height: 590px !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
  text-align: left !important;
}

body:not(.b2b-landing) .destinations-scroll .scroll-title .section-label,
body:not(.b2b-landing) .destinations-scroll .scroll-title h2,
body:not(.b2b-landing) .destinations-scroll .scroll-title p {
  text-align: left !important;
}

@media (min-width: 901px) and (max-width: 1440px) {
  body:not(.b2b-landing) .profiles-section {
    margin-top: -82px !important;
    padding-top: calc(82px + 82px) !important;
  }

  body:not(.b2b-landing) .destinations-scroll .scroll-title {
    min-height: 410px !important;
  }
}

@media (max-width: 900px) {
  body:not(.b2b-landing) .profiles-section {
    margin-top: -74px !important;
    padding-top: calc(70px + 74px) !important;
  }

  body:not(.b2b-landing) .destinations-scroll .scroll-title {
    min-height: 320px !important;
  }
}

/* Home — keep profile content lower while extending only the background upward */
body:not(.b2b-landing) .profiles-section {
  background: transparent !important;
  isolation: isolate !important;
  margin-top: 0 !important;
  overflow: visible !important;
  padding-top: clamp(132px, 10vw, 168px) !important;
}

body:not(.b2b-landing) .profiles-section::before {
  background:
    linear-gradient(180deg, rgba(239, 248, 255, 0.62) 0%, rgba(255, 255, 255, 0.56) 100%),
    url("../assets/images/profiles-sky-bg.webp") center top / cover no-repeat;
  content: "" !important;
  inset: -118px 0 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  z-index: -1 !important;
}

body:not(.b2b-landing) .profiles-section > .container {
  position: relative !important;
  z-index: 1 !important;
}

@media (min-width: 901px) and (max-width: 1440px) {
  body:not(.b2b-landing) .profiles-section {
    margin-top: 0 !important;
    padding-top: 146px !important;
  }

  body:not(.b2b-landing) .profiles-section::before {
    inset: -104px 0 0 !important;
  }
}

@media (max-width: 900px) {
  body:not(.b2b-landing) .profiles-section {
    margin-top: 0 !important;
    padding-top: 116px !important;
  }

  body:not(.b2b-landing) .profiles-section::before {
    inset: -86px 0 0 !important;
  }
}

/* Home — lower profile content only, keep sky start fixed */
body:not(.b2b-landing) .profiles-section {
  padding-bottom: clamp(46px, 5.2vw, 72px) !important;
  padding-top: clamp(154px, 11vw, 188px) !important;
}

@media (min-width: 901px) and (max-width: 1440px) {
  body:not(.b2b-landing) .profiles-section {
    padding-bottom: 64px !important;
    padding-top: 168px !important;
  }
}

@media (max-width: 900px) {
  body:not(.b2b-landing) .profiles-section {
    padding-bottom: 58px !important;
    padding-top: 136px !important;
  }
}

/* Home — move only the profile title/cards down, not the sky background */
body:not(.b2b-landing) .profiles-section > .container {
  transform: translateY(34px) !important;
}

body:not(.b2b-landing) .profiles-section {
  padding-bottom: calc(clamp(46px, 5.2vw, 72px) + 34px) !important;
}

@media (min-width: 901px) and (max-width: 1440px) {
  body:not(.b2b-landing) .profiles-section > .container {
    transform: translateY(36px) !important;
  }

  body:not(.b2b-landing) .profiles-section {
    padding-bottom: 100px !important;
  }
}

@media (max-width: 900px) {
  body:not(.b2b-landing) .profiles-section > .container {
    transform: translateY(28px) !important;
  }

  body:not(.b2b-landing) .profiles-section {
    padding-bottom: 86px !important;
  }
}

/* ============================================================
   Empresas — final readable title and calculator scale
   ============================================================ */
body.b2b-landing:not(.medical-landing) {
  --company-section-title-final: clamp(2.85rem, 2.1rem + 2vw, 4rem);
  --company-calculator-title-final: clamp(2.15rem, 1.65rem + 1.35vw, 2.95rem);
}

body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) .company-calc-intro h2,
body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) .ed-header h2,
body.b2b-landing:not(.medical-landing) main > section.profiles-section h2,
body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) .company-trust-panel h2,
body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) .philosophy-title,
body.b2b-landing:not(.medical-landing) main > section:not(.split-hero) .booking-cta-inner h2 {
  font-size: var(--company-section-title-final) !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
}

body.b2b-landing:not(.medical-landing) .company-calc-feature .calc-header h2 {
  font-size: var(--company-calculator-title-final) !important;
  line-height: 1.08 !important;
}

body.b2b-landing:not(.medical-landing) .company-calc-feature .calc-result-card {
  padding: 22px 16px !important;
}

body.b2b-landing:not(.medical-landing) .company-calc-feature .calc-result-number {
  font-size: clamp(1.34rem, 1.08rem + .72vw, 1.78rem) !important;
  line-height: 1.08 !important;
}

body.b2b-landing:not(.medical-landing) .company-calc-feature .calc-result-label {
  font-size: 0.76rem !important;
  line-height: 1.25 !important;
}

@media (min-width: 901px) and (max-width: 1440px) {
  body.b2b-landing:not(.medical-landing) {
    --company-section-title-final: clamp(2.45rem, 1.75rem + 1.85vw, 3.25rem);
    --company-calculator-title-final: clamp(2rem, 1.45rem + 1.35vw, 2.55rem);
  }

  body.b2b-landing:not(.medical-landing) .company-calc-feature .calc-result-number {
    font-size: clamp(1.24rem, 1rem + .62vw, 1.56rem) !important;
  }
}

@media (max-width: 640px) {
  body.b2b-landing:not(.medical-landing) {
    --company-section-title-final: clamp(2.15rem, 10vw, 3.05rem);
    --company-calculator-title-final: clamp(1.9rem, 8vw, 2.45rem);
  }

  body.b2b-landing:not(.medical-landing) .company-calc-feature .calc-result-number {
    font-size: 1.42rem !important;
  }
}

/* ============================================================
   Medicos — unified copy, titles, service list and logo centering
   ============================================================ */
body.medical-landing {
  --medical-copy-reference: 1rem;
  --medical-title-reference: clamp(2.55rem, 1.9rem + 1.75vw, 3.55rem);
}

body.medical-landing main > section:not(.medical-hero) .section-header > h2,
body.medical-landing main > section:not(.medical-hero) .medical-program-copy > h2,
body.medical-landing main > section:not(.medical-hero) .medical-complete-service-copy > h2,
body.medical-landing main > section:not(.medical-hero) .medical-standards-header > h2,
body.medical-landing main > section:not(.medical-hero) .company-trust-panel > h2,
body.medical-landing main > section:not(.medical-hero) .medical-specialty-intro > h2,
body.medical-landing main > section:not(.medical-hero) .medical-proof-panel > h2,
body.medical-landing main > section:not(.medical-hero) .b2b-faqs h2 {
  font-size: var(--medical-title-reference) !important;
  line-height: 1.06 !important;
  letter-spacing: 0 !important;
}

body.medical-landing main > section:not(.medical-hero) p,
body.medical-landing main > section:not(.medical-hero) li,
body.medical-landing main > section:not(.medical-hero) .section-subtitle,
body.medical-landing main > section:not(.medical-hero) .faq-question,
body.medical-landing main > section:not(.medical-hero) .testimonial-role {
  font-size: var(--medical-copy-reference) !important;
  line-height: 1.6 !important;
}

body.medical-landing .medical-complete-service-list li {
  color: var(--text-secondary) !important;
  font-size: var(--medical-copy-reference) !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
}

body.medical-landing .medical-complete-service-list li::before {
  border-color: var(--primary) !important;
}

body.medical-landing .trust-banner.b2b-premium-logos {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

body.medical-landing .b2b-premium-logos .marquee-container,
body.medical-landing .b2b-premium-logos .marquee-track,
body.medical-landing .b2b-premium-logos .marquee-item-box {
  align-items: center !important;
}

body.medical-landing .b2b-premium-logos .marquee-item-box {
  display: flex !important;
  justify-content: center !important;
  line-height: 0 !important;
  padding: 0 !important;
}

body.medical-landing .b2b-premium-logos .marquee-item-box img {
  display: block !important;
  margin: auto !important;
  object-position: center center !important;
  transform: translateY(-2px) !important;
}

@media (min-width: 901px) and (max-width: 1440px) {
  body.medical-landing {
    --medical-copy-reference: 1rem;
    --medical-title-reference: clamp(2.28rem, 1.64rem + 1.65vw, 3rem);
  }
}

@media (max-width: 640px) {
  body.medical-landing {
    --medical-copy-reference: 1rem;
    --medical-title-reference: clamp(2rem, 9.5vw, 2.85rem);
  }

  body.medical-landing .b2b-premium-logos .marquee-item-box img {
    transform: translateY(-1px) !important;
  }
}

/* ============================================================
   Medicos — final correction: match Empresas scale and card layout
   ============================================================ */
body.medical-landing {
  --medical-copy-reference: 1.05rem;
  --medical-title-reference: clamp(2.85rem, 2.1rem + 2vw, 4rem);
}

body.medical-landing .trust-banner.b2b-premium-logos .marquee-item-box {
  align-items: center !important;
  display: flex !important;
  height: 60px !important;
  justify-content: center !important;
  margin: 0 40px !important;
  padding: 0 !important;
  width: 140px !important;
}

body.medical-landing .trust-banner.b2b-premium-logos .marquee-item-box img {
  display: block !important;
  margin: auto !important;
  max-height: 42px !important;
  max-width: 100% !important;
  object-fit: contain !important;
  transform: translateY(-4px) !important;
}

body.medical-landing .medical-complete-service-list li,
body.medical-landing .medical-complete-service-copy p,
body.medical-landing .medical-standard-card p,
body.medical-landing .medical-program-text p,
body.medical-landing .medical-standards-header p,
body.medical-landing .medical-specialty-intro p,
body.medical-landing .medical-specialty-note-text,
body.medical-landing .medical-patient-journey .section-subtitle,
body.medical-landing .medical-proof-panel p,
body.medical-landing .faq-answer p {
  color: var(--text-secondary) !important;
  font-size: var(--medical-copy-reference) !important;
  line-height: 1.6 !important;
}

body.medical-landing .medical-complete-service-list li::before {
  border-color: var(--secondary) !important;
}

body.medical-landing .medical-behind-scenes .company-proof-cards .testimonial-name,
body.medical-landing .medical-proof-cards .testimonial-name {
  color: var(--primary) !important;
  font-size: 1.03rem !important;
  font-weight: 800 !important;
  line-height: 1.22 !important;
}

body.medical-landing .medical-behind-scenes .company-proof-cards .testimonial-role,
body.medical-landing .medical-proof-cards .testimonial-role {
  color: #5f6f82 !important;
  font-size: 0.94rem !important;
  font-weight: 500 !important;
  line-height: 1.32 !important;
}

body.medical-landing .medical-behind-scenes .company-trust-panel h2,
body.medical-landing .medical-specialty-intro h2,
body.medical-landing .medical-closing-cta .medical-proof-panel h2,
body.medical-landing .medical-proof-panel h2 {
  font-size: var(--medical-title-reference) !important;
  line-height: 1.05 !important;
}

body.medical-landing .medical-trust-proof-grid {
  gap: clamp(34px, 4.5vw, 70px) !important;
  grid-template-columns: minmax(330px, .58fr) minmax(940px, 1.42fr) !important;
}

body.medical-landing .medical-behind-scenes .company-proof-cards {
  gap: clamp(20px, 2vw, 28px) !important;
  grid-template-columns: repeat(3, minmax(280px, 1fr)) !important;
}

body.medical-landing .medical-behind-scenes .company-proof-cards .b2b-testimonial-card {
  border-radius: 18px !important;
  min-height: 360px !important;
  padding: clamp(26px, 2.2vw, 34px) !important;
}

body.medical-landing .medical-behind-scenes .company-proof-cards .b2b-testimonial-card p {
  font-size: var(--medical-copy-reference) !important;
  line-height: 1.5 !important;
  margin-bottom: 22px !important;
}

@media (min-width: 901px) and (max-width: 1440px) {
  body.medical-landing {
    --medical-copy-reference: 1.03rem;
    --medical-title-reference: clamp(2.45rem, 1.75rem + 1.85vw, 3.25rem);
  }

  body.medical-landing .trust-banner.b2b-premium-logos .marquee-item-box {
    height: 52px !important;
    margin: 0 34px !important;
    width: 132px !important;
  }

  body.medical-landing .trust-banner.b2b-premium-logos .marquee-item-box img {
    max-height: 38px !important;
    transform: translateY(-4px) !important;
  }

  body.medical-landing .medical-trust-proof-grid {
    grid-template-columns: minmax(310px, .54fr) minmax(760px, 1.46fr) !important;
  }

  body.medical-landing .medical-behind-scenes .company-proof-cards .b2b-testimonial-card {
    min-height: 330px !important;
    padding: 26px !important;
  }
}

@media (max-width: 640px) {
  body.medical-landing {
    --medical-copy-reference: 1rem;
    --medical-title-reference: clamp(2.15rem, 10vw, 3.05rem);
  }
}

/* Medicos laptop — every non-title text matches service-list copy size */
@media (min-width: 901px) and (max-width: 1440px) {
  body.medical-landing {
    --medical-laptop-copy-size: 1.03rem;
  }

  body.medical-landing .medical-hero .split-hero-kicker,
  body.medical-landing .medical-hero .split-hero-desc,
  body.medical-landing main > section p,
  body.medical-landing main > section li,
  body.medical-landing main > section .section-label,
  body.medical-landing main > section .faq-question,
  body.medical-landing main > section .testimonial-name,
  body.medical-landing main > section .testimonial-role,
  body.medical-landing main > section .medical-specialty-slide-copy span,
  body.medical-landing main > section .medical-patient-banner span,
  body.medical-landing main > section .medical-patient-banner strong,
  body.medical-landing main > section .btn {
    font-size: var(--medical-laptop-copy-size) !important;
    line-height: 1.6 !important;
  }
}

/* Medicos laptop — explicit copy-size lock for requested text blocks */
@media (min-width: 901px) and (max-width: 1440px) {
  body.medical-landing {
    --medical-requested-copy-size: 1.03rem;
  }

  body.medical-landing .medical-program-text p,
  body.medical-landing .medical-program-text p strong,
  body.medical-landing .medical-process-cards .company-model-copy p,
  body.medical-landing .medical-complete-service-copy p,
  body.medical-landing .medical-complete-service-copy p strong,
  body.medical-landing .medical-complete-service-list li,
  body.medical-landing .medical-standards-header p,
  body.medical-landing .medical-standard-card p,
  body.medical-landing .medical-behind-scenes .company-trust-panel p,
  body.medical-landing .medical-behind-scenes .company-trust-panel p strong,
  body.medical-landing .medical-behind-scenes .company-proof-cards .b2b-testimonial-card p,
  body.medical-landing .medical-specialty-intro .section-subtitle,
  body.medical-landing .medical-specialty-note-text,
  body.medical-landing .medical-patient-journey .section-subtitle,
  body.medical-landing .medical-patient-banner p,
  body.medical-landing .medical-patient-banner span,
  body.medical-landing .medical-patient-banner strong,
  body.medical-landing .medical-proof-panel p,
  body.medical-landing .medical-closing-cta .medical-proof-panel p {
    font-size: var(--medical-requested-copy-size) !important;
    line-height: 1.6 !important;
  }
}

/* Medicos laptop — final requested responsive pass */
@media (min-width: 901px) and (max-width: 1440px) {
  body.medical-landing {
    --medical-requested-copy-size: 1.03rem;
    --medical-requested-title-size: clamp(2.62rem, 1.95rem + 2.05vw, 3.45rem);
  }

  body.medical-landing main > section:not(.medical-hero) .section-header > h2,
  body.medical-landing main > section:not(.medical-hero) .medical-program-copy > h2,
  body.medical-landing main > section:not(.medical-hero) .medical-complete-service-copy > h2,
  body.medical-landing main > section:not(.medical-hero) .medical-standards-header > h2,
  body.medical-landing main > section:not(.medical-hero) .company-trust-panel > h2,
  body.medical-landing main > section:not(.medical-hero) .medical-specialty-intro > h2,
  body.medical-landing main > section:not(.medical-hero) .medical-proof-panel > h2,
  body.medical-landing main > section:not(.medical-hero) .b2b-faqs h2 {
    font-size: var(--medical-requested-title-size) !important;
    line-height: 1.05 !important;
    letter-spacing: 0 !important;
  }

  body.medical-landing .medical-program-text p,
  body.medical-landing .medical-program-text p strong,
  body.medical-landing .medical-process-cards .company-model-copy p,
  body.medical-landing .medical-complete-service-copy p,
  body.medical-landing .medical-complete-service-copy p strong,
  body.medical-landing .medical-complete-service-list li,
  body.medical-landing .medical-standards-header p,
  body.medical-landing .medical-standard-card p,
  body.medical-landing .medical-behind-scenes .company-trust-panel p,
  body.medical-landing .medical-behind-scenes .company-trust-panel p strong,
  body.medical-landing .medical-behind-scenes .company-proof-cards .b2b-testimonial-card p,
  body.medical-landing .medical-specialty-intro .section-subtitle,
  body.medical-landing .medical-specialty-note-text,
  body.medical-landing .medical-patient-journey .section-subtitle,
  body.medical-landing .medical-patient-banner p,
  body.medical-landing .medical-patient-banner span,
  body.medical-landing .medical-patient-banner strong,
  body.medical-landing .medical-proof-panel p,
  body.medical-landing .medical-closing-cta .medical-proof-panel p {
    font-size: var(--medical-requested-copy-size) !important;
    line-height: 1.6 !important;
  }

  body.medical-landing .medical-specialty-carousel-section {
    overflow: visible !important;
    padding-bottom: clamp(96px, 8vw, 124px) !important;
  }

  body.medical-landing .medical-specialty-carousel-wrap {
    overflow: visible !important;
    padding-block: 10px 40px !important;
  }

  body.medical-landing .medical-specialty-carousel {
    padding-bottom: 56px !important;
  }

  body.medical-landing .medical-specialty-slide-copy {
    bottom: clamp(24px, 2.2vw, 32px) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    grid-template-rows: none !important;
    min-height: 0 !important;
  }

  body.medical-landing .medical-specialty-slide-copy h3 {
    font-size: clamp(1.38rem, 1.45vw, 1.72rem) !important;
    line-height: 1.12 !important;
    margin: 0 !important;
    overflow: visible !important;
  }
}

@media (min-width: 901px) and (max-width: 1440px) {
  body.medical-landing .medical-hero .split-hero-kicker {
    transform: translateY(-8px) !important;
  }
}


/* ============================================================
   UNIFICACIÓN GLOBAL (bloque maestro — anexado al final para
   ganar la cascada). Aplica a escritorio y a TODAS las
   versiones responsive.
   - Títulos de sección: mismo tamaño que el home ("¿Con quién
     trabajamos?") en home, empresas y médicos.
   - Párrafos: tamaño unificado en toda la página.
   - Hero empresas/médicos: kicker, título, descripción y botón
     unificados (mismo tamaño, posición y texto).
   - Carrusel de logos: mismo tamaño en empresas y médicos.
   - Stats: contenedor superpuesto y centrado, sin elementos
     extra en responsive.
   ============================================================ */
:root {
  --u-section-title: clamp(1.9rem, 1.3rem + 1.55vw, 2.7rem);
  --u-body-text: clamp(1rem, 0.95rem + 0.22vw, 1.1rem);
  --u-kicker: clamp(0.86rem, 0.78rem + 0.18vw, 1rem);
}

/* ---- 1. Títulos de sección unificados ---- */
/* Home */
html body:not(.b2b-landing) main section .profiles-section h2,
html body:not(.b2b-landing) main section.profiles-section h2,
html body:not(.b2b-landing) main .work-meaning-title,
html body:not(.b2b-landing) main .credentials-header h2,
html body:not(.b2b-landing) main .scroll-title h2,
html body:not(.b2b-landing) main .proof-header h2,
html body:not(.b2b-landing) main .home-final-cta-inner h2,
/* Empresas */
html body.b2b-landing:not(.medical-landing) main section .intro-block-text h2,
html body.b2b-landing:not(.medical-landing) main section .calc-header h2,
html body.b2b-landing:not(.medical-landing) main section .ed-header h2,
html body.b2b-landing:not(.medical-landing) main section.profiles-section h2,
html body.b2b-landing:not(.medical-landing) main section .company-trust-panel h2,
html body.b2b-landing:not(.medical-landing) main section .philosophy-title,
html body.b2b-landing:not(.medical-landing) main section .booking-cta-inner h2,
html body.b2b-landing:not(.medical-landing) main section .company-booking-inner h2,
html body.b2b-landing:not(.medical-landing) main section.b2b-faqs h2,
/* Médicos */
html body.medical-landing main section .medical-program-copy h2,
html body.medical-landing main section .section-header h2,
html body.medical-landing main section .medical-complete-service-copy h2,
html body.medical-landing main section .medical-standards-header h2,
html body.medical-landing main section .company-trust-panel h2,
html body.medical-landing main section .medical-behind-scenes-copy h2,
html body.medical-landing main section .medical-specialty-intro h2,
html body.medical-landing main section .medical-patient-journey h2,
html body.medical-landing main section .medical-proof-panel h2,
html body.medical-landing main section.b2b-faqs h2 {
  font-size: var(--u-section-title) !important;
  line-height: 1.1 !important;
}

/* ---- 2. Párrafos / copy de sección unificados ---- */
/* Home */
html body:not(.b2b-landing) main .scroll-title p,
html body:not(.b2b-landing) main .credentials-header p,
html body:not(.b2b-landing) main .proof-header p,
html body:not(.b2b-landing) main .home-final-cta-inner p,
html body:not(.b2b-landing) main .profile-content-minimal p,
html body:not(.b2b-landing) main .benefit-item p,
/* Empresas */
html body.b2b-landing:not(.medical-landing) main section .intro-block-text p,
html body.b2b-landing:not(.medical-landing) main section .intro-block-quote,
html body.b2b-landing:not(.medical-landing) main section .ed-header p,
html body.b2b-landing:not(.medical-landing) main section .company-trust-panel p,
html body.b2b-landing:not(.medical-landing) main section .philosophy-p,
html body.b2b-landing:not(.medical-landing) main section .booking-cta-inner p,
html body.b2b-landing:not(.medical-landing) main section .company-model-copy p,
/* Médicos */
html body.medical-landing main section .medical-program-text p,
html body.medical-landing main section .medical-process-cards .company-model-copy p,
html body.medical-landing main section .medical-complete-service-copy p,
html body.medical-landing main section .medical-complete-service-list li,
html body.medical-landing main section .medical-standards-header p,
html body.medical-landing main section .medical-standard-card p,
html body.medical-landing main section .company-trust-panel p,
html body.medical-landing main section .medical-specialty-intro .section-subtitle,
html body.medical-landing main section .medical-specialty-note-text,
html body.medical-landing main section .medical-patient-journey .section-subtitle,
html body.medical-landing main section .medical-proof-panel p,
html body.medical-landing main section .section-header p {
  font-size: var(--u-body-text) !important;
  line-height: 1.6 !important;
}

/* ---- 3. Hero empresas/médicos: paridad ---- */
/* Kicker mismo tamaño en ambas páginas y en responsive */
html body.b2b-landing:not(.medical-landing) .split-hero-kicker,
html body.medical-landing .medical-hero .split-hero-kicker {
  font-size: var(--u-kicker) !important;
  line-height: 1.45 !important;
  letter-spacing: 0.08em !important;
  margin-bottom: clamp(10px, 1.6vh, 18px) !important;
  transform: none !important;
}

/* Título y descripción del hero idénticos en ambas */
html body.b2b-landing:not(.medical-landing) .split-hero-title,
html body.medical-landing .medical-hero .split-hero-title {
  font-size: var(--title-h1-consistent) !important;
  line-height: 1.08 !important;
}
html body.b2b-landing:not(.medical-landing) .split-hero-desc,
html body.medical-landing .medical-hero .split-hero-desc {
  font-size: var(--text-p-consistent) !important;
  line-height: 1.65 !important;
}

/* Contenido del hero: misma posición vertical y agrupación */
html body.b2b-landing:not(.medical-landing) .split-hero-content,
html body.medical-landing .medical-hero .split-hero-content {
  justify-content: center !important;
  row-gap: clamp(16px, 2.2vh, 24px) !important;
}

/* Fila de acción y botón principal idénticos en ambas páginas */
html body.b2b-landing:not(.medical-landing) .hero-action-row,
html body.medical-landing .medical-hero .hero-action-row {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: clamp(6px, 1.4vh, 14px) !important;
}
html body.b2b-landing .hero-action-row .hero-primary-cta {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: clamp(0.94rem, 0.86rem + 0.22vw, 1.04rem) !important;
  font-weight: 600 !important;
  min-height: 50px !important;
  padding: 14px 30px !important;
  width: auto !important;
}

/* ---- 4. Carrusel de logos: mismo tamaño (empresas y médicos) ---- */
/* Tamaños FLUIDOS (clamp continuo) => escala progresiva sin saltos
   bruscos entre escritorio, laptop, tablet y móvil. */
html body.b2b-landing:not(.medical-landing) .trust-banner.b2b-premium-logos .marquee-item-box,
html body.medical-landing .trust-banner.b2b-premium-logos .marquee-item-box {
  width: clamp(112px, 11.5vw, 168px) !important;
  height: clamp(48px, 4.8vw, 70px) !important;
  margin: 0 clamp(16px, 2.4vw, 44px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}
/* Altura FIJA (fluida) del logo => todos se ven del mismo tamaño
   visual a cualquier ancho. width auto mantiene la proporción;
   max-width evita que un logo ancho invada el de al lado. */
html body.b2b-landing:not(.medical-landing) .trust-banner.b2b-premium-logos .marquee-item-box img,
html body.medical-landing .trust-banner.b2b-premium-logos .marquee-item-box img {
  height: clamp(32px, 3.1vw, 46px) !important;
  width: auto !important;
  max-width: clamp(100px, 10vw, 150px) !important;
  object-fit: contain !important;
  margin: auto !important;
  transform: none !important;
}

/* ---- 5. Stats: superpuesto, centrado y sin cajas extra ---- */
html body:not(.b2b-landing) .stats-grid {
  margin-inline: auto !important;
}
/* La sección no aporta fondo/caja propia; solo la tarjeta de stats */
html body:not(.b2b-landing) .stats-section {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
html body:not(.b2b-landing) .stats-section::before,
html body:not(.b2b-landing) .stats-section::after {
  display: none !important;
  content: none !important;
}


/* ============================================================
   UNIFICACIÓN HERO empresas/médicos — misma posición exacta
   de título, texto y botón (geometría de columnas idéntica).
   Solo escritorio/laptop (>=901px); en móvil ambos apilan.
   ============================================================ */
@media (min-width: 901px) {
  html body.b2b-landing:not(.medical-landing) .split-hero-content,
  html body.medical-landing .medical-hero .split-hero-content {
    flex: 0 0 56% !important;
    max-width: 56% !important;
    box-sizing: border-box !important;
    padding-inline: clamp(28px, 5vw, 92px) !important;
    padding-top: clamp(78px, 9vh, 104px) !important;
    padding-bottom: clamp(24px, 4vh, 40px) !important;
    justify-content: center !important;
    row-gap: clamp(14px, 2vh, 24px) !important;
  }

  html body.b2b-landing:not(.medical-landing) .split-hero-image,
  html body.medical-landing .medical-hero .split-hero-image {
    flex: 1 1 44% !important;
    max-width: 44% !important;
  }

  /* Ancho de envoltura dentro de la columna (geometría desktop) */
  html body.b2b-landing:not(.medical-landing) .split-hero-title,
  html body.medical-landing .medical-hero .split-hero-title {
    max-width: 100% !important;
    margin-bottom: 0 !important;
  }

  html body.b2b-landing:not(.medical-landing) .split-hero-copy,
  html body.medical-landing .medical-hero .split-hero-copy {
    max-width: min(100%, 52ch) !important;
  }

  html body.b2b-landing:not(.medical-landing) .split-hero-desc,
  html body.medical-landing .medical-hero .split-hero-desc {
    max-width: min(100%, 52ch) !important;
  }
}

/* Líneas del título (empresas y médicos): se agrupan en bloque y
   envuelven dentro de la columna en vez de desbordar sobre la
   imagen. Mantiene los 3 saltos coherentes cuando caben. */
html body.b2b-landing:not(.medical-landing) .split-hero-title .company-hero-line,
html body.medical-landing .medical-hero .split-hero-title .medical-hero-line {
  display: block !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
}

/* Tamaño del título del hero FLUIDO en todos los anchos (sin saltos
   bruscos entre móvil y laptop). Escala progresiva con el viewport. */
html body.b2b-landing:not(.medical-landing) .split-hero-title,
html body.medical-landing .medical-hero .split-hero-title {
  font-size: clamp(1.7rem, 1.02rem + 2.05vw, 3.35rem) !important;
  line-height: 1.08 !important;
  overflow-wrap: break-word !important;
}

/* ============================================================
   ESCALA FLUIDA DE TEXTO (empresas/médicos) — elimina los saltos
   bruscos de tamaño en laptop. Redefine las variables de copy a
   clamp continuo para que escalen progresivamente con el viewport.
   (No afecta al home.)
   ============================================================ */
html body.b2b-landing:not(.medical-landing) {
  --company-copy-compact: clamp(0.95rem, 0.9rem + 0.25vw, 1.08rem) !important;
  --section-copy-uniform: clamp(0.95rem, 0.9rem + 0.25vw, 1.08rem) !important;
  --company-section-pad: clamp(56px, 6vw, 92px) !important;
}

html body.medical-landing {
  --medical-copy-reference: clamp(0.98rem, 0.92rem + 0.28vw, 1.1rem) !important;
  --medical-laptop-copy-size: clamp(0.98rem, 0.92rem + 0.28vw, 1.1rem) !important;
  --medical-requested-copy-size: clamp(0.98rem, 0.92rem + 0.28vw, 1.1rem) !important;
  --section-copy-uniform: clamp(0.98rem, 0.92rem + 0.28vw, 1.1rem) !important;
}

/* ============================================================
   SISTEMA FLUIDO GLOBAL (v2) — escala tipográfica y de espaciado
   continua para todo el sitio. Anexado al final como fuente única
   de verdad: elimina los saltos bruscos entre pantallas cercanas.
   No modifica la estructura del home (solo escala/ritmo).
   ============================================================ */
:root {
  /* Escala tipográfica fluida */
  --fs-h1: clamp(1.8rem, 1.10rem + 2.00vw, 3.25rem);
  --fs-h2: clamp(1.60rem, 1.15rem + 1.50vw, 2.55rem);
  --fs-h3: clamp(1.15rem, 1.00rem + 0.55vw, 1.45rem);
  --fs-p:  clamp(1.00rem, 0.95rem + 0.20vw, 1.12rem);
  --fs-small: clamp(0.82rem, 0.78rem + 0.18vw, 0.92rem);
  --fs-btn:   clamp(0.95rem, 0.92rem + 0.18vw, 1.05rem);
  /* Ritmo vertical fluido de secciones */
  --section-py: clamp(56px, 2.5rem + 4vw, 120px);
  --section-tight: clamp(48px, 2rem + 3.4vw, 104px);
  --section-loose: clamp(64px, 3rem + 4.6vw, 132px);
}

/* Re-apunto los tokens unificados existentes a la escala fluida */
:root {
  --u-section-title: var(--fs-h2);
  --u-body-text: var(--fs-p);
  --u-kicker: var(--fs-small);
  --section-copy-uniform: var(--fs-p);
  --section-title-uniform: var(--fs-h2);
}

/* Copy de empresas/médicos a la escala fluida (sin valores duros) */
html body.b2b-landing:not(.medical-landing) {
  --company-copy-compact: var(--fs-p) !important;
  --section-copy-uniform: var(--fs-p) !important;
  --company-key-title-reference: var(--fs-h2) !important;
  --company-section-title-final: var(--fs-h2) !important;
  --company-editorial-title-reference: var(--fs-h2) !important;
}
html body.medical-landing {
  --medical-copy-reference: var(--fs-p) !important;
  --medical-laptop-copy-size: var(--fs-p) !important;
  --medical-requested-copy-size: var(--fs-p) !important;
  --section-copy-uniform: var(--fs-p) !important;
  --medical-title-reference: var(--fs-h2) !important;
  --medical-requested-title-size: var(--fs-h2) !important;
}

/* Título del hero a la escala h1 fluida (empresas y médicos) */
html body.b2b-landing:not(.medical-landing) .split-hero-title,
html body.medical-landing .medical-hero .split-hero-title {
  font-size: var(--fs-h1) !important;
  line-height: 1.08 !important;
  overflow-wrap: break-word !important;
}

/* Botones con tamaño de texto fluido y alto cómodo */
html body .btn,
html body button.btn,
html body a.btn {
  font-size: var(--fs-btn) !important;
  min-height: clamp(44px, 2.4rem + 0.6vw, 52px) !important;
}

/* Títulos de tarjetas (h3 de contenido) con escala fluida coherente */
html body .company-model-card .company-model-copy h3,
html body .medical-standard-card h3,
html body .benefit-item h3,
html body:not(.b2b-landing) .profile-content-minimal h3,
html body .cred-card .cred-copy h3,
html body .medical-specialty-slide-copy h3,
html body .destinations-scroll .dest-card-content h3 {
  font-size: var(--fs-h3) !important;
  line-height: 1.18 !important;
}

/* Imágenes de contenido: evitar desbordes. No toca imágenes
   cover/con marco de aspect-ratio (hero, showcase, value-capture)
   para no romper sus proporciones de diseño. */
html body main img:not([class*="hero"]):not(.company-hero-photo) {
  max-width: 100%;
}

/* ============================================================
   Responsive hero and logo pass: empresas / medicos
   ============================================================ */
:root {
  --landing-hero-title: clamp(2.45rem, 1.85rem + 2.15vw, 3.7rem);
  --landing-hero-copy: clamp(1rem, 0.94rem + 0.22vw, 1.12rem);
  --landing-logo-box-w: clamp(120px, 10.8vw, 158px);
  --landing-logo-box-h: clamp(50px, 4.4vw, 64px);
  --landing-logo-h: clamp(32px, 2.65vw, 40px);
}

@media (min-width: 901px) {
  html body.b2b-landing:not(.medical-landing) .split-hero,
  html body.medical-landing .medical-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 53%) minmax(0, 47%) !important;
    min-height: min(900px, 100svh) !important;
    overflow: hidden !important;
  }

  html body.b2b-landing:not(.medical-landing) .split-hero-content,
  html body.medical-landing .medical-hero .split-hero-content {
    box-sizing: border-box !important;
    display: flex !important;
    flex: none !important;
    grid-column: 1 !important;
    height: 100% !important;
    justify-content: center !important;
    max-width: none !important;
    min-width: 0 !important;
    padding: clamp(88px, 10vh, 118px) clamp(56px, 5.8vw, 92px) clamp(44px, 6vh, 76px) clamp(52px, 5vw, 84px) !important;
    row-gap: clamp(14px, 1.8vh, 22px) !important;
    width: 100% !important;
  }

  html body.b2b-landing:not(.medical-landing) .split-hero-image,
  html body.medical-landing .medical-hero .split-hero-image {
    flex: none !important;
    grid-column: 2 !important;
    height: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  html body.b2b-landing:not(.medical-landing) .split-hero-image img,
  html body.medical-landing .medical-hero .split-hero-image img {
    display: block !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    width: 100% !important;
  }

  html body.b2b-landing:not(.medical-landing) .split-hero-title,
  html body.medical-landing .medical-hero .split-hero-title {
    font-size: var(--landing-hero-title) !important;
    line-height: 1.08 !important;
    max-width: min(100%, 15.6ch) !important;
    overflow-wrap: normal !important;
    text-wrap: balance !important;
  }

  html body.b2b-landing:not(.medical-landing) .split-hero-copy,
  html body.medical-landing .medical-hero .split-hero-copy,
  html body.b2b-landing:not(.medical-landing) .split-hero-desc,
  html body.medical-landing .medical-hero .split-hero-desc {
    max-width: min(100%, 45ch) !important;
  }

  html body.b2b-landing:not(.medical-landing) .split-hero-desc,
  html body.medical-landing .medical-hero .split-hero-desc {
    font-size: var(--landing-hero-copy) !important;
    line-height: 1.62 !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  html body.b2b-landing:not(.medical-landing) .split-hero,
  html body.medical-landing .medical-hero {
    grid-template-columns: minmax(0, 56%) minmax(0, 44%) !important;
    min-height: max(700px, 100svh) !important;
  }

  html body.b2b-landing:not(.medical-landing) .split-hero-content,
  html body.medical-landing .medical-hero .split-hero-content {
    padding-inline: clamp(44px, 5vw, 58px) clamp(38px, 4.4vw, 54px) !important;
  }

  html body.b2b-landing:not(.medical-landing) .split-hero-title,
  html body.medical-landing .medical-hero .split-hero-title {
    font-size: clamp(2.28rem, 1.7rem + 2.25vw, 3rem) !important;
    max-width: min(100%, 15ch) !important;
  }

  html body.b2b-landing:not(.medical-landing) .split-hero-copy,
  html body.medical-landing .medical-hero .split-hero-copy,
  html body.b2b-landing:not(.medical-landing) .split-hero-desc,
  html body.medical-landing .medical-hero .split-hero-desc {
    max-width: min(100%, 42ch) !important;
  }
}

@media (max-width: 900px) {
  html body.b2b-landing:not(.medical-landing) .split-hero-title,
  html body.medical-landing .medical-hero .split-hero-title {
    font-size: clamp(2.05rem, 8.6vw, 3.08rem) !important;
    max-width: 100% !important;
    text-wrap: balance !important;
  }

  html body.b2b-landing:not(.medical-landing) .split-hero-desc,
  html body.medical-landing .medical-hero .split-hero-desc {
    font-size: clamp(1rem, 2.8vw, 1.08rem) !important;
    max-width: 100% !important;
  }
}

html body.b2b-landing:not(.medical-landing) .trust-banner.b2b-premium-logos,
html body.medical-landing .trust-banner.b2b-premium-logos {
  overflow: hidden !important;
}

html body.b2b-landing:not(.medical-landing) .trust-banner.b2b-premium-logos .marquee-container,
html body.medical-landing .trust-banner.b2b-premium-logos .marquee-container {
  display: flex !important;
  align-items: center !important;
}

html body.b2b-landing:not(.medical-landing) .trust-banner.b2b-premium-logos .marquee-track,
html body.medical-landing .trust-banner.b2b-premium-logos .marquee-track {
  align-items: center !important;
}

html body.b2b-landing:not(.medical-landing) .trust-banner.b2b-premium-logos .marquee-item-box,
html body.medical-landing .trust-banner.b2b-premium-logos .marquee-item-box {
  align-items: center !important;
  display: flex !important;
  flex: 0 0 var(--landing-logo-box-w) !important;
  height: var(--landing-logo-box-h) !important;
  justify-content: center !important;
  margin-inline: clamp(16px, 2.1vw, 32px) !important;
  padding: 0 !important;
  width: var(--landing-logo-box-w) !important;
}

html body.b2b-landing:not(.medical-landing) .trust-banner.b2b-premium-logos .marquee-item-box img,
html body.medical-landing .trust-banner.b2b-premium-logos .marquee-item-box img {
  display: block !important;
  height: var(--landing-logo-h) !important;
  margin: auto !important;
  max-height: var(--landing-logo-h) !important;
  max-width: calc(var(--landing-logo-box-w) - 18px) !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
  width: auto !important;
}

/* ============================================================
   Follow-up positioning pass: medical hero + home overlays
   ============================================================ */
@media (min-width: 901px) {
  html body.medical-landing .medical-hero .split-hero-image {
    background: #eef6fb !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  html body.medical-landing .medical-hero .split-hero-image img {
    aspect-ratio: 1 / 1 !important;
    bottom: auto !important;
    height: auto !important;
    inset: auto !important;
    max-height: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    object-fit: contain !important;
    object-position: center center !important;
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
  }

  html body:not(.b2b-landing) .stats-section {
    margin-top: clamp(-132px, -8vw, -86px) !important;
    padding-top: 0 !important;
    z-index: 20 !important;
  }

  html body:not(.b2b-landing) .work-meaning-card::before {
    top: clamp(134px, 12vw, 168px) !important;
  }
}

@media (max-width: 900px) {
  html body:not(.b2b-landing) .stats-section {
    margin-top: -72px !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 640px) {
  html body:not(.b2b-landing) .work-meaning-card::before {
    top: 170px !important;
  }
}

/* Home laptop/desktop — restore the floating stats bridge from Jun 4 */
@media (min-width: 901px) {
  body:not(.b2b-landing) .stats-section {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: var(--primary) !important;
    margin: -62px 0 -62px !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 12 !important;
  }

  body:not(.b2b-landing) .stats-section::before {
    display: none !important;
  }

  body:not(.b2b-landing) .stats-grid {
    align-items: stretch !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    border-radius: 18px !important;
    box-shadow: 0 22px 60px rgba(8, 24, 46, 0.18) !important;
    display: grid !important;
    gap: 0 !important;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr) !important;
    max-width: 1180px !important;
    overflow: hidden !important;
    padding: 0 !important;
  }

  body:not(.b2b-landing) .stat-item {
    align-items: center !important;
    display: grid !important;
    gap: clamp(12px, 1.5vw, 18px) !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    justify-content: start !important;
    min-height: 106px !important;
    padding: clamp(20px, 2.7vw, 32px) !important;
    text-align: left !important;
  }

  body:not(.b2b-landing) .stat-icon {
    color: var(--primary) !important;
    display: inline-flex !important;
    height: auto !important;
    width: clamp(42px, 4vw, 54px) !important;
  }

  body:not(.b2b-landing) .stat-icon svg {
    fill: none !important;
    height: auto !important;
    stroke: currentColor !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    stroke-width: 1.7 !important;
    width: 100% !important;
  }

  body:not(.b2b-landing) .stat-copy {
    display: grid !important;
    gap: 4px !important;
    min-width: 0 !important;
  }

  body:not(.b2b-landing) .stat-number {
    color: var(--primary) !important;
    display: block !important;
    font-family: var(--font-body) !important;
    font-size: clamp(1.15rem, 1rem + 0.65vw, 1.68rem) !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    line-height: 1.05 !important;
    margin: 0 !important;
    min-height: 0 !important;
    white-space: nowrap !important;
  }

  body:not(.b2b-landing) .stat-number.stat-plain {
    font-size: clamp(1.05rem, .98rem + .32vw, 1.34rem) !important;
  }

  body:not(.b2b-landing) .stat-label {
    color: #5f6f82 !important;
    display: block !important;
    font-size: clamp(.74rem, .68rem + .22vw, .9rem) !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    line-height: 1.25 !important;
    margin: 0 !important;
    max-width: none !important;
    min-height: 0 !important;
    opacity: 1 !important;
    text-transform: none !important;
  }

  body:not(.b2b-landing) .stat-divider {
    align-self: center !important;
    background: rgba(148, 163, 184, 0.36) !important;
    display: block !important;
    height: 52% !important;
    width: 1px !important;
  }
}

/* Home stats bridge — final cascade lock after later responsive passes */
@media (min-width: 901px) {
  html body:not(.b2b-landing) .stats-section {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    margin-top: -62px !important;
    margin-bottom: -62px !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 20 !important;
  }

  html body:not(.b2b-landing) .stats-grid {
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    border-radius: 18px !important;
    box-shadow: 0 22px 60px rgba(8, 24, 46, 0.18) !important;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr) !important;
    max-width: 1180px !important;
    padding: 0 !important;
  }
}

/* Home hero handoff — stats rise after the pinned flight finishes */
@media (min-width: 901px) {
  html body:not(.b2b-landing) .hero {
    z-index: 4 !important;
  }

  html body:not(.b2b-landing) .hero-content,
  html body:not(.b2b-landing) .hero-text-slide,
  html body:not(.b2b-landing) .hero-title,
  html body:not(.b2b-landing) .hero-desc {
    transform: none !important;
  }

  html body:not(.b2b-landing) .stats-section {
    margin-top: -42px !important;
    margin-bottom: -58px !important;
    padding-top: 0 !important;
    z-index: 40 !important;
  }

  html body:not(.b2b-landing) .stats-grid {
    position: relative !important;
    transform: translateY(-26px) !important;
    z-index: 41 !important;
  }
}

/* ============================================================
   Médicos hero image — igualar tamaño/ancho al de Empresas.
   Se usa selector de ALTA especificidad (las dos clases del body
   + section.split-hero.medical-hero) porque hay reglas previas que
   fuerzan display:flex en el contenedor y aspect-ratio:1/1 + contain
   en la imagen, anulando un selector más simple.
   ============================================================ */
@media (min-width: 901px) {
  html body.b2b-landing.medical-landing section.split-hero.medical-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 53%) minmax(0, 47%) !important;
  }

  html body.b2b-landing.medical-landing section.split-hero.medical-hero .split-hero-image {
    display: block !important;
    background: none !important;
    overflow: hidden !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
  }

  html body.b2b-landing.medical-landing section.split-hero.medical-hero .split-hero-image img {
    aspect-ratio: auto !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    position: relative !important;
    inset: auto !important;
    transform: none !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  html body.b2b-landing.medical-landing section.split-hero.medical-hero {
    grid-template-columns: minmax(0, 56%) minmax(0, 44%) !important;
  }
}

/* ============================================================
   Heroes empresas + médicos: título 3px más pequeño y unificado.
   Ambos comparten el mismo font-size y la misma grilla, así que el
   texto y los botones quedan en la misma posición al cambiar de
   página (solo cambian el texto y la foto). 3 líneas en escritorio.
   ============================================================ */
html body.b2b-landing:not(.medical-landing) .split-hero-title,
html body.medical-landing .medical-hero .split-hero-title {
  font-size: clamp(1.61rem, 0.95rem + 1.86vw, 3.06rem) !important;
  line-height: 1.1 !important;
  max-width: 26ch !important;
}
/* Cada línea del título en su propia línea (3 líneas), sin partirse */
html body.b2b-landing:not(.medical-landing) .split-hero-title .company-hero-line,
html body.medical-landing .medical-hero .split-hero-title .medical-hero-line {
  display: block !important;
}
@media (min-width: 901px) {
  html body.b2b-landing:not(.medical-landing) .split-hero-title .company-hero-line,
  html body.medical-landing .medical-hero .split-hero-title .medical-hero-line {
    white-space: nowrap !important;
  }
}

/* ============================================================
   Carrusel de marcas — todos los logos al MISMO tamaño y centrados.
   Se usan versiones normalizadas (recortadas y con fondo transparente)
   en assets/images/logos/norm/, así basta una altura uniforme: el
   contenido visible queda a la misma altura, centrado y sin cajas de
   fondo. Doble variante (b2b/medical) para ganar especificidad.
   ============================================================ */
html body.b2b-landing:not(.medical-landing) .trust-banner.b2b-premium-logos .marquee-item-box,
html body.medical-landing .trust-banner.b2b-premium-logos .marquee-item-box {
  width: clamp(138px, 12.5vw, 196px) !important;
  height: clamp(58px, 5.2vw, 76px) !important;
  margin-inline: clamp(8px, 1.4vw, 24px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  overflow: hidden !important;
  flex: 0 0 auto !important;
}
html body.b2b-landing:not(.medical-landing) .trust-banner.b2b-premium-logos .marquee-item-box img,
html body.medical-landing .trust-banner.b2b-premium-logos .marquee-item-box img {
  width: auto !important;
  height: clamp(25px, 2.35vw, 31px) !important;
  max-width: clamp(122px, 12vw, 178px) !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: auto !important;
  transform: none !important;
  mix-blend-mode: multiply !important;
}
/* Médicos: la sección del carrusel tenía padding-bottom:0 y padding-top
   mayor (asimétrico) => los logos quedaban más abajo. Se restaura el
   padding simétrico para centrarlos vertical igual que en Empresas. */
html body.medical-landing .trust-banner.b2b-premium-logos {
  padding-top: clamp(10px, 1.6vh, 20px) !important;
  padding-bottom: clamp(10px, 1.6vh, 20px) !important;
}

/* Empresas y Medicos: keep every section title at the same visual
   hierarchy as the Home section title "Con quien trabajamos?". */
html body.b2b-landing {
  --landing-section-title: var(--u-section-title);
}

/* Every h2 below the landing heroes is a section heading and must
   remain visually stronger than its supporting copy. */
#landing-main > section:not(.split-hero):not(.medical-hero) h2 {
  font-size: var(--landing-section-title) !important;
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
}

#landing-main .medical-program-title-line {
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
  white-space: normal !important;
}

/* ============================================================
   Médicos — sección de cierre "Empieza a ganar más..." con el
   MISMO aspecto que la booking-cta de Empresas (mismos fondos,
   tonos y estilos). Las reglas de Empresas están scopeadas a
   :not(.medical-landing), así que se replican aquí para medical.
   ============================================================ */
body.medical-landing .company-sky-cta.medical-booking-cta {
  background:
    linear-gradient(180deg, rgba(248,251,255,.92), rgba(255,255,255,.7)),
    url("../assets/images/optimized/booking-sky-cta.webp") center / cover no-repeat !important;
  overflow: hidden !important;
}
body.medical-landing .company-sky-cta.medical-booking-cta .booking-cta-inner {
  background:
    linear-gradient(135deg, rgba(12,35,66,.78), rgba(16,42,76,.48)),
    url("../assets/images/optimized/booking-sky-cta.webp") center / cover no-repeat !important;
  border: 1px solid rgba(255,255,255,.34) !important;
  box-shadow: 0 28px 74px rgba(16,42,76,.18) !important;
  text-align: center !important;
}
body.medical-landing .company-sky-cta.medical-booking-cta .company-booking-inner h2 {
  font-size: clamp(2.55rem, 1.98rem + 1.65vw, 3.45rem) !important;
  line-height: 1.04 !important;
  max-width: 28ch !important;
  margin: 0 auto 16px !important;
  color: #fff !important;
  text-align: center !important;
}
body.medical-landing .company-sky-cta.medical-booking-cta .company-booking-inner h2::after {
  background: #E6BC00;
  content: "";
  display: block;
  height: 3px;
  width: 42px;
  margin: 12px auto 0;
  box-shadow: 0 1px 3px rgba(0,0,0,.12);
}
body.medical-landing .company-sky-cta.medical-booking-cta .company-booking-inner p {
  color: #fff !important;
  opacity: .9 !important;
  max-width: 600px !important;
  margin: 0 auto 32px !important;
  text-align: center !important;
}
body.medical-landing .company-sky-cta.medical-booking-cta .medical-cta-action-bar {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
}
body.medical-landing .company-sky-cta.medical-booking-cta .btn-primary {
  background: var(--accent) !important;
  border: 2px solid rgba(255,255,255,.9) !important;
  color: var(--primary) !important;
}
body.medical-landing .company-sky-cta.medical-booking-cta .btn-primary:hover {
  background: #fff !important;
  color: var(--primary) !important;
}
body.medical-landing .company-sky-cta.medical-booking-cta .btn-dark {
  background: transparent !important;
  border: 2px solid rgba(255,255,255,.6) !important;
  color: #fff !important;
}
body.medical-landing .company-sky-cta.medical-booking-cta .btn-dark:hover {
  background: rgba(255,255,255,.12) !important;
  color: #fff !important;
}

/* Home móvil: bajar el encabezado "¿Con quién trabajamos?" */
@media (max-width: 640px) {
  body:not(.b2b-landing) .profiles-section .profiles-intro {
    margin-top: 36px !important;
  }
}

/* ============================================================
   Médicos móvil: testimonios de "Operación detrás" en VERTICAL
   (apilados), igual que en Empresas. Reglas base sin media query
   (.medical-trust-proof-grid 2 col / .company-proof-cards 3 col con
   min 940px/280px) empujaban las tarjetas fuera de pantalla.
   ============================================================ */
@media (max-width: 768px) {
  body.medical-landing .medical-behind-scenes.company-trust-proof {
    overflow-x: clip !important;
  }
  body.medical-landing .medical-behind-scenes.company-trust-proof .container {
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }
  /* Apilado robusto: las grillas pasan a block para evitar que los
     tracks de grid se ensanchen por el min-content del contenido. */
  body.medical-landing .medical-behind-scenes .medical-trust-proof-grid,
  body.medical-landing .medical-behind-scenes .company-proof-cards,
  body.medical-landing .medical-proof-cards {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: visible !important;
  }
  body.medical-landing .medical-behind-scenes .company-trust-panel,
  body.medical-landing .medical-behind-scenes .company-trust-panel h2,
  body.medical-landing .medical-behind-scenes .company-trust-panel p,
  body.medical-landing .medical-behind-scenes .company-trust-highlight {
    margin-left: 0 !important;
    margin-right: 0 !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
  body.medical-landing .medical-behind-scenes .company-trust-panel {
    margin-bottom: clamp(24px, 7vw, 40px) !important;
  }
  body.medical-landing .medical-behind-scenes .company-trust-panel h2 {
    white-space: normal !important;
    overflow-wrap: break-word !important;
    font-size: clamp(1.6rem, 6.5vw, 2.05rem) !important;
    line-height: 1.12 !important;
  }
  body.medical-landing .medical-behind-scenes .company-proof-cards .b2b-testimonial-card,
  body.medical-landing .medical-proof-cards .b2b-testimonial-card {
    display: block !important;
    min-height: 0 !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 16px !important;
    box-sizing: border-box !important;
  }
  body.medical-landing .medical-behind-scenes .company-proof-cards .b2b-testimonial-card:last-child,
  body.medical-landing .medical-proof-cards .b2b-testimonial-card:last-child {
    margin-bottom: 0 !important;
  }
  body.medical-landing .medical-behind-scenes .company-proof-cards .b2b-testimonial-footer,
  body.medical-landing .medical-proof-cards .b2b-testimonial-footer {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
  body.medical-landing .medical-behind-scenes .testimonial-stars,
  body.medical-landing .medical-proof-cards .testimonial-stars {
    white-space: normal !important;
  }
  /* La comilla decorativa ❝ tiene una fuente enorme que ensanchaba la
     tarjeta (y con ella el viewport). Se acota en móvil. */
  body.medical-landing .medical-behind-scenes .company-proof-cards .b2b-testimonial-quote,
  body.medical-landing .medical-proof-cards .b2b-testimonial-quote,
  body.medical-landing .medical-behind-scenes .b2b-testimonial-quote {
    font-size: 2.6rem !important;
    line-height: .9 !important;
    width: auto !important;
    max-width: 100% !important;
    overflow: hidden !important;
    display: block !important;
  }
  body.medical-landing .medical-behind-scenes .b2b-testimonial-card,
  body.medical-landing .medical-proof-cards .b2b-testimonial-card {
    overflow: hidden !important;
  }
  /* Catch-all: nada dentro de la sección puede forzar ancho > viewport */
  body.medical-landing .medical-behind-scenes.company-trust-proof *,
  body.medical-landing .medical-proof-cards * {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  body.medical-landing .medical-behind-scenes .testimonial-name,
  body.medical-landing .medical-behind-scenes .testimonial-role,
  body.medical-landing .medical-proof-cards .testimonial-name,
  body.medical-landing .medical-proof-cards .testimonial-role {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
}

@media (max-width: 768px) {
  body:not(.b2b-landing) .home-testimonials-header {
    margin-top: clamp(58px, 16vw, 88px) !important;
  }
}

/* Medicos hero: en laptop/escritorio la foto debe cubrir de arriba a
   abajo y quedar ligeramente ampliada, sin tocar textos ni logos. */
@media (min-width: 901px) {
  html body.b2b-landing.medical-landing section.split-hero.medical-hero {
    padding-bottom: 0 !important;
  }

  html body.b2b-landing.medical-landing section.split-hero.medical-hero .split-hero-image {
    height: calc(100svh + clamp(58px, 5.2vw, 76px)) !important;
    min-height: calc(100svh + clamp(58px, 5.2vw, 76px)) !important;
    overflow: hidden !important;
  }

  html body.b2b-landing.medical-landing section.split-hero.medical-hero .split-hero-image img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: scale(1.035) !important;
    transform-origin: center center !important;
    width: 100% !important;
  }
}
