/* ==========================================================================
   Experts section + emergency call band
   ========================================================================== */

/* ------------------------------ Experts (video) ------------------------- */
.experts {
  background: #fff;
}

.experts-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.experts-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 33, 66, .14);
  line-height: 0;
  background: var(--navy-2);
}

.experts-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 640 / 420;
  object-fit: cover;
}

.experts-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 50px;
  border: 0;
  border-radius: 14px;
  background: #ff0000;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .35);
  transition: transform .15s ease, background .15s ease;
}

.experts-play:hover {
  transform: scale(1.06);
  background: #e60000;
}

.experts-play svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}

.experts-copy {
  min-width: 0;
}

.experts-title {
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--blue);
  margin: 0 0 18px;
}

.experts-title__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 4px;
}

.experts-title__badge {
  display: inline-flex;
  align-items: center;
  background: #f5a623;
  color: #fff;
  font-style: italic;
  font-weight: 900;
  padding: 7px 20px 7px 16px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  line-height: 1;
  flex-shrink: 0;
}

.experts-title__word {
  color: #1C45C1;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.experts-title__line {
  display: block;
  color: #1C45C1;
  font-style: italic;
  font-weight: 900;
}

.experts-lead {
  color: #464646;
  font-size: clamp(.92rem, 1.05vw, 1rem);
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 520px;
}

.experts-acts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.experts-btn-call {
  background: #FAB72A;
  color: #00274E;
  font-family: var(--display);
  font-weight: 700;
  gap: 9px;
  padding: 13px 22px;
  box-shadow: 0 2px 10px rgba(245, 166, 35, .35);
}

.experts-btn-call:hover { background: #e8920a; }
.experts-btn-call .ic { width: 18px; height: 18px; color: var(--navy); }

.experts-btn-request {
  background: #1C45C2;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  gap: 9px;
  padding: 13px 22px;
}

.experts-btn-request:hover { background: var(--blue-600); }
.experts-btn-request .ic { width: 18px; height: 18px; }

/* --------------------------- Emergency call band ------------------------ */
.callband {
  --callband-canvas: 1920px;
  --callband-phone-w: 776px;
  --callband-phone-h: 551px;
  --callband-phone-left: 572px; /* Figma left in 1920 canvas */
  --callband-phone-top: 0; /* Figma page top 5134 = callband section top */
  --callband-blue-h: 318px;
  --callband-h: var(--callband-phone-h);
  --callband-white-h: calc(var(--callband-h) - var(--callband-blue-h));
  --callband-team-w: 533px;
  --callband-team-h: 271px;
  --callband-team-left: 1157px; /* Figma left in 1920 canvas */
  --callband-team-top: calc(var(--callband-white-h) - var(--callband-team-h)); /* bottom on white/blue split */
  --callband-blue: #0052b4;
  --callband-yellow: #ffb81c;
  --callband-pill-bg: #FAB72A;
  --callband-pill-ink: #0052b4;
  --callband-pill-h: 44px;
  --callband-pill-gap: 14px;
  position: relative;
  height: var(--callband-h);
  min-height: var(--callband-h);
  overflow: visible;
}

.callband__bg-white {
  position: absolute;
  inset: 0 0 auto 0;
  height: var(--callband-white-h);
  background: #fff;
  z-index: 0;
}

.callband__bg-blue {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--callband-blue-h);
  background: var(--callband-blue);
  z-index: 0;
}

.callband__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(240px, 1fr);
  grid-template-rows: var(--callband-white-h) var(--callband-blue-h);
  height: var(--callband-h);
  min-height: var(--callband-h);
  align-items: stretch;
  padding: 0 18px;
}

.callband__cta {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  justify-self: start;
  padding: 0 16px 0 0;
  z-index: 2;
}

.callband__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -.01em;
}

.callband__title-line {
  display: block;
  font-size: clamp(1.25rem, 2.1vw, 1.85rem);
  white-space: nowrap;
}

.callband__number {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  font-weight: 900;
  font-style: italic;
  color: #fff;
  text-decoration: none;
  line-height: 1.05;
  white-space: nowrap;
}

