/* ==========================================================================
   RESET
   ========================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  color: #0B1220;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
svg { display: block; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   BUTTONS (shared) — pill-shaped, distinct from Resources' sharp corners
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.85rem 1.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}
.btn:focus-visible { outline: 2px solid #3FA9F5; outline-offset: 2px; }

.btn--solid { background: #3FA9F5; color: #0B1220; }
.btn--solid:hover { background: #6DC0FF; transform: translateY(-1px); }

.btn--lg { padding: 1rem 2.25rem; font-size: 0.9375rem; }

.btn--outline {
  border-color: rgba(11, 18, 32, 0.16);
  color: #0B1220;
}
.btn--outline:hover { border-color: #3FA9F5; color: #1583D6; }
.btn--outline svg { transition: transform 0.25s ease; }
.btn--outline:hover svg { transform: translateX(3px); }

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 18, 32, 0.06);
  padding: 1rem 0;
  transition: box-shadow 0.35s ease, padding 0.35s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(11, 18, 32, 0.08);
  padding: 0.7rem 0;
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand { display: flex; align-items: center; }
.brand-mark { height: 36px; width: auto; }

.primary-nav { display: flex; gap: 2rem; }
.primary-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(11, 18, 32, 0.6);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}
.primary-nav a:hover { color: #0B1220; }
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #3FA9F5;
  border-radius: 2px;
  transition: width 0.25s ease;
}
.primary-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1.25rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #0B1220;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: #FFFFFF;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem) 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-nav.is-open { max-height: 400px; }
.mobile-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(11, 18, 32, 0.65);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(11, 18, 32, 0.08);
}
.mobile-nav .btn { margin-top: 1rem; align-self: flex-start; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { background: #0B1220; overflow: hidden; }

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(8rem, 14vw, 11rem) clamp(1.5rem, 4vw, 3.5rem) clamp(4rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 3.5rem;
  align-items: center;
}
/* 
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #6DC0FF;
  margin: 0 0 1.5rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 2px;
  background: #3FA9F5;
  border-radius: 2px;
}

.hero-heading {
  font-weight: 800;
  font-size: clamp(3.25rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 1.5rem;
}

.hero-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  max-width: 28rem;
  margin: 0 0 2.5rem;
}

.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero .btn--outline { border-color: rgba(255, 255, 255, 0.3); color: #FFFFFF; }
.hero .btn--outline:hover { border-color: #3FA9F5; color: #6DC0FF; } */

.hero-heading {
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 1.5rem;
}

.hero-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}
.hero-pill {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #6DC0FF;
  border: 1px solid rgba(63, 169, 245, 0.4);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.hero-statement {
  padding-left: 1.1rem;
  border-left: 2px solid rgba(63, 169, 245, 0.4);
  margin-bottom: 2.5rem;
  max-width: 28rem;
}
.hero-statement-line {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0.6rem;
}
.hero-statement-line:last-child { margin-bottom: 0; }
.hero-statement-line span {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}
.hero-statement-line--accent { color: #FFFFFF; }
.hero-statement-line--accent span { color: #6DC0FF; }

.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero .btn--outline { border-color: rgba(255, 255, 255, 0.3); color: #FFFFFF; }
.hero .btn--outline:hover { border-color: #3FA9F5; color: #6DC0FF; }

/* ---- collage ---- */
.hero-collage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  height: 480px;
}

.hero-collage-item--corporate { grid-row: 1 / 3; }
.hero-collage-item--executive { grid-column: 2; grid-row: 1; }
.hero-collage-item--hni { grid-column: 2; grid-row: 2; }

.hero-collage-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(63, 169, 245, 0.25);
}
.hero-collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05) brightness(0.88);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.hero-collage-item:hover .hero-collage-img { filter: grayscale(0%) contrast(1) brightness(1); transform: scale(1.04); }

.hero-collage-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0) 55%, rgba(11, 18, 32, 0.85) 100%);
}

.hero-collage-tag {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #FFFFFF;
}
.hero-collage-tag span {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #3FA9F5;
}

/* ==========================================================================
   RESPONSIVE — merge into existing @media blocks
   ========================================================================== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-collage { height: 380px; order: -1; }
}

@media (max-width: 560px) {
  .hero-actions { gap: 1rem; }
  .hero-collage { height: 320px; }
}

/* ==========================================================================
   POSITIONING STATEMENT
   ========================================================================== */
.positioning { background: #FFFFFF; }

.positioning-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
}

