.calls-page { background: var(--paper); }
.calls-heading { margin-bottom: 36px; }
.calls-heading h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "Sora", "Inter", sans-serif;
  font-size: var(--section-title-size);
  font-weight: 800;
  line-height: var(--section-title-line);
  letter-spacing: -0.035em;
}
.calls-heading p {
  margin: 0;
  color: var(--pink);
  font-family: "Inter", sans-serif;
  font-size: var(--section-copy-size);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}
.calls-heading::after {
  content: "";
  display: block;
  width: clamp(118px, 12vw, 142px);
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #f01886 0 22%,
    #ffcb18 22% 39%,
    #f28b18 39% 55%,
    #14c6ba 55% 74%,
    #1262b7 74% 100%
  );
}
.calls-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 44px 56px; }
.call-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: 350px;
  padding: 30px 32px;
  border-radius: 5px;
  color: #fff;
  background: #47b9c8;
  animation: call-card-enter .6s cubic-bezier(.22, 1, .36, 1) var(--card-delay, 0ms) backwards;
  transition: transform .25s ease, box-shadow .25s ease;
}
.call-card:nth-child(2) { --card-delay: 80ms; }
.call-card:nth-child(3) { --card-delay: 160ms; }
.call-card:nth-child(4) { --card-delay: 240ms; }
.call-card:nth-child(5) { --card-delay: 320ms; }
.call-card:nth-child(6) { --card-delay: 400ms; }
@keyframes call-card-enter {
  from { opacity: 0; translate: 0 24px; }
  to { opacity: 1; translate: 0 0; }
}
.call-card:hover, .call-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(8, 33, 91, .16);
}
.call-card svg { width: 54px; height: 64px; margin: 0 auto 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s ease; }
.call-card:hover svg, .call-card:focus-within svg { transform: translateY(-3px) scale(1.06); }
.motion-enhanced .call-card { animation: none; }
.call-card h2 { margin: 0 0 14px; color: #fff; font: 700 18px/1.35 Inter, Arial, sans-serif; }
.call-card a { display: flex; justify-content: center; align-items: center; min-height: 58px; padding: 14px 18px; border-radius: 999px; color: #fff; background: #005397; text-align: center; font-size: 13px; font-weight: 700; }
.call-card a:focus-visible, .call-reader button:focus-visible, .call-reader a:focus-visible { outline: 3px solid #ffcc42; outline-offset: 4px; }
body:has(.call-reader[open]) { overflow: hidden; }
.call-reader { width: min(1160px, calc(100% - 32px)); max-width: none; max-height: calc(100dvh - 32px); padding: 0; border: 0; border-radius: 14px; color: var(--ink); background: #fff; }
.call-reader::backdrop { background: rgba(4, 23, 54, .75); }
.call-reader-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; }
.call-reader-header h2 { margin: 0; font-size: clamp(18px, 2.5vw, 24px); }
.call-reader-close { flex-shrink: 0; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: #fff; cursor: pointer; font-size: 28px; }
.call-reader iframe { display: block; width: 100%; height: 68dvh; min-height: 260px; border: 0; background: #071f57; }
.call-reader-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 16px 24px; font-size: 13px; }
.call-reader-footer p { margin: 0; }
.call-reader-footer a { color: #005397; font-weight: 700; text-decoration: underline; }
@media (max-width: 1050px) { .calls-grid { gap: 28px; } .call-card { padding: 28px 24px; } }
@media (max-width: 850px) { .calls-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .calls-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; } .call-card { min-height: 320px; padding: 30px 36px; } .call-reader-header, .call-reader-footer { padding: 16px; } .call-reader iframe { height: 60dvh; } }
@media (prefers-reduced-motion: reduce) {
  .call-card, .call-card svg { animation: none; transition: none; }
  .call-card:hover, .call-card:focus-within,
  .call-card:hover svg, .call-card:focus-within svg { transform: none; }
}
