/* ============================================================
   EVF Northeast & Mid-Atlantic Virtual Job Fair — Landing Page
   Brand: Deep Blue #143A6B · Bright Blue #143A6B · Teal #1FA89A
   ============================================================ */

/* ── Design Tokens ── */
:root {
  /* Brand */
  --evf-navy: #143A6B;
  --evf-blue: #143A6B;
  --evf-teal: #1FA89A;
  --evf-navy-dark: #143A6B;
  --evf-teal-dark: #0F8A7E;

  /* Surfaces */
  --color-bg: #F5F8FF;
  --color-surface: #FFFFFF;
  --color-surface-2: #EEF4FF;
  --color-border: #DDE5F5;

  /* Text */
  --color-text: #0A2545;
  --color-text-muted: #4A5872;
  --color-text-faint: #8A97AE;
  --color-text-inverse: #FFFFFF;

  /* Type */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Misc */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(15,29,58,0.06);
  --shadow-md: 0 4px 16px rgba(15,29,58,0.08);
  --shadow-lg: 0 12px 40px rgba(15,29,58,0.12);
  --shadow-xl: 0 20px 60px rgba(15,29,58,0.15);
  --transition: 180ms cubic-bezier(0.16,1,0.3,1);

  --content-default: 1180px;
}

/* Dark mode removed per request */

/* ── Base Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  transition: background var(--transition), color var(--transition);
}
img, svg { display: block; max-width: 100%; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.15; }
p, li { text-wrap: pretty; }
a, button, input, select, textarea { font: inherit; color: inherit; transition: all var(--transition); }
button { cursor: pointer; background: none; border: none; }
ul[role="list"] { list-style: none; }
::selection { background: rgba(0,152,202,0.18); }
:focus-visible { outline: 2px solid var(--evf-blue); outline-offset: 3px; border-radius: var(--radius-sm); }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-12));
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-6);
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
}
.btn-sm { padding: var(--space-2) var(--space-4); font-size: var(--text-xs); }
.btn-primary {
  background: linear-gradient(135deg, var(--evf-navy), var(--evf-blue));
  color: white;
  box-shadow: 0 4px 14px rgba(0,152,202,0.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,152,202,0.45); }
.btn-hero {
  background: white;
  color: var(--evf-navy);
  font-size: var(--text-sm);
  font-weight: 800;
  padding: var(--space-4) var(--space-8);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
.btn-ghost-hero {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: var(--space-4) var(--space-8);
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.btn-ghost-hero:hover { background: rgba(255,255,255,0.2); }
.btn-outline-primary {
  background: transparent;
  color: var(--evf-navy);
  border: 2px solid var(--evf-navy);
}
.btn-outline-primary:hover { background: var(--evf-navy); color: white; }
.btn-outline-teal {
  background: transparent;
  color: var(--evf-teal-dark);
  border: 2px solid var(--evf-teal);
}
.btn-outline-teal:hover { background: var(--evf-teal); color: white; }
.btn-white-on-dark {
  background: white;
  color: var(--evf-navy);
  font-weight: 800;
}
.btn-white-on-dark:hover { background: rgba(255,255,255,0.9); }
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245,248,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}
.nav-inner {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-12));
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
  /* Invert the navy + teal logo to white for the dark footer */
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.nav-actions { display: flex; align-items: center; gap: var(--space-3); }
.nav-secondary-link {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.18s ease;
  white-space: nowrap;
}
.nav-secondary-link:hover { color: #5FE3C7; }
@media (max-width: 720px) { .nav-secondary-link { display: none; } }

/* Download brochure button */
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid #143A6B;
  color: #143A6B;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-download:hover { background: #143A6B; color: white; }

/* Brochure modal — clean minimal card */
.bro-modal {
  background: white;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  padding: var(--space-7);
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  animation: modal-in 0.2s ease;
}
.bro-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-surface-2);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: background 0.15s;
}
.bro-close:hover { background: var(--color-border); }
.bro-top {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(135deg, #0A2545, #143A6B);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
}
.bro-doc-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.bro-doc-title {
  font-weight: 800;
  font-size: var(--text-base);
  color: white;
  margin-bottom: 4px;
}
.bro-doc-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.bro-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bro-submit {
  width: 100%;
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: linear-gradient(135deg, #143A6B, #143A6B);
  color: white;
  font-weight: 800;
  font-size: var(--text-sm);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.15s, transform 0.15s;
}
.bro-submit:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  background: linear-gradient(145deg, #0A2545 0%, #0A3272 35%, #0A2545 70%, #0F8A7E 100%);
  padding-top: 64px;
  display: block;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-orb-1 {
  width: 720px; height: 720px;
  background: radial-gradient(circle, #143A6B, transparent);
  top: -240px; right: -140px;
  opacity: 0.45;
}
.hero-orb-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #1FA89A, transparent);
  bottom: -120px; left: -120px;
  opacity: 0.35;
}

/* Two-column hero layout */
.hero-two-col {
  position: relative;
  z-index: 2;
  padding-block: clamp(var(--space-6), 3vw, var(--space-10)) clamp(var(--space-10), 5vw, var(--space-16));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 4vw, var(--space-16));
  align-items: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.hero-event-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-date-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: white;
  font-size: var(--text-sm);
  font-weight: 700;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  align-self: flex-start;
}
.hero-date-reg {
  background: #1FA89A;
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: var(--space-1);
}
.hero-date-cta {
  text-decoration: none;
  background: #1FA89A;
  color: white;
  font-size: 0.72rem;
  padding: 3px 10px;
  letter-spacing: 0.04em;
  transition: background 0.18s;
  cursor: pointer;
}
.hero-date-cta:hover { background: #e85a25; }
.hero-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: 0;
}
.hero-check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}
.hero-check-list li::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(78,187,184,0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234EBBB8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Right: platform visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
  max-width: 480px;
  width: 100%;
}
.hero-platform-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.1);
  display: block;
}
.hero-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.95);
  color: #143A6B;
  font-size: 0.72rem;
  font-weight: 700;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.hero-float-1 {
  bottom: -14px;
  left: -24px;
  animation: floatA 4s ease-in-out infinite;
}
.hero-float-2 {
  top: 10%;
  right: -20px;
  animation: floatB 4.5s ease-in-out infinite;
}
@keyframes floatA {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  align-self: flex-start;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #1FA89A;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1rem + 3vw, 3.75rem);
  color: white;
  line-height: 1.1;
}
.hero-heading em {
  font-style: italic;
  color: #1FA89A;
  display: block;
}
.hero-sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  max-width: 50ch;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}
.stat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  overflow: hidden;
  align-self: flex-start;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-4) var(--space-6);
  gap: var(--space-1);
}
.stat-number {
  font-size: var(--text-xl);
  font-weight: 800;
  color: white;
  line-height: 1;
}
.stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  margin-block: var(--space-3);
}

/* ── METRICS BAND ── */
.metrics-band {
  background: var(--color-surface);
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
  border-bottom: 1px solid var(--color-border);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
}
.metric-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  transition: box-shadow var(--transition), transform var(--transition);
}
.metric-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.metric-icon {
  color: var(--evf-blue);
  width: 28px; height: 28px;
}
.metric-value {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--evf-navy);
  line-height: 1;
}
.metric-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ── SECTIONS ── */
.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}
.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--evf-blue);
  margin-bottom: var(--space-3);
}
.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.section-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-bottom: clamp(var(--space-10), 4vw, var(--space-16));
  line-height: 1.75;
}