.positioning-kicker {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3FA9F5;
  margin: 0 0 1.5rem;
}

.positioning-statement {
  font-weight: 700;
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: #0B1220;
  margin: 0 0 2rem;
}
.positioning-accent { color: #3FA9F5; }

.positioning-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(11, 18, 32, 0.6);
  max-width: 38rem;
  margin: 0 auto;
}

/* responsive: add to existing @media (max-width: 560px) block */
@media (max-width: 560px) {
  .positioning-statement br { display: none; }
}

/* ==========================================================================
   SECTION KICKER (shared pattern for this page)
   ========================================================================== */
.section-kicker {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3FA9F5;
  margin: 0 0 1rem;
}

/* ==========================================================================
   SERVICE LANES
   ========================================================================== */
.lanes { background: #FFFFFF; }

.lanes-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3.5rem);
}

.lanes-header { max-width: 30rem; margin: 0 0 4rem; }
.lanes-heading {
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #0B1220;
  margin: 0;
}

.lane-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(11, 18, 32, 0.1);
}
.lane-panel:first-of-type { padding-top: 0; }
.lane-panel--reverse { direction: rtl; }
.lane-panel--reverse > * { direction: ltr; }

.lane-panel-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
}
.lane-panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
  transition: transform 0.5s ease;
}
.lane-panel:hover .lane-panel-img { transform: scale(1.03); }

.lane-panel-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }
.lane-panel-num {
  font-weight: 700;
  font-size: 0.8125rem;
  color: #3FA9F5;
}
.lane-panel-billing {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0B1220;
  background: #D8DEE8;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.lane-panel-title {
  font-weight: 700;
  font-size: 1.875rem;
  letter-spacing: -0.01em;
  color: #0B1220;
  margin: 0 0 0.75rem;
}

.lane-panel-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(11, 18, 32, 0.62);
  max-width: 30rem;
  margin: 0 0 1.75rem;
}

.lane-panel-list { display: flex; flex-direction: column; gap: 0.75rem; }
.lane-panel-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(11, 18, 32, 0.72);
}
.lane-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3FA9F5;
}

/* responsive: add to existing @media (max-width: 960px) block */
@media (max-width: 960px) {
  .lane-panel,
  .lane-panel--reverse { grid-template-columns: 1fr; direction: ltr; gap: 1.75rem; }
  .lane-panel-media { aspect-ratio: 16 / 10; }
}

/* ==========================================================================
   THE CORPORATE EVENT CHECKLIST
   ========================================================================== */
.checklist { background: #0B1220; position: relative; overflow: hidden; }
.checklist::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(63, 169, 245, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 169, 245, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
}

.checklist-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.section-kicker--light { color: #6DC0FF; }

.checklist-heading {
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin: 0 0 1.5rem;
}

.checklist-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  max-width: 26rem;
  margin: 0 0 2.5rem;
}

.checklist-stat {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.checklist-stat-num {
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1;
  color: #3FA9F5;
}
.checklist-stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

.checklist-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.checklist-category { background: #0F1A2B; padding: 2rem; }

.checklist-category-name {
  font-weight: 600;
  font-size: 1rem;
  color: #FFFFFF;
  margin: 0 0 1.25rem;
}

.checklist-category-items { display: flex; flex-direction: column; gap: 0.85rem; }
.checklist-category-items li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}
.checklist-category-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 14px;
  height: 14px;
  border: 1.5px solid #3FA9F5;
  border-radius: 3px;
}
.checklist-category-items li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.42rem;
  width: 7px;
  height: 4px;
  border-left: 1.5px solid #3FA9F5;
  border-bottom: 1.5px solid #3FA9F5;
  transform: rotate(-45deg);
}

/* responsive: add to existing @media (max-width: 960px) block */
@media (max-width: 960px) {
  .checklist-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .checklist-categories { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.process { background: #F6F8FB; }

.process-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3.5rem);
}

.process-header { max-width: 30rem; margin: 0 0 4rem; }
.process-heading {
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #0B1220;
  margin: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.process-step { position: relative; padding-top: 2.5rem; }
.process-step::before {
  content: "";
  position: absolute;
  top: 17px;
  left: calc(50% + 34px);
  right: -1.5rem;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(11, 18, 32, 0.18) 0 6px, transparent 6px 12px);
}
.process-step:last-child::before { display: none; }

.process-step-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #3FA9F5;
  margin-bottom: 1.5rem;
}
.process-step-marker span {
  font-weight: 700;
  font-size: 0.75rem;
  color: #3FA9F5;
}