.callband__number:hover { color: var(--callband-yellow); }

/* Figma: 776×551 at left 572 / top 5134 (page) */
.callband__phone {
  position: absolute;
  top: var(--callband-phone-top);
  left: max(16px, calc((min(100vw, var(--callband-canvas)) - var(--callband-canvas)) / 2 + var(--callband-phone-left)));
  width: var(--callband-phone-w);
  height: var(--callband-phone-h);
  margin: 0;
  z-index: 4;
  line-height: 0;
  opacity: 1;
  pointer-events: none;
}

.callband__phone img {
  width: var(--callband-phone-w);
  height: var(--callband-phone-h);
  max-width: none;
  max-height: none;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  opacity: 1;
}

/* Figma: 533×271 at left 1157 / top 5096 (page) */
.callband__team {
  position: absolute;
  top: var(--callband-team-top);
  left: max(16px, calc((min(100vw, var(--callband-canvas)) - var(--callband-canvas)) / 2 + var(--callband-team-left)));
  width: var(--callband-team-w);
  height: var(--callband-team-h);
  margin: 0;
  line-height: 0;
  z-index: 3;
  opacity: 1;
  pointer-events: none;
}

.callband__team img {
  width: var(--callband-team-w);
  height: var(--callband-team-h);
  max-width: none;
  max-height: none;
  display: block;
  object-fit: contain;
  object-position: bottom right;
  opacity: 1;
}

.callband__pills {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--callband-pill-gap);
  z-index: 5;
  padding-right: 0;
}

.callband-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: var(--callband-pill-h);
  padding: 10px 22px 10px 14px;
  background: var(--callband-pill-bg);
  color: var(--callband-pill-ink);
  font-family: 'Gilroy-Bold', var(--display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: none;
}

.callband-pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--callband-pill-ink);
}

.callband-pill__icon svg,
.callband-pill__svg {
  width: 24px;
  height: 24px;
  display: block;
}

.callband-pill__label {
  line-height: 1.2;
  color: #00274E;
}

/* ------------------------------- Responsive ------------------------------- */

@media (max-width: 1280px) {
  .callband {
    --callband-phone-w: min(776px, 52vw);
    --callband-phone-h: calc(var(--callband-phone-w) * 551 / 776);
    --callband-h: var(--callband-phone-h);
    --callband-white-h: calc(var(--callband-h) - var(--callband-blue-h));
  }
}

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

  .callband {
    --callband-phone-w: min(776px, 88vw);
    --callband-phone-h: calc(var(--callband-phone-w) * 551 / 776);
    --callband-blue-h: 318px;
    --callband-h: auto;
    --callband-white-h: 200px;
    height: auto;
    min-height: calc(var(--callband-white-h) + var(--callband-blue-h));
  }

  .callband__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 0;
    height: auto;
    min-height: calc(var(--callband-white-h) + var(--callband-blue-h));
    padding: 0 18px;
  }

  .callband__bg-white { height: var(--callband-white-h); }
  .callband__bg-blue { height: var(--callband-blue-h); }

  .callband__phone {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: var(--callband-phone-w);
    height: var(--callband-phone-h);
  }

  .callband__phone img {
    width: 100%;
    height: 100%;
  }

  .callband__team {
    position: absolute;
    top: var(--callband-team-top);
    left: auto;
    right: 16px;
    width: min(var(--callband-team-w), 85vw);
    height: auto;
  }

  .callband__team img {
    width: 100%;
    height: auto;
    aspect-ratio: 533 / 271;
  }

  .callband__cta {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
    padding: 0 0 24px 12px;
    align-self: end;
    justify-self: start;
  }

  .callband__pills {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    justify-self: end;
    align-items: flex-start;
    padding: 0 12px 0 0;
  }

  .callband-pill {
    font-size: clamp(.78rem, 2.8vw, .92rem);
    padding: 8px 16px 8px 12px;
    min-height: 38px;
  }

  .callband-pill__icon,
  .callband-pill__icon svg,
  .callband-pill__svg {
    width: 20px;
    height: 20px;
  }

  .callband__title-line,
  .callband__number { white-space: normal; }
}