/* ── PLATFORM SECTION (replaces advantages) ── */
.platform-section { background: var(--color-bg); }

.platform-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(var(--space-12), 5vw, var(--space-20));
}

.platform-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.platform-card:hover { box-shadow: var(--shadow-xl); }
.platform-card--reverse { direction: rtl; }
.platform-card--reverse > * { direction: ltr; }

.platform-img-wrap {
  overflow: hidden;
  min-height: 340px;
  max-height: 520px;
  background: linear-gradient(135deg, #EEF5FF, #FBF5E6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.platform-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.platform-card:hover .platform-img-wrap img {
  transform: scale(1.03);
}

.platform-card-body {
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.platform-card-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--evf-navy), var(--evf-blue));
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  align-self: flex-start;
}
.platform-card-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  line-height: 1.25;
}
.platform-card-body p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
}
.platform-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: 0;
  margin-top: var(--space-2);
}
.platform-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}
.platform-list li::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #F5E9C2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234EBBB8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── VIDEO SECTION ── */
.video-section {
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
}
.video-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: #0A2545;
  max-width: 960px;
  margin-inline: auto;
  aspect-ratio: 16/9;
}
.platform-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Demo overlay */
.video-clickable { cursor: pointer; }
.demo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  background: rgba(10, 20, 50, 0.62);
  backdrop-filter: blur(2px);
  transition: background 0.2s;
  z-index: 2;
}
.demo-overlay.hidden { display: none; }
.video-clickable:hover .demo-overlay { background: rgba(10, 20, 50, 0.72); }
.demo-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #143A6B, #1FA89A);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(0,152,202,0.2), 0 8px 32px rgba(0,0,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.video-clickable:hover .demo-play-btn {
  transform: scale(1.08);
  box-shadow: 0 0 0 16px rgba(0,152,202,0.25), 0 12px 40px rgba(0,0,0,0.4);
}
.demo-overlay-text { text-align: center; }
.demo-overlay-label {
  font-size: var(--text-lg);
  font-weight: 800;
  color: white;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.demo-overlay-sub {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

/* ── GALLERY SECTION ── */
.gallery-section {
  background: var(--color-bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.gallery-item:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  max-height: 300px;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--wide img { max-height: 360px; }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85), transparent);
  color: rgba(255,255,255,0.92);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-5) var(--space-5) var(--space-4);
  line-height: 1.4;
}

/* ── WHY SECTION ── */
.why-section {
  background: var(--color-surface);
}
.why-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(var(--space-10), 5vw, var(--space-16));
  align-items: start;
}
.why-visual { position: sticky; top: 90px; }
.why-map {
  background: linear-gradient(145deg, #EEF5FF, #FBF5E6);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 460px;
  border: 1px solid var(--color-border);
}
.why-map-caption {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-3);
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding-top: var(--space-2);
}
.why-point {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-border);
}
.why-point:last-child { border-bottom: none; padding-bottom: 0; }
.why-num {
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--evf-blue);
  letter-spacing: 0.08em;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  flex-shrink: 0;
  min-width: 44px;
  text-align: center;
}
.why-body h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}
.why-body p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: none;
}

/* ── PACKAGES ── */
.packages-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface-2) 100%);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}
.package-card {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.package-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.package-card--featured {
  background: linear-gradient(145deg, #0D2D6B, #0A2545);
  border-color: transparent;
  color: white;
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}
.package-card--featured:hover { transform: scale(1.02) translateY(-4px); }
.package-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1FA89A, #143A6B);
  color: white;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,152,202,0.4);
}
.package-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.package-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.package-tier {
  font-size: var(--text-lg);
  font-weight: 800;
  color: inherit;
}
.package-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}
.price-amount {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--evf-navy);
  line-height: 1;
}
.package-card--featured .price-amount { color: white; }
.price-period {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}
.package-card--featured .price-period { color: rgba(255,255,255,0.65); }
.package-tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: calc(-1 * var(--space-2));
}
.package-card--featured .package-tagline { color: rgba(255,255,255,0.7); }