.process-step-name {
  font-weight: 600;
  font-size: 1.0625rem;
  color: #0B1220;
  margin: 0 0 0.6rem;
}

.process-step-desc {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(11, 18, 32, 0.58);
  margin: 0;
}

/* responsive: add to existing @media (max-width: 960px) block */
@media (max-width: 960px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
  .process-step::before { display: none; }
}

@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ==========================================================================
   WHY VELOGION SERVICE HUB
   ========================================================================== */
.why-hub { background: #0B1220; }

.why-hub-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
}

.section-kicker--light { color: #6DC0FF; }

.why-hub-statement { align-self: start; }
.why-hub-heading {
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin: 0 0 1.25rem;
}
.why-hub-lead {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 24rem;
  margin: 0;
}

.why-hub-features { display: flex; flex-direction: column; }

.why-hub-feature {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.why-hub-feature:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

.why-hub-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #3FA9F5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
}

.why-hub-name {
  font-weight: 600;
  font-size: 1.0625rem;
  color: #FFFFFF;
  margin: 0 0 0.5rem;
}

.why-hub-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.52);
  margin: 0;
  max-width: 30rem;
}

/* responsive: add to existing @media (max-width: 960px) block */
@media (max-width: 960px) {
  .why-hub-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ==========================================================================
   GALLERY / SHOWCASE
   ========================================================================== */
.showcase { background: #0B1220; padding: clamp(4.5rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3.5rem); }

.showcase-header { max-width: 1240px; margin: 0 auto 3rem; }
.showcase-heading {
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin: 0;
}

.showcase-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 0.85rem;
}

.showcase-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  grid-row: span 2;
}
.showcase-item--tall { grid-row: span 3; }
.showcase-item--wide { grid-column: span 2; grid-row: span 2; }

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%) contrast(1.05) brightness(0.92);
  transition: filter 0.4s ease, transform 0.5s ease;
}
.showcase-item:hover .showcase-img { filter: grayscale(0%) contrast(1) brightness(1); transform: scale(1.05); }

.showcase-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0) 50%, rgba(11, 18, 32, 0.92) 100%);
  pointer-events: none;
}

.showcase-caption {
  position: absolute;
  left: 1.1rem;
  bottom: 1rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.showcase-caption-lane {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3FA9F5;
}
.showcase-caption-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* responsive: add to existing @media (max-width: 960px) block */
@media (max-width: 960px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .showcase-item--wide { grid-column: span 2; }
}

@media (max-width: 560px) {
  .showcase-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .showcase-item,
  .showcase-item--tall,
  .showcase-item--wide { grid-column: span 1; grid-row: span 1; }
}

/* ==========================================================================
   CONTACT / CONSULTATION
   ========================================================================== */
.contact-hub {
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.contact-hub::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(63, 169, 245, 0.14) 0%, rgba(63, 169, 245, 0) 70%);
}

.contact-hub-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-hub-heading {
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 2.875rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #0B1220;
  margin: 0 0 1.5rem;
}

.contact-hub-lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(11, 18, 32, 0.6);
  max-width: 30rem;
  margin: 0 0 2.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer-hub { background: #0B1220; border-top: 2px solid #3FA9F5; }

.footer-hub-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3.5rem) 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
}

.footer-hub-brand { display: inline-flex; margin-bottom: 1.25rem; }
.footer-hub-logo { height: 34px; width: auto; filter: brightness(0) invert(1); }

.footer-hub-tagline {
  font-weight: 800;
  font-size: 1.5rem;
  color: #FFFFFF;
  margin: 0;
  max-width: 16rem;
}

.footer-hub-col-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3FA9F5;
  margin-bottom: 1.25rem;
}

.footer-hub-nav { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-hub-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s ease;
}
.footer-hub-nav a:hover { color: #6DC0FF; }

.footer-hub-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.75rem clamp(1.5rem, 4vw, 3.5rem) 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-hub-copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.32);
  margin: 0;
}

.footer-hub-legal { display: flex; gap: 1.5rem; }
.footer-hub-legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.32);
  transition: color 0.25s ease;
}
.footer-hub-legal a:hover { color: #6DC0FF; }

/* responsive: add to existing @media (max-width: 960px) block */
@media (max-width: 960px) {
  .footer-hub-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-hub-col--brand { grid-column: span 2; }
}

@media (max-width: 560px) {
  .footer-hub-inner { grid-template-columns: 1fr; }
  .footer-hub-col--brand { grid-column: span 1; }
  .footer-hub-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}