/* Resume highlight box */
.resume-highlight {
  margin: var(--space-4) 0;
  padding: var(--space-4) var(--space-5);
  background: color-mix(in srgb, #143A6B 8%, var(--color-surface-2));
  border: 1.5px solid color-mix(in srgb, #143A6B 20%, transparent);
  border-radius: var(--radius-lg);
}
.resume-highlight--featured {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}
.resume-highlight--max {
  background: color-mix(in srgb, #1FA89A 10%, var(--color-surface-2));
  border-color: color-mix(in srgb, #1FA89A 30%, transparent);
}
.resume-highlight-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}
.resume-highlight--featured .resume-highlight-label { color: rgba(255,255,255,0.6); }
.resume-highlight-desc {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: var(--space-2);
}
.resume-highlight--featured .resume-highlight-desc { color: white; }
.resume-highlight-est {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
  background: #143A6B;
  color: white;
}
.resume-highlight--featured .resume-highlight-est {
  background: rgba(255,255,255,0.25);
  color: white;
}
.resume-highlight--max .resume-highlight-est {
  background: #1FA89A;
  color: white;
}
.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
  padding-block: var(--space-2);
  border-top: 1px solid var(--color-border);
}
.package-card--featured .package-features { border-top-color: rgba(255,255,255,0.15); }
.feat {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.package-card--featured .feat { color: rgba(255,255,255,0.8); }
.feat::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.feat-yes::before {
  background-color: #F5E9C2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234EBBB8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.package-card--featured .feat-yes::before {
  background-color: rgba(78,187,184,0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234EBBB8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.feat-no { opacity: 0.4; }
.feat-no::before {
  background-color: #F0F2F5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A97AE' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}
.package-cta { margin-top: auto; }
.package-cta-fineprint {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: #6B7785;
  text-align: center;
  font-weight: 500;
}

/* Upgrade nudge boxes */
.upgrade-nudge {
  margin: var(--space-4) 0;
  padding: var(--space-3) var(--space-4);
  background: color-mix(in srgb, #143A6B 6%, var(--color-surface-2));
  border-left: 3px solid #143A6B;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: var(--text-sm);
}
.upgrade-nudge--featured {
  background: rgba(255,255,255,0.1);
  border-left-color: rgba(255,255,255,0.6);
}
.upgrade-nudge-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #143A6B;
  margin-bottom: var(--space-2);
}
.upgrade-nudge--featured .upgrade-nudge-label { color: rgba(255,255,255,0.8); }
.upgrade-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  margin: 0;
}
.upgrade-list li {
  color: var(--color-text-secondary);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.upgrade-nudge--featured .upgrade-list li { color: rgba(255,255,255,0.8); }
.upgrade-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  font-weight: 800;
  color: #143A6B;
}
.upgrade-nudge--featured .upgrade-list li::before { color: rgba(255,255,255,0.7); }

/* HireMax exclusive box */
.hiremax-exclusive {
  margin: var(--space-4) 0;
  padding: var(--space-4) var(--space-4);
  background: color-mix(in srgb, #1FA89A 10%, var(--color-surface-2));
  border: 1.5px solid #1FA89A;
  border-radius: var(--radius-md);
}
.hiremax-exclusive-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1FA89A;
  margin-bottom: var(--space-2);
}
.hiremax-exclusive p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Package CTA buttons */
.btn-cta-hire {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(135deg, #143A6B, #143A6B);
  color: white;
  font-weight: 800;
  font-size: var(--text-sm);
  border-radius: var(--radius-lg);
  text-decoration: none;
  letter-spacing: 0.01em;
  border: none;
  transition: opacity 0.18s, transform 0.18s;
}
.btn-cta-hire:hover { opacity: 0.9; transform: translateY(-2px); }

.btn-cta-hire-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: white;
  color: #143A6B;
  font-weight: 800;
  font-size: var(--text-sm);
  border-radius: var(--radius-lg);
  text-decoration: none;
  letter-spacing: 0.01em;
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: opacity 0.18s, transform 0.18s;
}
.btn-cta-hire-plus:hover { opacity: 0.92; transform: translateY(-2px); }

.btn-cta-hiremax {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(135deg, #1FA89A, #0F8A7E);
  color: white;
  font-weight: 800;
  font-size: var(--text-sm);
  border-radius: var(--radius-lg);
  text-decoration: none;
  letter-spacing: 0.01em;
  border: none;
  transition: opacity 0.18s, transform 0.18s;
}
.btn-cta-hiremax:hover { opacity: 0.9; transform: translateY(-2px); }

/* Invoice link below package CTA */
.pkg-invoice-link {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  margin-top: var(--space-3);
  padding: var(--space-2) 0;
  border-top: 1px solid var(--color-border);
  transition: color 0.15s;
}
.pkg-invoice-link:hover { color: #143A6B; }
.pkg-invoice-link--light {
  color: rgba(255,255,255,0.55);
  border-top-color: rgba(255,255,255,0.15);
}
.pkg-invoice-link--light:hover { color: white; }
.packages-discount-note {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
  padding: var(--space-4) var(--space-6);
  background: color-mix(in srgb, #143A6B 8%, var(--color-surface-2));
  border: 1px solid color-mix(in srgb, #143A6B 20%, transparent);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  max-width: 680px;
  margin-inline: auto;
}
.packages-discount-note svg { flex-shrink: 0; }
.packages-discount-note a { color: var(--color-primary); text-decoration: underline; }



/* ── INCLUDED ── */
.included-section { background: var(--color-surface); }
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
}
.included-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.included-item svg { flex-shrink: 0; color: var(--evf-blue); }
.included-item:hover { border-color: var(--evf-teal); box-shadow: var(--shadow-sm); }

/* ── CONTACT ── */
.contact-section { background: var(--color-bg); }
.contact-card {
  background: linear-gradient(145deg, #0D2D6B, #0A2545 60%, #0F8A7E 100%);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.contact-left {
  padding: clamp(var(--space-10), 5vw, var(--space-16));
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: auto;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
}
.contact-right {
  background: var(--color-surface);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-group label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--color-surface-2);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text);
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-faint); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--evf-blue);
  box-shadow: 0 0 0 3px rgba(0,152,202,0.15);
}
.form-group textarea { resize: vertical; }
.form-disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
}

/* ── FOOTER ── */
.footer {
  background: #0A1628;
  color: rgba(255,255,255,0.7);
  padding-top: var(--space-12);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 300px;
}
.footer-tagline {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}
.footer-contact-line {
  display: flex;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  align-items: center;
  flex-wrap: wrap;
}
.footer-contact-line a { color: #1FA89A; text-decoration: none; }
.footer-contact-line a:hover { color: #7DCCCA; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition);
}
.footer-links a:hover { color: #1FA89A; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.footer-copyright { color: rgba(255,255,255,0.45); }
.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.footer-legal a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: var(--text-xs);
  transition: color var(--transition);
}
.footer-legal a:hover { color: #1FA89A; }
.footer-legal-sep { color: rgba(255,255,255,0.25); }
@media (max-width: 600px) {
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* ── PARTNERSHIP BAND ── */
.partnership-band {
  background: linear-gradient(135deg, #0A2545 0%, #143A6B 100%);
  padding: var(--space-8) 0;
}
.partnership-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-6);
  align-items: center;
}
.partnership-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(78,187,184,0.2);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
}
.partnership-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1FA89A;
  margin-bottom: var(--space-2);
}
.partnership-text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin: 0;
  max-width: 56ch;
}
.partnership-text strong { color: white; }
.partnership-stats {
  display: flex;
  gap: var(--space-6);
  flex-shrink: 0;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: var(--space-6);
}
.pstat { text-align: center; }
.pstat-val {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: white;
  line-height: 1;
}
.pstat-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  text-align: center;
  max-width: 8ch;
}
@media (max-width: 900px) {
  .partnership-inner { grid-template-columns: auto 1fr; }
  .partnership-stats { display: none; }
}

/* ── INVOICE REQUEST ── */
.invoice-request {
  margin-top: var(--space-10);
  background: linear-gradient(135deg, #0A2545 0%, #143A6B 60%, #0a4a5e 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.invoice-request::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='18' stroke='rgba(255,255,255,0.03)' fill='none'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.invoice-request-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  align-items: start;
}
.invoice-request-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.invoice-request-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #143A6B, #1FA89A);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.invoice-request-label {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: white;
  font-weight: 700;
  line-height: 1.3;
  margin-top: var(--space-2);
}
.invoice-request-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin: 0;
}
.invoice-request-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.invoice-request-list li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  padding-left: 20px;
  position: relative;
}
.invoice-request-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1FA89A;
}
/* Invoice form */
.invoice-request-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.invoice-form .inv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.invoice-form .inv-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-4);
}
.invoice-form label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}
.invoice-form input,
.invoice-form select,
.invoice-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-surface);
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.invoice-form input:focus,
.invoice-form select:focus,
.invoice-form textarea:focus {
  outline: none;
  border-color: #143A6B;
  box-shadow: 0 0 0 3px rgba(0,152,202,0.12);
}
.invoice-form textarea { resize: vertical; min-height: 80px; }
.inv-success {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: color-mix(in srgb, #1FA89A 10%, white);
  border: 1px solid #1FA89A;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #2a8a87;
}
@media (max-width: 900px) {
  .invoice-request-inner { grid-template-columns: 1fr; }
  .invoice-form .inv-row { grid-template-columns: 1fr; }
}

/* ── VIDEO MODAL ── */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 15, 40, 0.88);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}
.modal-backdrop.open {
  display: flex;
}
.modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #000;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  animation: modal-in 0.22s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
.modal-video {
  width: 100%;
  display: block;
  max-height: 80vh;
  background: #000;
}
.modal-close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.modal-close:hover { background: rgba(255,255,255,0.15); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-two-col { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .platform-card { grid-template-columns: 1fr; }
  .platform-card--reverse { direction: ltr; }
  .platform-img-wrap { min-height: 240px; max-height: 320px; }
}
@media (max-width: 900px) {
  .why-layout { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card--featured { transform: none; }
  .package-card--featured:hover { transform: translateY(-4px); }
  .contact-card { grid-template-columns: 1fr; }
  .contact-left { padding-bottom: var(--space-8); }
  .gallery-item--wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .stat-bar { flex-direction: column; align-items: center; }
  .stat-divider { width: 80%; height: 1px; margin-block: 0; }
  .form-row { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .unlimited-inner { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
}

/* ── Brevo Embedded Form in Brochure Modal ── */
.bro-modal--brevo {
  max-width: 560px;
  width: 95vw;
}

.bro-brevo-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: white;
}

.bro-brevo-iframe {
  width: 100%;
  min-height: 480px;
  border: none;
  border-radius: 12px;
}

@media (max-width: 600px) {
  .bro-modal--brevo {
    max-width: 100%;
  }
  .bro-brevo-iframe {
    min-height: 520px;
  }
}

/* ── TRUST LOGO MARQUEE ── */
.logo-marquee {
  background: var(--color-surface);
  padding-block: clamp(var(--space-8), 4vw, var(--space-12));
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.logo-marquee-label {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}
.logo-marquee-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%
  );
}
.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  width: max-content;
  animation: logo-marquee-scroll 40s linear infinite;
}
.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}
.logo-item {
  flex: 0 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.72;
  transition: opacity var(--transition);
}
.logo-item:hover { opacity: 1; }
.logo-item img {
  max-height: 48px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.05);
  transition: filter var(--transition);
}
.logo-item:hover img { filter: grayscale(0%); }


@keyframes logo-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track { animation: none; }
  .logo-marquee-viewport { overflow-x: auto; }
}

@media (max-width: 640px) {
  .logo-item { height: 44px; }
  .logo-item img { max-height: 36px; max-width: 140px; }
  .logo-marquee-track { gap: 40px; animation-duration: 30s; }
}


/* ── Kliri logo + "powered by EasyVirtualFair" caption in header (added 2026-04-20) ── */
.nav-logo { gap: 12px; }
.nav-powered {
  font-size: 0.7rem;
  line-height: 1.2;
  color: var(--color-text-faint);
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-powered strong {
  color: var(--color-text-muted);
  font-weight: 600;
}
@media (max-width: 520px) {
  .nav-powered { display: none; }
}
/* ── end Kliri header ── */


/* ── Kliri-style header override: white background + 40px logo (added 2026-04-20) ── */
.nav { background: rgba(255,255,255,0.92); border-bottom: 1px solid var(--color-border); }
.nav-logo-img { height: 40px; }
/* ── end header override ── */

/* ═══════════════════════════════════════════════════════════
   FREE BOOTH CAMPAIGN — added 2026-04-22
   ═══════════════════════════════════════════════════════════ */

/* Hero: "FREE" highlight inside H1 */
.hero-heading-free {
  display: inline-block;
  background: linear-gradient(135deg, #1FA89A 0%, #1A6BC0 50%, #FFA94D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1FA89A; /* fallback */
  font-weight: 900;
  font-style: normal;
  letter-spacing: -0.02em;
  position: relative;
  padding: 0 0.1em;
  text-shadow: 0 2px 12px rgba(255, 107, 53, 0.15);
}

/* Hero badge — offer variant */
.hero-badge-free {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 140, 66, 0.18)) !important;
  border: 1px solid rgba(255, 107, 53, 0.35) !important;
  color: #E65C1F !important;
}
.hero-badge-free .badge-dot {
  background: #1FA89A !important;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.18) !important;
}

/* Hero date pill — deadline variant */
.hero-date-pill-deadline {
  background: linear-gradient(135deg, #FBF5E6, #F5E9C2) !important;
  border: 1px solid #5FE3C7 !important;
  color: #7A5A1A !important;
  font-weight: 700 !important;
}
.hero-date-pill-deadline svg { stroke: #1FA89A !important; }
.hero-date-pill-deadline .hero-date-cta {
  color: #1FA89A !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  margin-left: 0.4rem;
}
.hero-date-pill-deadline .hero-date-cta:hover { text-decoration: underline !important; }

/* Package card — struck-through price + FREE tag */
.package-price .price-amount--struck {
  text-decoration: line-through;
  text-decoration-color: rgba(180, 30, 30, 0.7);
  text-decoration-thickness: 3px;
  opacity: 0.55;
  font-size: 2.1rem;
  margin-right: 0.5rem;
}
.price-free-tag {
  display: inline-block;
  font-family: inherit;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  background: linear-gradient(135deg, #1FA89A 0%, #1A6BC0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1FA89A;
  letter-spacing: -0.02em;
  vertical-align: baseline;
}

/* Free offer banner inside Hire package */
.free-offer-banner {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.35rem 0 0.9rem;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(135deg, #FBF5E6, #F5E9C2);
  border: 1px solid #5FE3C7;
  border-radius: 10px;
  color: #7A5A1A;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}
.free-offer-banner svg {
  flex-shrink: 0;
  stroke: #1FA89A;
  fill: #1FA89A;
}
.free-offer-banner strong {
  color: #B23E0E;
  font-weight: 800;
}

/* Make the Hire CTA pop a little more on the free campaign */
.package-card .btn-cta-hire {
  background: linear-gradient(135deg, #1FA89A 0%, #1A6BC0 100%) !important;
  border-color: transparent !important;
  color: white !important;
  box-shadow: 0 6px 18px rgba(255, 107, 53, 0.35) !important;
}
.package-card .btn-cta-hire:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 107, 53, 0.45) !important;
}

/* Responsive tweak */
@media (max-width: 520px) {
  .price-free-tag { font-size: 2rem; }
  .package-price .price-amount--struck { font-size: 1.75rem; }
  .hero-heading-free { padding: 0 0.05em; }
}
/* ── end free campaign styles ── */

/* ═══════════════════════════════════════════════════════════
   FREE BOOTH RIBBON (hero CTA) — v2, added 2026-04-22
   ═══════════════════════════════════════════════════════════ */

.free-booth-ribbon {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 1.4rem 0 1.5rem;
  padding: 0;
  background: linear-gradient(135deg, #FBF5E6 0%, #F5E9C2 100%);
  border: 2px solid #1FA89A;
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(255, 107, 53, 0.28);
  text-decoration: none;
  overflow: hidden;
  max-width: 480px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: ribbon-pulse 2.8s ease-in-out infinite;
  position: relative;
}
.free-booth-ribbon:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 107, 53, 0.42);
  animation-play-state: paused;
}

/* Shine sweep */
.free-booth-ribbon::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  animation: ribbon-shine 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ribbon-shine {
  0% { left: -60%; }
  50% { left: 120%; }
  100% { left: 120%; }
}
@keyframes ribbon-pulse {
  0%, 100% { box-shadow: 0 10px 32px rgba(255, 107, 53, 0.28); }
  50%      { box-shadow: 0 14px 40px rgba(255, 107, 53, 0.48); }
}

.free-booth-ribbon-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(135deg, #1FA89A, #1A6BC0);
  color: white;
  min-width: 92px;
}
.free-booth-ribbon-flash {
  font-size: 1.6rem;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
}
.free-booth-ribbon-tag {
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.free-booth-ribbon-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.8rem 1.15rem;
}
.free-booth-ribbon-title {
  color: #1a3a1a;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.free-booth-ribbon-title strong {
  color: #1FA89A;
  font-weight: 900;
  font-size: 1.35rem;
  margin-left: 0.15rem;
}
.free-booth-ribbon-sub {
  color: #7A5A1A;
  font-weight: 700;
  font-size: 0.82rem;
  margin-top: 0.1rem;
  letter-spacing: 0.01em;
}

/* Dark mode */

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .free-booth-ribbon, .free-booth-ribbon::after { animation: none; }
}

/* Mobile tweaks */
@media (max-width: 520px) {
  .free-booth-ribbon-badge { min-width: 78px; padding: 0.75rem 0.7rem; }
  .free-booth-ribbon-flash { font-size: 1.3rem; }
  .free-booth-ribbon-tag { font-size: 0.52rem; }
  .free-booth-ribbon-title { font-size: 1rem; }
  .free-booth-ribbon-title strong { font-size: 1.2rem; }
  .free-booth-ribbon-sub { font-size: 0.75rem; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION — "Reserve Your Free Booth" makeover
   ═══════════════════════════════════════════════════════════ */

.contact-eyebrow-offer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 107, 53, 0.18);
  color: #5FE3C7 !important;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 140, 66, 0.45);
  font-weight: 800;
  letter-spacing: 0.05em;
  animation: eyebrow-pulse 2.2s ease-in-out infinite;
}
.contact-offer-flash {
  font-size: 1rem;
  line-height: 1;
}
@keyframes eyebrow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.35); }
  50%      { box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.0); }
}

.contact-heading-free {
  background: linear-gradient(135deg, #1A6BC0 0%, #5FE3C7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1A6BC0;
  font-style: italic;
  font-weight: 900;
  padding: 0 0.08em;
}

.contact-offer-perks {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 1.1rem;
  background: rgba(78, 187, 184, 0.10);
  border: 1px solid rgba(78, 187, 184, 0.28);
  border-radius: 12px;
  max-width: 44ch;
}
.contact-offer-perk {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
}
.contact-offer-perk svg { flex-shrink: 0; }

/* Big reserve button */
.btn-reserve-free {
  background: linear-gradient(135deg, #1FA89A 0%, #1A6BC0 100%) !important;
  border-color: transparent !important;
  color: white !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  padding: 0.9rem 1.2rem !important;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4) !important;
}
.btn-reserve-free:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.55) !important;
}

/* ── end v2 free booth styles ── */


/* ═══════════════════════════════════════════════════════════
   v4 — Watch video pill, 2x2 platform grid, venues showcase
   ═══════════════════════════════════════════════════════════ */

/* ── Hero red play button (centered on image) ── */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-play-btn {
  position: absolute;
  top: 86%;
  left: 38%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  z-index: 4;
  transition: transform 0.25s ease;
}
.hero-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.06);
}
.hero-play-btn-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EF4444 0%, #B91C1C 100%);
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.95),
    0 0 0 14px rgba(239, 68, 68, 0.35),
    0 22px 50px rgba(185, 28, 28, 0.65),
    0 6px 18px rgba(0, 0, 0, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.hero-play-btn-circle svg { width: 32px; height: 32px; margin-left: 4px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.hero-play-btn-circle::before,
.hero-play-btn-circle::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.55);
  z-index: -1;
  animation: hero-play-pulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.hero-play-btn-circle::after {
  animation-delay: 1.1s;
  background: rgba(239, 68, 68, 0.4);
}
@keyframes hero-play-pulse {
  0%   { transform: scale(0.92); opacity: 0.85; }
  70%  { transform: scale(1.75); opacity: 0;    }
  100% { transform: scale(1.75); opacity: 0;    }
}
.hero-play-btn-label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: white;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65), 0 1px 3px rgba(0, 0, 0, 0.75);
  padding: 8px 18px;
  background: rgba(15, 29, 58, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-play-btn-sub {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
@media (max-width: 820px) {
  .hero-play-btn-circle { width: 88px; height: 88px; }
  .hero-play-btn-circle svg { width: 30px; height: 30px; }
  .hero-play-btn-label { font-size: 0.92rem; }
}

/* ── Secondary 'Watch how it works' pill (after venues grid) ── */
.watch-video-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.watch-video-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px 14px 18px;
  background: linear-gradient(135deg, #EF4444 0%, #B91C1C 100%);
  color: white;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow:
    0 0 0 4px rgba(239, 68, 68, 0.18),
    0 14px 32px rgba(185, 28, 28, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.watch-video-pill:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 4px rgba(239, 68, 68, 0.25),
    0 18px 38px rgba(185, 28, 28, 0.5),
    0 6px 14px rgba(0, 0, 0, 0.2);
}
.watch-video-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.watch-video-pill-icon svg { margin-left: 2px; }
.watch-video-pill-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  text-align: left;
}
.watch-video-pill-sub {
  font-weight: 500;
  font-size: 0.78rem;
  opacity: 0.88;
  margin-top: 2px;
  letter-spacing: 0.01em;
}
@media (max-width: 600px) {
  .watch-video-pill { font-size: 0.95rem; padding: 12px 20px 12px 14px; }
  .watch-video-pill-icon { width: 30px; height: 30px; }
  .watch-video-pill-icon svg { width: 14px; height: 14px; }
}

/* ── 2x2 platform card grid (compact) ── */
.platform-grid--2x2 {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.platform-card--compact {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 29, 58, 0.08);
  border: 1px solid rgba(15, 29, 58, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.platform-card--compact:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 29, 58, 0.14);
}
.platform-card--compact .platform-img-wrap {
  width: 100%;
  height: 220px;
  flex-shrink: 0;
}
.platform-card--compact .platform-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.platform-card--compact .platform-card-body {
  padding: 24px 26px 26px;
}
.platform-card--compact .platform-card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 152, 202, 0.10);
  color: #143A6B;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.platform-card--compact h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  color: #0A2545;
  margin: 0 0 10px;
  font-weight: 800;
}
.platform-card--compact p {
  color: #4D5C7C;
  line-height: 1.55;
  font-size: 0.95rem;
  margin: 0 0 14px;
}
.platform-card--compact .platform-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.platform-card--compact .platform-list li {
  position: relative;
  padding: 4px 0 4px 22px;
  color: #2B3A5C;
  font-size: 0.88rem;
  line-height: 1.4;
}
.platform-card--compact .platform-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1FA89A 0%, #143A6B 100%);
}
.platform-card--compact .platform-list li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 13px;
  width: 4px;
  height: 7px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}

@media (max-width: 820px) {
  .platform-grid--2x2 {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .platform-card--compact .platform-img-wrap { height: 200px; }
}

/* ── Venues showcase ── */
.venues-showcase-section {
  padding: 70px 0 80px;
  background: linear-gradient(180deg, #FAFBFD 0%, #F4F7FB 100%);
}
.venues-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.venue-tile {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #0A2545;
  box-shadow: 0 8px 28px rgba(15, 29, 58, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 320px;
}
.venue-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 29, 58, 0.22);
}
.venue-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.venue-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 22px 18px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(0deg, rgba(15, 29, 58, 0.92) 0%, rgba(15, 29, 58, 0.0) 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.venue-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 11px;
  background: rgba(78, 187, 184, 0.95);
  color: #0A2545;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  .venues-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .venues-grid {
    grid-template-columns: 1fr;
  }
  .venue-tile { height: 260px; }
}

/* sr-only utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   University variant — Contact CTA block
   (replaces the Netlify form on the right side
   of the contact section)
   ============================================ */
.contact-cta-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-cta-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0A2545;
  line-height: 1.25;
}
.contact-cta-text {
  font-size: 0.98rem;
  color: #455a73;
  line-height: 1.55;
  margin: 0;
}
.contact-cta-or {
  text-align: center;
  font-size: 0.85rem;
  color: #8a99a8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  margin: 4px 0;
}
.contact-cta-or::before,
.contact-cta-or::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: #e2e8ef;
}
.contact-cta-or::before { left: 0; }
.contact-cta-or::after  { right: 0; }

.btn-cta-call {
  background: #ffffff;
  color: #0A2545;
  border: 2px solid #0A2545;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.btn-cta-call:hover {
  background: #0A2545;
  color: #ffffff;
}

/* ============================================
   Magna Cum Laude University — Branding
   Navy & Gold palette overrides
   ============================================ */

/* Big seal in hero (left column) */
.hero-seal-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}
.hero-seal {
  width: 132px;
  height: 132px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .hero-seal { width: 96px; height: 96px; }
}

/* Nav logo — horizontal MCL wordmark */
.nav-logo-mcl {
  height: 52px !important;
  width: auto !important;
  max-width: 280px;
}
@media (max-width: 720px) {
  .nav-logo-mcl { height: 40px !important; max-width: 200px; }
}

/* Nav: white background to contrast with navy hero */
.nav {
  background: #ffffff !important;
  border-bottom: 3px solid #1FA89A !important;
}
.nav-powered {
  color: #6b7480 !important;
  font-size: 0.78rem;
}
.nav-powered strong { color: #0A2545 !important; }

/* Footer logo */
.footer-logo-mcl {
  height: 70px !important;
  width: auto !important;
  max-width: 280px;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
  filter: none !important;
  object-fit: contain;
}

/* Hero gradient — deeper navy with gold orb */
.hero {
  background: linear-gradient(135deg, #0A2545 0%, #143A6B 60%, #0A2545 100%) !important;
}
.hero-orb-1 {
  background: radial-gradient(circle, rgba(201,161,74,0.35) 0%, transparent 70%) !important;
}
.hero-orb-2 {
  background: radial-gradient(circle, rgba(20,58,107,0.55) 0%, transparent 70%) !important;
}

/* Hero italic accent in heading — gold */
.hero-heading em {
  color: #5FE3C7 !important;
  font-style: italic;
}

/* Date pill — gold accent */
.hero-date-pill {
  background: rgba(201,161,74,0.18) !important;
  border: 1px solid rgba(201,161,74,0.45) !important;
  color: #5FE3C7 !important;
}
.hero-date-reg {
  background: #1FA89A !important;
  color: #0A2545 !important;
}

/* Hero check list bullets — gold */
.hero-check-list li::before,
.hero-check-list li svg {
  color: #1FA89A !important;
}

/* Primary buttons — Navy with gold accent on hover */
.btn-primary,
.btn-hero {
  background: #1FA89A !important;
  color: #0A2545 !important;
  border: 2px solid #1FA89A !important;
  font-weight: 700 !important;
}
.btn-primary:hover,
.btn-hero:hover {
  background: #0F8A7E !important;
  border-color: #0F8A7E !important;
  color: #ffffff !important;
}

/* "See Available Packages" hero CTA - gold filled */
.hero .btn-hero {
  background: #1FA89A !important;
  color: #0A2545 !important;
}

/* Download / outline buttons in nav */
.btn-download {
  border-color: #0A2545 !important;
  color: #0A2545 !important;
}
.btn-download:hover {
  background: #0A2545 !important;
  color: #ffffff !important;
}

/* Section headings — navy */
.section-heading,
.section h2,
h1, h2, h3 {
  color: #0A2545;
}
.section-eyebrow {
  color: #1FA89A !important;
  font-weight: 700;
  letter-spacing: 0.12em;
}

/* Metric icons & values */
.metric-icon { color: #143A6B !important; }
.metric-value { color: #0A2545 !important; }

/* Partnership band — navy with gold accent */
.partnership-band {
  background: linear-gradient(135deg, #0A2545 0%, #143A6B 100%) !important;
  border-top: 3px solid #1FA89A;
  border-bottom: 3px solid #1FA89A;
}
.partnership-icon {
  background: rgba(201,161,74,0.2) !important;
  border: 2px solid #1FA89A !important;
}
.partnership-icon svg { stroke: #5FE3C7 !important; }
.pstat-val { color: #5FE3C7 !important; }

/* Platform card tags — gold */
.platform-card-tag {
  background: #FBF5E6 !important;
  color: #7A5A1A !important;
  border: 1px solid #5FE3C7 !important;
}

/* Venue tags — gold accent */
.venue-tag {
  background: #1FA89A !important;
  color: #0A2545 !important;
}

/* Featured package card (Connect+) — navy gradient */
.package-card--featured {
  background: linear-gradient(135deg, #0A2545 0%, #143A6B 100%) !important;
  border: 2px solid #1FA89A !important;
}
.package-popular-badge {
  background: #1FA89A !important;
  color: #0A2545 !important;
  font-weight: 700;
}

/* Package CTAs */
.btn-cta-hire {
  background: #ffffff !important;
  color: #0A2545 !important;
  border: 2px solid #0A2545 !important;
}
.btn-cta-hire:hover {
  background: #0A2545 !important;
  color: #ffffff !important;
}
.btn-cta-hire-plus {
  background: #1FA89A !important;
  color: #0A2545 !important;
  border: 2px solid #1FA89A !important;
}
.btn-cta-hire-plus:hover {
  background: #ffffff !important;
  color: #0A2545 !important;
}
.btn-cta-hiremax {
  background: #0A2545 !important;
  color: #ffffff !important;
  border: 2px solid #0A2545 !important;
}
.btn-cta-hiremax:hover {
  background: #1FA89A !important;
  color: #0A2545 !important;
  border-color: #1FA89A !important;
}

/* Resume highlight blocks */
.resume-highlight {
  background: #FBF5E6 !important;
  border-left: 3px solid #1FA89A !important;
}
.resume-highlight--featured {
  background: rgba(201,161,74,0.18) !important;
  border-left-color: #5FE3C7 !important;
}
.resume-highlight--max {
  background: #EEF2F8 !important;
  border-left-color: #143A6B !important;
}

/* Contact section — navy with gold accents */
.contact-section,
.contact-card {
  background: linear-gradient(135deg, #0A2545 0%, #143A6B 100%) !important;
}
.contact-heading-free,
.contact-card .section-heading span {
  color: #5FE3C7 !important;
}

/* Reserve free button — gold */
.btn-reserve-free {
  background: #1FA89A !important;
  color: #0A2545 !important;
  border: 2px solid #1FA89A !important;
}
.btn-reserve-free:hover {
  background: #0F8A7E !important;
  border-color: #0F8A7E !important;
  color: #ffffff !important;
}

/* Footer */
.footer {
  background: #0A2545 !important;
  border-top: 4px solid #1FA89A;
}
.footer a:hover { color: #5FE3C7 !important; }

/* Nav partnership note */
.nav-partnership {
  font-size: 0.82rem;
  color: #6b7480;
  margin-left: 14px;
  padding-left: 16px;
  border-left: 1px solid #d8dde2;
  white-space: nowrap;
}
.nav-partnership strong { color: #0A2545; font-weight: 600; }
@media (max-width: 1100px) {
  .nav-partnership { display: none; }
}

/* ═══════════════════════════════════════════
   HERO: Ambient campus video background + larger visual frame
   ═══════════════════════════════════════════ */
.hero { position: relative; isolation: isolate; }
.hero-bg-video,
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
  filter: saturate(1.2) contrast(1.08) brightness(0.95);
}
/* Dark navy veil over the video so text stays readable */
.hero-bg-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(10,37,69,0.55) 0%, rgba(20,58,107,0.35) 50%, rgba(10,37,69,0.62) 100%);
  pointer-events: none;
}
.hero .hero-bg { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-two-col { position: relative; z-index: 3; }

/* Larger hero visual frame — wider on desktop, fills its column */
@media (min-width: 1025px) {
  .hero-two-col { grid-template-columns: 1.05fr 1.25fr !important; gap: clamp(32px, 4vw, 64px) !important; align-items: center; }
  .hero-visual-frame { max-width: 640px !important; }
}

/* Respect reduced-motion: hide the looping video */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-video { display: none; }
}


/* ═══════════════════════════════════════════
   HERO LAYOUT — two columns at desktop: copy left, video card right
   ═══════════════════════════════════════════ */
@media (min-width: 1025px) {
  .hero-two-col {
    display: grid !important;
    grid-template-columns: 1.15fr 1fr !important;
    gap: clamp(32px, 4vw, 56px) !important;
    align-items: center !important;
    max-width: 1240px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left !important;
    padding-block: clamp(48px, 6vw, 96px) clamp(64px, 7vw, 120px) !important;
  }
}

/* Hide the old right-column visual entirely (already removed from HTML, safety net) */
.hero-visual { display: none !important; }

/* Inline CTA row: Packages button + Watch video button side by side */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

/* "Watch how it works" pill button with red play circle — prominent secondary CTA */
.hero-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 10px 28px 10px 10px;
  cursor: pointer;
  color: #143A6B;
  font-family: inherit;
  box-shadow: 0 10px 28px rgba(10, 37, 69, 0.35), 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.hero-watch-btn:hover {
  transform: translateY(-3px) scale(1.02);
  background: #fff;
  box-shadow: 0 14px 36px rgba(31, 168, 154, 0.45), 0 2px 6px rgba(0, 0, 0, 0.18);
}
.hero-watch-btn-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E63946, #C1121F);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(230, 57, 70, 0.55);
}
.hero-watch-btn-circle svg { margin-left: 3px; width: 26px; height: 26px; }
.hero-watch-btn-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.15;
  text-align: left;
  color: #143A6B;
}
.hero-watch-btn-sub {
  font-weight: 600;
  font-size: 0.82rem;
  opacity: 0.75;
  margin-top: 3px;
  color: #1A6BC0;
  letter-spacing: 0.02em;
}


/* ═══════════════════════════════════════════════════════════════
   OUR STUDENTS BAND  (per-university content, replaces metrics-band)
   ═══════════════════════════════════════════════════════════════ */
.our-students-band {
  background: linear-gradient(180deg, #FBF5E6 0%, #FFFEFB 100%);
  padding: 64px 0 72px;
  border-bottom: 1px solid rgba(10, 37, 69, 0.08);
}
.our-students-inner {
  max-width: 1080px;
  text-align: center;
}
.our-students-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0F8A7E;
  background: rgba(201, 161, 74, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.our-students-heading {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: #0A2545;
  line-height: 1.2;
  margin: 0 0 16px;
}
.our-students-heading .os-accent {
  color: #0F8A7E;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.our-students-lead {
  max-width: 720px;
  margin: 0 auto 36px;
  color: #143A6B;
  font-size: 1.05rem;
  line-height: 1.7;
}
.our-students-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 820px;
  margin: 0 auto 28px;
}
.os-stat {
  background: white;
  border: 1px solid rgba(10, 37, 69, 0.1);
  border-radius: 14px;
  padding: 22px 16px;
  box-shadow: 0 2px 10px rgba(10, 37, 69, 0.05);
}
.os-stat-val {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #0A2545;
  line-height: 1.1;
  margin-bottom: 6px;
}
.os-stat-lbl {
  font-size: 0.88rem;
  color: #143A6B;
  line-height: 1.4;
}
.our-students-majors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  padding-top: 8px;
}
.os-majors-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0A2545;
  margin-right: 4px;
}
.os-major-chip {
  font-size: 0.85rem;
  font-weight: 500;
  color: #143A6B;
  background: white;
  border: 1px solid rgba(201, 161, 74, 0.45);
  padding: 6px 12px;
  border-radius: 999px;
}
@media (max-width: 720px) {
  .our-students-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .our-students-band {
    padding: 48px 0 56px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER EVF LOGO
   ═══════════════════════════════════════════════════════════════ */
.footer-evf-link {
  display: inline-block;
  margin-top: 10px;
  background: white;
  padding: 10px 16px;
  border-radius: 10px;
  line-height: 0;
  transition: transform 0.15s ease;
}
.footer-evf-link:hover {
  transform: translateY(-1px);
}
.footer-evf-logo {
  height: 32px;
  width: auto;
  display: block;
}

/* ──────────────────────────────────────────────
   METROPOLIS — 2-package layout overrides
   ────────────────────────────────────────────── */
.packages-grid--two {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  gap: 28px;
}
@media (max-width: 768px) {
  .packages-grid--two { grid-template-columns: 1fr !important; }
}

/* Reinforce hero seal image rendering for SVG */
.hero-seal {
  background: transparent !important;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}

/* Bright daytime skyline video — keep it luminous, scrim only behind the text on the left */
.hero-bg-video { opacity: 1 !important; filter: saturate(1.05) contrast(1.02) !important; }
.hero-bg-veil {
  background:
    linear-gradient(90deg, rgba(10,37,69,0.78) 0%, rgba(10,37,69,0.55) 38%, rgba(10,37,69,0.18) 65%, rgba(10,37,69,0.08) 100%),
    linear-gradient(180deg, rgba(10,37,69,0.25) 0%, transparent 25%, transparent 75%, rgba(10,37,69,0.40) 100%) !important;
}
.hero-heading, .hero-sub { text-shadow: 0 2px 12px rgba(10,37,69,0.55); }
.hero-check-list li { text-shadow: 0 1px 8px rgba(10,37,69,0.55); }

/* KLIRI footer logo: prevent dark filters from washing out the PNG */
.footer-logo-mcl {
  filter: none !important;
  max-height: 56px;
  width: auto;
  background: white;
  padding: 8px 14px;
  border-radius: 10px;
}

/* ──────────────────────────────────────────────
   METROPOLIS — additional layout fixes
   ────────────────────────────────────────────── */

/* Push hero content below the fixed/sticky nav */
.hero { padding-top: 110px !important; }
@media (max-width: 720px) {
  .hero { padding-top: 90px !important; }
}

/* Platform cards: 3-up layout instead of 2x2 (we have 3 cards) */
.platform-grid.platform-grid--2x2 {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}
@media (max-width: 1024px) {
  .platform-grid.platform-grid--2x2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 640px) {
  .platform-grid.platform-grid--2x2 {
    grid-template-columns: 1fr !important;
  }
}

/* Platform card image — slightly shorter on 3-up to keep cards balanced */
.platform-card--compact .platform-img-wrap img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

/* ──────────────────────────────────────────────
   PACKAGES — shared features + difference-first
   ────────────────────────────────────────────── */

/* "Included in both plans" card — full width, friendly */
.common-features-card {
  background: linear-gradient(180deg, #F0FBF8 0%, #E8F5FF 100%);
  border: 1px solid rgba(31, 168, 154, 0.25);
  border-radius: 16px;
  padding: 28px 32px;
  margin: 0 auto 36px auto;
  max-width: 880px;
  box-shadow: 0 4px 16px rgba(31,168,154,0.06);
}
.common-features-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1FA89A;
  margin-bottom: 16px;
  text-align: center;
}
.common-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
}
.common-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  color: #143A6B;
  font-weight: 500;
}
.common-features-list li svg { flex-shrink: 0; }
@media (max-width: 640px) {
  .common-features-list { grid-template-columns: 1fr; }
  .common-features-card { padding: 22px 20px; }
}

/* Difference heading */
.diff-heading {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #143A6B;
  margin: 8px auto 24px auto;
  letter-spacing: -0.01em;
}

/* Slimmer package cards now that features are extracted — centered tier + bigger price */
.packages-section .package-card .package-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  text-align: center;
}
.packages-section .package-card .package-tier {
  font-size: 1.55rem;
  font-weight: 700;
  text-align: center;
  width: 100%;
}
.packages-section .package-card .package-price {
  margin: 0;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.packages-section .package-card .price-amount {
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
}

/* Candidate estimate — the key differentiator */
.candidate-estimate {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(20,58,107,0.15);
  font-size: 0.95rem;
  color: #143A6B;
}
.candidate-estimate strong { color: #1A6BC0; font-weight: 700; }
.resume-highlight--featured .candidate-estimate {
  border-top-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
}
.resume-highlight--featured .candidate-estimate strong {
  color: #5FE3C7;
}

.candidate-estimate-note {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(20,58,107,0.55);
  margin: 18px auto 28px auto;
  max-width: 60ch;
  font-style: italic;
}

/* ──────────────────────────────────────────────
   KLIRI CAREER TOUR — 8 cities grid
   ────────────────────────────────────────────── */
.career-tour-section {
  background: linear-gradient(180deg, #F4FBF9 0%, #EDF6FF 100%);
  padding: 80px 0 96px;
}
.career-tour-section .section-sub {
  max-width: 70ch;
  margin: 12px auto 36px auto;
  text-align: center;
  color: #143A6B;
  line-height: 1.65;
}
.career-tour-section .section-sub a {
  color: #1A6BC0;
  font-weight: 600;
  text-decoration: underline;
}
.career-tour-section .section-sub a:hover { color: #0F8A7E; }

.career-tour-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
  max-width: 1180px;
}
@media (max-width: 980px) { .career-tour-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .career-tour-grid { grid-template-columns: 1fr; } }

.career-tour-card {
  display: block;
  position: relative;
  background: white;
  border: 1px solid rgba(31,168,154,0.18);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #143A6B;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  box-shadow: 0 2px 8px rgba(20,58,107,0.04);
}
.career-tour-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(31,168,154,0.22);
  border-color: rgba(31,168,154,0.55);
}
.career-tour-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  background: #143A6B;
}
.career-tour-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.career-tour-card:hover .career-tour-photo img { transform: scale(1.04); }
.career-tour-card--soon { border-style: dashed !important; border-color: rgba(95,227,199,0.55) !important; background: #F4FBF9; }
.career-tour-card--soon:hover { border-color: var(--mint, #5FE3C7) !important; }
.career-tour-photo--soon {
  background: linear-gradient(135deg, #5FE3C7 0%, #2DB39E 100%);
  display: flex; align-items: center; justify-content: center;
}
.career-tour-soon-mark {
  font-size: 72px; line-height: 1; font-weight: 300; color: white;
  text-shadow: 0 4px 18px rgba(0,0,0,0.2);
}
.career-tour-body {
  padding: 16px 18px 18px 18px;
}
.career-tour-city {
  font-size: 1.05rem;
  font-weight: 700;
  color: #143A6B;
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin-bottom: 6px;
}
.career-tour-date {
  font-size: 1.05rem;
  color: #1FA89A;
  font-weight: 800;
  letter-spacing: 0.005em;
}

/* Current city — highlighted */
.career-tour-card--current {
  border-color: #1FA89A;
  box-shadow: 0 10px 24px rgba(31,168,154,0.30);
}
.career-tour-card--current .career-tour-body {
  background: linear-gradient(180deg, #143A6B 0%, #1A4A8B 100%);
}
.career-tour-card--current .career-tour-city { color: white; }
.career-tour-card--current .career-tour-date { color: #5FE3C7; }

.career-tour-cta {
  text-align: center;
  margin-top: 36px;
  font-size: 1.02rem;
  color: #143A6B;
}
.career-tour-cta a {
  color: #1A6BC0;
  text-decoration: underline;
}
.career-tour-cta a:hover { color: #0F8A7E; }

/* ═══════════════════════════════════════════
   NAV TAGLINE — "the Career Tour" beside KLIRI logo
   ═══════════════════════════════════════════ */
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-tagline {
  font-family: "Playfair Display", "Georgia", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  color: #1FA89A;
  letter-spacing: 0.005em;
  white-space: nowrap;
  border-left: 1.5px solid rgba(20, 58, 107, 0.18);
  padding-left: 12px;
  line-height: 1;
}
@media (max-width: 720px) {
  .nav-tagline { display: none; }
}

/* ═══════════════════════════════════════════
   HERO VIDEO CARD — prominent right-column CTA on Kliri blue
   ═══════════════════════════════════════════ */
.hero-video-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-video-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 460px;
  background: linear-gradient(145deg, #1A6BC0 0%, #143A6B 100%);
  border: 1.5px solid rgba(95, 227, 199, 0.45);
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  box-shadow: 0 20px 50px rgba(10, 37, 69, 0.55), 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.hero-video-card:hover {
  transform: translateY(-4px);
  border-color: #5FE3C7;
  box-shadow: 0 26px 60px rgba(31, 168, 154, 0.45), 0 6px 18px rgba(0, 0, 0, 0.22);
}
.hero-video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(95, 227, 199, 0.2);
  background: #143A6B;
}
.hero-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}
.hero-video-thumb-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,37,69,0.05) 0%, rgba(10,37,69,0.35) 100%);
  pointer-events: none;
}
.hero-video-thumb .hero-video-play { position: relative; z-index: 2; }
.hero-video-play {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E63946, #C1121F);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(230, 57, 70, 0.55), 0 0 0 8px rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease;
}
.hero-video-play svg { margin-left: 4px; }
.hero-video-card:hover .hero-video-play {
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(230, 57, 70, 0.65), 0 0 0 12px rgba(255, 255, 255, 0.12);
}
.hero-video-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 22px 22px 22px;
  background: linear-gradient(180deg, rgba(20, 58, 107, 0) 0%, rgba(10, 37, 69, 0.4) 100%);
}
.hero-video-eyebrow {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #5FE3C7;
}
.hero-video-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.hero-video-desc {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  font-weight: 400;
}

/* Tablet & mobile: video card moves below the copy, max-width limits it */
@media (max-width: 1024px) {
  .hero-video-col {
    margin-top: 28px;
    justify-content: flex-start;
  }
  .hero-video-card { max-width: 520px; }
}
@media (max-width: 540px) {
  .hero-video-title { font-size: 1.18rem; }
  .hero-video-play { width: 64px; height: 64px; }
  .hero-video-play svg { width: 24px; height: 24px; }
}

/* Hide the old inline watch button if any cached HTML still references it */
.hero-watch-btn { display: none !important; }
