@font-face {
  font-family: "Montserrat IPC2U";
  src: url("https://ipc2u.ru/local/css/fonts/Montserrat-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ipc-orange: #f58220;
  --ipc-orange-dark: #d96809;
  --ipc-orange-soft: #fff1e5;
  --ipc-graphite: #202328;
  --ipc-graphite-2: #2a2e34;
  --ipc-text: #262a30;
  --ipc-muted: #333436;
  --ipc-line: hsl(216, 6%, 17%);
  --ipc-light: #f5f6f7;
  --ipc-white: #ffffff;
  --ipc-success: #0b7a53;
  --ipc-radius: 0;
  --ipc-radius-sm: 0;
  --ipc-shadow: 0 18px 50px rgba(26, 30, 36, .10);
  --ipc-container: 1320px;
  --ipc-transition: 180ms ease;
  --sticky-offset: 72px;

  /* Настройки sticky-шапки */
  --event-nav-bg: #ffffff;
  --event-nav-text: #4b525b;
  --event-nav-text-active: #202328;
  --event-nav-border: #e2e5e9;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--sticky-offset) + 20px); }
body {
  margin: 0;
  background: var(--ipc-white);
  color: var(--ipc-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(245, 130, 32, .46); outline-offset: 3px; }

.skip-link {
  position: fixed; left: 16px; top: 10px; z-index: 9999;
  transform: translateY(-180%); padding: 10px 14px;
  background: var(--ipc-white); border: 2px solid var(--ipc-orange);
  border-radius: 0; font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.ipc-events, .mobile-cta, .modal { font-family: "Montserrat IPC2U", Montserrat, Arial, sans-serif; }
.ipc-container { width: min(calc(100% - 40px), var(--ipc-container)); margin: 0 auto; }
.ipc-section { padding: 88px 0; }
.ipc-section--light { background: var(--ipc-light); }
.ipc-section--dark { background: var(--ipc-graphite); color: var(--ipc-white); }
.ipc-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px; color: var(--ipc-orange); font-size: 13px;
  font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.ipc-kicker::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.ipc-title {
  margin: 0; max-width: 900px; font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.04; letter-spacing: -.035em; font-weight: 800;
}
.ipc-title--md { font-size: clamp(30px, 3vw, 46px); line-height: 1.08; }
.ipc-lead { max-width: 790px; margin: 20px 0 0; color: var(--ipc-muted); font-size: 19px; }
.ipc-section--dark .ipc-lead { color: #bcc2c9; }

.ipc-btn {
  min-height: 50px; border: 1px solid transparent; border-radius: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 20px; background: var(--ipc-orange); color: #fff;
  font-weight: 800; text-decoration: none; transition: transform var(--ipc-transition), background var(--ipc-transition), box-shadow var(--ipc-transition);
}
.ipc-btn:hover { background: var(--ipc-orange-dark); transform: translateY(-1px); box-shadow: 0 9px 24px rgba(245,130,32,.24); }
.ipc-btn--secondary { background: transparent; color: var(--ipc-text); border-color: #bfc5cc; box-shadow: none; }
.ipc-section--dark .ipc-btn--secondary { color: #fff; border-color: #646b74; }
.ipc-btn--secondary:hover { background: rgba(255,255,255,.08); box-shadow: none; }
.ipc-btn--ghost { background: transparent; color: var(--ipc-orange); padding-left: 0; padding-right: 0; min-height: auto; }
.ipc-btn--ghost:hover { background: transparent; box-shadow: none; transform: translateX(3px); }
.ipc-btn svg { width: 18px; height: 18px; }

/* sticky section nav */
.event-nav {
  position: sticky;
  top: 0;
  z-index: 25;
  background: var(--event-nav-bg);
  color: var(--event-nav-text);
  border-bottom: 1px solid var(--event-nav-border);
  box-shadow: 0 6px 20px rgba(25, 31, 38, .06);
}
.event-nav__inner {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-left: 220px;
  padding-right: 220px;
  overflow-x: auto;
  scrollbar-width: none;
}
.event-nav__inner::-webkit-scrollbar { display: none; }

.event-nav__logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 188px;
  height: 44px;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  text-decoration: none;
  flex: 0 0 auto;
}
.event-nav__logo img {
  width: 168px;
  height: auto;
  display: block;
  object-fit: contain;
}
.event-nav a {
  min-width: max-content;
  color: var(--event-nav-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 17px 0 15px;
  border-bottom: 2px solid transparent;
}
.event-nav a:hover,
.event-nav a.is-active {
  color: var(--event-nav-text-active);
  border-bottom-color: var(--ipc-orange);
}
.event-nav .event-nav__logo {
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 0;
}

/* hero */
.event-hero {
  position: relative; isolation: isolate; background: linear-gradient(180deg, #fff 0%, #f7f8f9 100%);
  border-bottom: 1px solid var(--ipc-line);
}
.event-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2; opacity: .6;
  background-image: linear-gradient(rgba(53,59,66,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(53,59,66,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}
.event-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  grid-template-areas:
    "eyebrow ."
    "title visual"
    "wide wide";
  column-gap: 56px;
  row-gap: 0;
  align-items: start;
  padding: 58px 0 64px;
}
.event-hero__eyebrow { grid-area: eyebrow; display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-bottom: 17px; }
.event-hero__title-wrap { grid-area: title; min-width: 0; }
.event-hero__wide { grid-area: wide; width: 100%; padding-top: 28px; }
.status-pill, .mini-pill {
  display: inline-flex; align-items: center; min-height: 30px; padding: 5px 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.status-pill { color: #ffae73; background: #f58a3e0a; border: 1px solid #f58a3e77; padding: 6px 9px; }
.mini-pill { color: #17633a; background: #e8f7ed; border: 1px solid #b9dfc6; }
.event-hero h1 { margin: 0; font-size: clamp(39px, 5vw, 68px); line-height: 1.01; letter-spacing: -.045em; max-width: 850px; }
.event-hero__intro { display: grid; gap: 12px; }
.event-hero__desc { margin: 0; max-width: 1180px; color: #5d6570; font-size: clamp(17px, 1.5vw, 21px); }
.event-hero__desc--secondary { font-size: clamp(15px, 1.2vw, 18px); color: #69717b; }

.seminar-details-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 14px;
  margin-top: 24px;
}
.seminar-detail {
  padding: 20px 22px;
  border: 1px solid #d8dde2;
  background: rgba(255,255,255,.78);
}
.seminar-detail h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.25;
}
.seminar-detail ul {
  margin: 0;
  padding-left: 20px;
  columns: 2;
  column-gap: 34px;
  color: #555e68;
  font-size: 14px;
}
.seminar-detail li {
  margin: 0 0 7px;
  break-inside: avoid;
}
.seminar-detail p {
  margin: 0;
  color: #555e68;
  font-size: 14px;
  line-height: 1.6;
}
.seminar-detail strong { color: var(--ipc-text); }
.city-switcher { display: inline-flex; padding: 4px; margin: 26px 0 0; border: 1px solid #d8dde2; background: #fff; box-shadow: 0 7px 25px rgba(25,31,38,.05); }
.city-switcher button { min-height: 54px; padding: 8px 16px; border: 0; background: transparent; color: #4c535d; font-weight: 800; text-align: left; }
.city-switcher button small { display: block; margin-top: 1px; color: #858c95; font-weight: 600; }
.city-switcher button.is-active { background: var(--ipc-graphite); color: #fff; }
.city-switcher button.is-active small { color: #c9cdd3; }
.hero-event-meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.hero-meta-card { padding: 15px 16px; border: 1px solid var(--ipc-line); background: rgba(255,255,255,.82); }
.hero-meta-card span { display: block; color: #7c838c; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.hero-meta-card strong { display: block; margin-top: 4px; line-height: 1.35; font-size: 14px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

.program-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--ipc-line); }
.program-logos__label { flex: 0 0 100%; color: #7b828b; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.program-logo {
  height: 65px; min-width: 179px; padding: 10px 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid #dfe3e8; text-decoration: none;
  transition: border-color var(--ipc-transition), box-shadow var(--ipc-transition), transform var(--ipc-transition);
}
.program-logo:hover, .program-logo:focus-visible {
  border-color: var(--ipc-orange);
  box-shadow: 0 8px 22px rgba(245,130,32,.16);
  transform: translateY(-1px);
}
.program-logo svg { display: block; width: auto; max-width: 156px; height: 36px; }
.program-logo img { display:block; width:auto; max-width:195px; max-height:44px; object-fit:contain; }

.hero-program { margin-top: 30px; scroll-margin-top: 76px; }
.hero-program__head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 16px; }
.hero-program__head h2 { margin-top: 0; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.1; letter-spacing: -.025em; }
.hero-program__head p { margin: 0; max-width: 500px; color: var(--ipc-muted); font-size: 14px; text-align: right; }
.hero-program__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ccd2d8;
  border-left: 1px solid #ccd2d8;
  background: #fff;
}

.hero-topic {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-right: 1px solid #ccd2d8;
  border-bottom: 1px solid #ccd2d8;
  background: #fff;
  --hero-topic-image: none;
  --hero-topic-image-opacity: .20;
  --hero-topic-image-hover-opacity: .90;
}

.hero-topic__visual {
  position: relative;
  height: 170px;
  min-height: 170px;
  overflow: hidden;
  background: #fff;
}
.hero-topic__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-topic-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: var(--hero-topic-image-opacity);
  transition: opacity var(--ipc-transition);
  pointer-events: none;
}
.hero-topic:hover .hero-topic__visual::before {
  opacity: var(--hero-topic-image-hover-opacity);
}

.hero-topic__text {
  height: 138px;
  min-height: 138px;
  padding: 16px 20px 18px;
  background: #fff;
  overflow: hidden;
}
.hero-topic__num {
  margin-bottom: 8px;
  color: var(--ipc-orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}
.hero-topic h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--ipc-text);
}
.hero-topic p {
  margin: 0;
  color: var(--ipc-muted);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}

/* Верхний ряд: текст над изображением */
.hero-topic:nth-child(-n+3) .hero-topic__text {
  order: 1;
  border-bottom: 1px solid #bfc6ce;
}
.hero-topic:nth-child(-n+3) .hero-topic__visual { order: 2; }

/* Нижний ряд: изображение над текстом */
.hero-topic:nth-child(n+4) .hero-topic__visual {
  order: 1;
  border-bottom: 1px solid #bfc6ce;
}
.hero-topic:nth-child(n+4) .hero-topic__text { order: 2; }


.hero-visual {
  grid-area: visual;
  position: relative;
  min-height: 430px;
  margin-top: 0; /* exact same grid row as h1 */
  overflow: hidden;
  background: #eef2f6;
  box-shadow: var(--ipc-shadow);
  align-self: start;
}
.hero-visual::before, .hero-visual::after { content: none; }
.hero-visual__banner {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-callout {
  position: absolute; display: flex; align-items: center;
  pointer-events: auto; color: inherit; text-decoration: none; cursor: pointer;
}
.hero-callout--reverse { flex-direction: row-reverse; }
/* Вертикальная выноска: подпись остается в заданной точке, линия идет вверх к оборудованию. */
.hero-callout--up { display: block; }
.hero-callout--up .hero-callout__line {
  position: absolute; left: 50%; bottom: 100%; width: 2px; height: 48px;
  background: var(--ipc-orange); transform: translateX(-50%);
  flex: none;
}
.hero-callout--up .hero-callout__line::after {
  content: ""; position: absolute; left: -3px; top: -4px; right: auto;
  width: 8px; height: 8px; background: var(--ipc-orange);
}
.hero-callout__label {
  min-height: 28px; display: inline-flex; align-items: center; padding: 5px 10px;
  background: rgba(32,35,40,.88); color: #fff; border: 1px solid rgba(245,130,32,.62);
  font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  white-space: nowrap; box-shadow: 0 8px 20px rgba(0,0,0,.16);
  transition: border-color var(--ipc-transition), box-shadow var(--ipc-transition), background var(--ipc-transition), transform var(--ipc-transition);
}
.hero-callout__line {
  position: relative; width: 46px; height: 2px; background: var(--ipc-orange);
  flex: 0 0 46px;
}
.hero-callout__line::after {
  content: ""; position: absolute; right: -4px; top: -3px; width: 8px; height: 8px;
  background: var(--ipc-orange);
}
.hero-callout--reverse .hero-callout__line::after { right: auto; left: -4px; }
.hero-callout:hover .hero-callout__label,
.hero-callout:focus-visible .hero-callout__label {
  border-color: #ff8a22;
  background: rgba(32,35,40,.96);
  box-shadow: 0 0 0 1px rgba(245,130,32,.55), 0 0 18px rgba(245,130,32,.95), 0 0 34px rgba(245,130,32,.42);
  transform: translateY(-1px);
}
.hero-callout:hover .hero-callout__line,
.hero-callout:focus-visible .hero-callout__line {
  box-shadow: 0 0 7px rgba(245,130,32,.95), 0 0 15px rgba(245,130,32,.58);
}
.hero-callout:hover .hero-callout__line::after,
.hero-callout:focus-visible .hero-callout__line::after {
  box-shadow: 0 0 9px rgba(245,130,32,1), 0 0 18px rgba(245,130,32,.75);
}
.hero-callout:focus-visible { outline: none; }
.hero-callout--switch { left: 25%; top: 43%; }
.hero-callout--plc { left: 85%; top: 67%; }
.hero-callout--servo { left: 61%; top: 70%; }
.hero-callout--io { left: 14%; top: 91%; }
.hero-callout--hmi { left: 15%; top: 56.3%; }
.hero-callout--vision { left: 7%; top: 34%; }
.hero-visual__top { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 16px; padding: 22px; }
.hero-visual__caption { max-width: 250px; color: #d4d8dd; font-size: 13px; }
.hero-visual__caption strong { display: block; color: #fff; margin-bottom: 4px; font-size: 15px; }
.hero-visual__badge { align-self: flex-start; padding: 7px 10px; background: rgba(245,130,32,.14); border: 1px solid rgba(245,130,32,.42); color: #ffbe86; font-size: 11px; font-weight: 900; letter-spacing: .06em; }
.engineering-map { position: absolute; inset: 90px 24px 24px; z-index: 2; }
.map-node { position: absolute; min-width: 112px; padding: 12px 13px; background: rgba(19,22,26,.78); border: 1px solid rgba(255,255,255,.22); box-shadow: 0 10px 30px rgba(0,0,0,.28); }
.map-node span { display: block; color: #9ca5ae; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.map-node strong { display: block; margin-top: 2px; font-size: 14px; }
.node-plc { left: 6%; top: 17%; }
.node-switch { left: 39%; top: 10%; }
.node-hmi { right: 2%; top: 24%; }
.node-io { left: 13%; bottom: 13%; }
.node-servo { left: 48%; bottom: 4%; }
.node-gateway { right: 4%; bottom: 20%; }
.engineering-map svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.engineering-map line, .engineering-map path { stroke: rgba(245,130,32,.9); stroke-width: 1.3; stroke-dasharray: 7 7; fill: none; }
.engineering-map circle { fill: #f58220; }
.visual-bottom-note { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 3; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #d7dbe0; font-size: 12px; }
.visual-bottom-note strong { color: #fff; }

@media (max-width: 1180px) {
  .hero-callout__label { font-size: 11px; padding: 4px 8px; }
  .hero-callout__line { width: 34px; flex-basis: 32px; }
  .hero-callout--up .hero-callout__line { width: 2px; height: 38px; flex: none; }
  .hero-callout--switch { left: 48.5%; top: 43.5%; }
  .hero-callout--plc { left: 59.8%; top: 35.2%; }
  .hero-callout--servo { left: 80.8%; top: 44.5%; }
  .hero-callout--io { left: 81.8%; top: 57.2%; }
  .hero-callout--hmi { left: 27.5%; top: 73.5%; }
  .hero-callout--vision { left: 8%; top: 34%; }
}

@media (max-width: 767px) {
  .hero-callout__label { font-size: 10px; min-height: 24px; padding: 3px 7px; }
  .hero-callout__line { width: 24px; flex-basis: 24px; }
  .hero-callout--up .hero-callout__line { width: 2px; height: 30px; flex: none; }
  .hero-callout--switch { left: 47%; top: 43%; }
  .hero-callout--plc { left: 58%; top: 35%; }
  .hero-callout--servo { left: 79%; top: 44%; }
  .hero-callout--io { left: 79.8%; top: 57.5%; }
  .hero-callout--hmi { left: 25%; top: 74%; }
  .hero-callout--vision { left: 6%; top: 35%; }
}

/* four-value cards */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 42px; }
.value-card { min-height: 210px; padding: 24px; background: #fff; border: 1px solid var(--ipc-line); border-radius: 0; transition: transform var(--ipc-transition), box-shadow var(--ipc-transition), border-color var(--ipc-transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(26,30,36,.08); border-color: #cfd4da; }
.value-card__num { color: var(--ipc-orange); font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.value-card h3 { margin: 32px 0 8px; font-size: 22px; }
.value-card p { margin: 0; color: var(--ipc-muted); }

/* formats tabs */
.format-tabs { margin-top: 40px; }
.format-tablist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 7px; border: 1px solid #444a52; border-radius: 0; background: #25292f; }
.format-tab {
  min-height: 64px; border: 0; border-radius: 0; background: transparent; color: #bdc3ca;
  font-weight: 800; padding: 10px 20px;
  display: flex; align-items: center; justify-content: center; gap: 13px; text-align: left;
}
.format-tab__icon {
  width: 30px; height: 30px; flex: 0 0 30px;
  color: var(--ipc-orange);
}
.format-tab__icon * {
  vector-effect: non-scaling-stroke;
}
.format-tab__text {
  display: inline-block;
  line-height: 1.2;
}
.format-tab[aria-selected="true"] { background: #fff; color: var(--ipc-graphite); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.format-panel { display: none; }
.format-panel.is-active { display: block; }
.format-panel__card { display: grid; grid-template-columns: .94fr 1.06fr; gap: 44px; margin-top: 18px; padding: 36px; border: 1px solid #454b53; background: #25292f; border-radius: 0; }
.format-panel__visual {
  --format-image: none;
  position: relative;
  min-height: 410px;
  border-radius: 0;
  overflow: hidden;
  background-color: #25292f;
  background-image: var(--format-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.format-panel__visual--academy {
  --format-image: url("/media/format-iaa.png");
}
.format-panel__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}
.format-panel__visual::before {
  content:"";
  position:absolute;
  inset:0;
  background: rgba(18,21,25,.52);
  z-index: 1;
}
.format-panel__visual-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
}
.visual-label { font-size: 12px; font-weight: 900; letter-spacing: .08em; color: #ffbf88; }
.visual-big { max-width: 380px; font-size: clamp(30px, 3.4vw, 48px); line-height: 1.02; letter-spacing: -.03em; font-weight: 850; }
.visual-micro { max-width: 370px; color: #c1c6cc; font-size: 14px; }
.format-panel__content { align-self: center; }
.eyebrow {
  display: block;
  margin-bottom: 22px;
  color: #bc5716;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
.format-info .eyebrow {
  margin-bottom: 15px;
  font-size: 12px;
}

/* IAA: real image layer behind the content.
   70% transparency = opacity .30 by default. */
#panel-academy .format-panel__content {
  position: relative;
  isolation: isolate;
  --academy-logo-opacity: .10;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#panel-academy .academy-bg-logo {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  width: min(76%, 430px);
  max-height: 86%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  opacity: var(--academy-logo-opacity);
  pointer-events: none;
  user-select: none;
}
#panel-academy .format-panel__content > :not(.academy-bg-logo) {
  position: relative;
  z-index: 1;
}

.format-panel__content h3 { margin: 0; font-size: clamp(30px, 3vw, 44px); line-height: 1.06; letter-spacing: -.03em; }
.format-panel__content > p { color: #c1c6cc; font-size: 17px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0 24px; }
.tag { border: 1px solid #555d67; color: #dce0e4; border-radius: 0; padding: 6px 10px; font-size: 12px; font-weight: 800; }
.format-checks { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 18px; margin: 24px 0 28px; }
.format-check { display: flex; gap: 10px; color: #e8eaed; font-size: 14px; }
.format-check::before { content: "✓"; display: grid; place-items: center; flex: 0 0 22px; height: 22px; border-radius: 0; color: #131518; background: var(--ipc-orange); font-weight: 900; }

/* topics */
.topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 38px; }
.topic-card { min-height: 185px; padding: 22px; border: 1px solid var(--ipc-line); border-radius: 0; background: #fff; }
.topic-card__icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  color: var(--ipc-orange);
}
.topic-card__icon svg {
  width: 72px;
  height: 72px;
  display: block;
  overflow: visible;
}
.topic-card__icon svg * {
  vector-effect: non-scaling-stroke;
}
.topic-card h3 { margin: 22px 0 7px; font-size: 18px; }
.topic-card p { margin: 0; color: var(--ipc-muted); font-size: 14px; }

/* process */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 44px; }
.process-step { position: relative; padding: 24px 18px; border-top: 1px solid #555b63; }
.process-step::before { content: ""; position: absolute; top: -7px; left: 18px; width: 13px; height: 13px; border-radius: 0; background: var(--ipc-orange); box-shadow: 0 0 0 5px rgba(245,130,32,.12); }
.process-step:not(:last-child)::after { content: ""; position: absolute; right: -7px; top: 13px; color: #767d86; }
.process-step span { color: #8f969f; font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.process-step h3 { margin: 18px 0 8px; font-size: 20px; }
.process-step p { margin: 0; color: #b9bec4; font-size: 14px; }

/* outcome */
.outcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; margin-top: 40px; }
.skill-stack { display: grid; gap: 27px; }
.skill-row {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 16px;
  align-items: center;
  padding: 17px;
  border: 1px solid var(--ipc-line);
  border-radius: 0;
  background: #fff;
}
.skill-row__num {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--ipc-graphite);
}
.skill-row__num svg {
  width: 60px;
  height: 60px;
  display: block;
  overflow: visible;
}
.skill-row__num .skill-icon__dark {
  stroke: var(--ipc-graphite);
}
.skill-row__num .skill-icon__orange {
  stroke: var(--ipc-orange);
  fill: var(--ipc-orange);
}
.skill-row__num .skill-icon__orange-stroke {
  stroke: var(--ipc-orange);
}
.skill-row h3 { margin: 1px 0 3px; font-size: 17px; }
.skill-row p { margin: 0; color: var(--ipc-muted); font-size: 13px; }
.equipment-panel { padding: 30px; border-radius: 0; background: var(--ipc-graphite); color: #fff; min-height: 100%; }
.equipment-panel h3 { margin: 0 0 10px; font-size: 26px; }
.equipment-panel p { color: #bdc2c8; }
.equipment-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 24px; }
.equipment-item { min-height: 74px; padding: 14px; border: 1px solid #444b54; border-radius: 0; background: #272b31; }
.equipment-item strong { display: block; font-size: 14px; }
.equipment-item span { color: #aeb5bc; font-size: 12px; }

/* archive */
.archive-toolbar { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)) 1.3fr; gap: 10px; margin: 32px 0 22px; }
.archive-toolbar select, .archive-toolbar input { width: 100%; min-height: 48px; border: 1px solid #cfd4da; border-radius: 0; background: #fff; padding: 10px 12px; color: var(--ipc-text); }
.archive-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 17px; color: var(--ipc-muted); font-size: 13px; }
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.event-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid var(--ipc-line); border-radius: 0; transition: transform var(--ipc-transition), box-shadow var(--ipc-transition); }
.event-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(26,30,36,.09); }

/* Фотогалерея мероприятия.
   Ссылки на изображения задаются в EVENTS -> images: [...] */
.event-card__visual {
  position: relative;
  height: 205px;
  min-height: 205px;
  overflow: hidden;
  background: #282d33;
}
.event-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(16,19,22,.34) 0%, rgba(16,19,22,.03) 40%, rgba(16,19,22,.72) 100%);
}
.event-card__carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: pointer;
  touch-action: manipulation;
  overscroll-behavior-x: contain;
}
.event-card__carousel::-webkit-scrollbar { display: none; }

/* Во время hover-preview отключаем snap, чтобы фото могло плавно
   сместиться ровно на 20%, а затем вернуться. */
.event-card__carousel.is-peeking {
  scroll-snap-type: none;
}
.event-card__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #282d33;
}
.event-card__slide img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.event-card__visual-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(245,130,32,.11), transparent 46%),
    #282d33;
}
.event-card__visual-label,
.event-card__visual-title {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  text-shadow: 0 1px 10px rgba(0,0,0,.45);
}
.event-card__visual-label {
  left: 18px;
  top: 18px;
  color: #ffc38f;
  font-size: 11px;
  letter-spacing: .08em;
  font-weight: 900;
}
.event-card__visual-title {
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
  font-size: 24px;
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: -.025em;
}
.event-card__body { display: flex; flex-direction: column; flex: 1; padding: 19px; }
.event-card__date { color: var(--ipc-orange-dark); font-size: 12px; font-weight: 850; }
.event-card h3 { margin: 7px 0 7px; font-size: 19px; line-height: 1.2; }
.event-card__desc { margin: 0 0 14px; color: var(--ipc-muted); font-size: 13px; }

/* Сохраняем классы на случай ручной разметки, но в cardHTML они больше не выводятся.
   Фильтрация продолжает работать по e.brands / e.topics / e.topicLabels. */
.event-card__brands,
.event-card__topics { display: none !important; }
.badge-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.event-badge { border-radius: 0; padding: 5px 8px; background: #f1f3f5; color: #565d66; font-size: 10px; font-weight: 900; letter-spacing: .04em; }
.event-card__footer { margin-top: auto; padding-top: 16px; }
.event-card__footer a { color: var(--ipc-orange-dark); text-decoration: none; font-size: 13px; font-weight: 850; }
.archive-empty { display: none; padding: 34px; border: 1px dashed #bdc3ca; border-radius: 0; text-align: center; background: #fff; }
.archive-empty.is-visible { display: block; }

/* corporate */
.corporate-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.corporate-list { display: grid; gap: 12px; margin: 28px 0; }
.corporate-list div { display: flex; gap: 12px; align-items: flex-start; color: #d8dce1; }
.corporate-list div::before { content: "✓"; color: var(--ipc-orange); font-weight: 900; }
.corporate-proof { padding: 28px; border: 1px solid #454b53; border-radius: 0; background: #272b31; }
.corporate-proof__label { color: #f4a763; font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.corporate-proof__number { margin-top: 12px; font-size: 64px; line-height: 1; font-weight: 900; letter-spacing: -.05em; }
.corporate-proof__text { color: #c0c6cc; margin-top: 10px; }
.corporate-proof__topics { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.corporate-proof__topics span { border: 1px solid #4d545d; padding: 6px 9px; border-radius: 0; color: #dde0e4; font-size: 11px; }

/* FAQ */
.faq-list { margin-top: 35px; border-top: 1px solid var(--ipc-line); }
.faq-item { border-bottom: 1px solid var(--ipc-line); }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 21px 0; border: 0; background: transparent; color: var(--ipc-text); text-align: left; font-weight: 850; font-size: 17px; }
.faq-item button span:last-child { color: var(--ipc-orange); font-size: 22px; transition: transform var(--ipc-transition); }
.faq-item button[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--ipc-transition); }
.faq-answer > div { overflow: hidden; }
.faq-item button[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }
.faq-answer p { margin: 0; padding: 0 0 21px; color: var(--ipc-muted); max-width: 840px; }

/* final CTA */
.final-cta { padding: 42px; border-radius: 0; background: linear-gradient(120deg, #fff0e2, #fff 64%); border: 1px solid #ffd5b0; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.final-cta h2 { margin: 0; font-size: clamp(28px,3vw,42px); line-height: 1.08; letter-spacing: -.03em; }
.final-cta p { margin: 10px 0 0; color: var(--ipc-muted); }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }

/* footer */
.site-footer {
  padding: 40px 0 24px;
  background: var(--ipc-light);
  border-top: 1px solid #e3e7eb;
}
.site-footer__main {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 25px;
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  min-width: 160px;
  color: var(--ipc-text);
  text-decoration: none;
}
.site-footer__logo {
  display: flex;
  align-items: center;
  min-height: 27px;
}
.site-footer__logo img {
  width: 140px;
  height: auto;
}
.site-footer__logo-fallback {
  color: var(--ipc-graphite);
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.06em;
}
.site-footer__logo-fallback span { color: var(--ipc-orange); }
.site-footer__brand small {
  margin-top: 7px;
  color: #747d86;
  font-size: 11px;
  letter-spacing: .02em;
}
.site-footer__tagline {
  margin: 0;
  color: #707983;
  font-size: 13px;
  line-height: 1.55;
}
.site-footer__phone,
.site-footer__external {
  color: var(--ipc-graphite);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--ipc-transition);
}
.site-footer__phone { font-size: 16px; }
.site-footer__external {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
.site-footer__phone:hover,
.site-footer__external:hover,
.site-footer__bottom a:hover { color: var(--ipc-orange-dark); }
.site-footer__external svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid #dce1e5;
  color: #858d95;
  font-size: 12px;
}
.site-footer__bottom a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ipc-transition);
}

/* modal */
.modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(17,19,22,.72); backdrop-filter: blur(5px); }
.modal.is-open { display: flex; }
.modal__dialog { width: min(100%, 650px); max-height: min(88vh, 820px); overflow: auto; background: #fff; border-radius: 0; box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.modal__head { display: flex; justify-content: space-between; gap: 20px; padding: 22px 24px; border-bottom: 1px solid var(--ipc-line); }
.modal__head h2 { margin: 0; font-size: 24px; }
.modal__close { width: 42px; height: 42px; border-radius: 0; border: 1px solid #d5dae0; background: #fff; font-size: 22px; }
.modal__body { padding: 24px; }
.modal-context { padding: 14px 15px; border-radius: 0; background: var(--ipc-light); margin-bottom: 18px; color: #59616b; font-size: 13px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: grid; gap: 6px; }
.form-field--wide { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: 800; }
.form-field input, .form-field textarea, .form-field select { min-height: 48px; border: 1px solid #ccd2d8; border-radius: 0; padding: 10px 12px; background: #fff; }
.form-field textarea { min-height: 110px; resize: vertical; }
.form-consent { margin: 15px 0; color: #737b84; font-size: 11px; }
.form-success { display: none; padding: 18px; margin-top: 12px; border-radius: 0; background: #e9f7f1; color: #0f6348; font-weight: 700; }
.form-success.is-visible { display: block; }

/* mobile CTA */
.mobile-cta { display: none; position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 80; padding: 8px; background: rgba(255,255,255,.96); border: 1px solid #d7dce1; border-radius: 0; box-shadow: 0 15px 50px rgba(0,0,0,.2); backdrop-filter: blur(10px); }
.mobile-cta .ipc-btn { width: 100%; }

@media (max-width: 1080px) {
  .event-hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "eyebrow" "title" "visual" "wide";
  }
  .hero-visual { min-height: 420px; margin-top: 28px; }
  .hero-program__grid { grid-template-columns: repeat(2, 1fr); }
  .corporate-grid { grid-template-columns: 1fr; }
  .value-grid, .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .format-panel__card, .outcome-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-toolbar { grid-template-columns: repeat(2, 1fr); }
  .archive-toolbar input { grid-column: 1 / -1; }
  .final-cta { grid-template-columns: 1fr; }
  .final-cta__actions { justify-content: flex-start; }
  .site-footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --sticky-offset: 54px; }
  .ipc-container { width: min(calc(100% - 28px), var(--ipc-container)); }
  .ipc-section { padding: 64px 0; }
  .event-nav__inner {
    min-height: 56px;
    justify-content: flex-start;
    gap: 20px;
    padding-left: 132px;
    padding-right: 0;
  }
  .event-nav__logo {
    position: absolute;
    left: 0;
    width: 116px;
    height: 38px;
    padding: 4px 6px;
  }
  .event-nav__logo img { width: 104px; }
  .event-hero__grid { gap: 0; padding: 44px 0 50px; }
  .event-hero h1 { font-size: clamp(37px, 11vw, 54px); }
  .city-switcher { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .city-switcher button { padding: 9px 11px; }
  .hero-event-meta { grid-template-columns: 1fr; }
  .seminar-details-grid { grid-template-columns: 1fr; }
  .seminar-detail ul { columns: 1; }
  .hero-actions { display: grid; }
  .program-logos { gap: 8px; }
  .program-logo { min-width: calc(50% - 4px); flex: 1 1 calc(50% - 4px); }
  .hero-program__head { display: block; }
  .hero-program__head p { margin-top: 8px; text-align: left; }
  .hero-visual { min-height: 390px; margin-top: 24px; }
  .engineering-map { inset: 90px 10px 30px; transform: scale(.88); transform-origin: center; }
  .map-node { min-width: 98px; padding: 10px; }
  .value-grid, .topic-grid, .archive-grid, .equipment-list, .hero-program__grid { grid-template-columns: 1fr; }
  .hero-topic__text { height: auto; min-height: 0; overflow: visible; }
  .hero-topic__visual { height: 200px; min-height: 200px; }
  .format-tablist { grid-template-columns: 1fr; }
  .format-tab { min-height: 58px; justify-content: center; text-align: left; }
  .format-panel__card { padding: 18px; gap: 24px; }
  .format-panel__visual { min-height: 320px; }
  .format-checks { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-top: 0; border-left: 1px solid #555b63; padding: 6px 16px 28px 28px; }
  .process-step::before { top: 8px; left: -7px; }
  .process-step:not(:last-child)::after { content: "↓"; left: -6px; right: auto; top: auto; bottom: 5px; }
  .archive-toolbar { grid-template-columns: 1fr; }
  .archive-toolbar input { grid-column: auto; }
  .final-cta { padding: 28px 22px; }
  .final-cta__actions { display: grid; width: 100%; }
  .site-footer { padding: 34px 0 22px; }
  .site-footer__main { grid-template-columns: 1fr; gap: 20px; }
  .site-footer__bottom { flex-direction: column; margin-top: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--wide { grid-column: auto; }
  .mobile-cta { display: block; }
  body { padding-bottom: 84px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}


/* === Redesigned seminar hero banner === */
.event-hero.event-hero--landing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(245,130,32,.18), transparent 22%),
    linear-gradient(90deg, #17202a 0%, #1b2430 42%, #202a35 100%);
  color: var(--ipc-white);
  border-bottom: 0;
}
.event-hero.event-hero--landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,16,22,.20) 0%, rgba(12,16,22,.08) 45%, rgba(12,16,22,.18) 100%);
  pointer-events: none;
}
.event-hero.event-hero--landing::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: .22;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.86) 64%, transparent 100%);
}
.event-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 450px);
  gap: 34px;
  padding: 50px 0 34px;
  align-items: start;
}
.event-hero__main { min-width: 0; }
.event-hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 0 0 22px;
}
.event-hero__eyebrow-note {
  color: #bfc5cb;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.event-hero__title-wrap { max-width: 760px; }
.event-hero__title-wrap h1 {
  margin: 0;
  color: var(--ipc-white);
  font-size: 56px;
  line-height: .98;
  letter-spacing: -.05em;
  max-width: 720px;
}
.event-hero__title-accent { color: var(--ipc-orange); }
.event-hero__subtitle {
  margin: 18px 0 0;
  max-width: 720px;
  color: rgba(255,255,255,.96);
  font-size: clamp(19px, 1.85vw, 24px);
  line-height: 1.35;
}
.event-hero__intro {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  max-width: 760px;
}
.event-hero.event-hero--landing .event-hero__desc { color: rgba(236,240,245,.94); font-size: 18px; }
.event-hero.event-hero--landing .event-hero__desc--secondary { color: rgba(195,203,212,.94); font-size: 17px; }
.hero-tag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-tag-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: background var(--ipc-transition), border-color var(--ipc-transition), transform var(--ipc-transition), box-shadow var(--ipc-transition);
  backdrop-filter: blur(2px);
}
.hero-tag-links a:hover,
.hero-tag-links a:focus-visible {
  background: rgba(245,130,32,.18);
  border-color: rgba(245,130,32,.46);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  outline: none;
}
.hero-stage-card {
  position: relative;
  margin-top: 26px;
  min-height: 350px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 50px rgba(7,10,15,.28);
}
.hero-stage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21,28,36,.88) 0%, rgba(21,28,36,.72) 32%, rgba(21,28,36,.18) 62%, rgba(21,28,36,.06) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-stage-card::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 34px;
  width: 132px;
  height: 74px;
  border-top: 1px solid rgba(245,130,32,.34);
  border-right: 1px solid rgba(245,130,32,.34);
  opacity: .45;
  z-index: 3;
  pointer-events: none;
}
.hero-stage-card .hero-visual {
  min-height: 350px;
  margin: 0;
  background: transparent;
  box-shadow: none;
}
.hero-stage-card .hero-visual__banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(.95);
}
.hero-stage-card .hero-overlay { z-index: 4; }
.event-hero__lower {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: flex-start;
  margin-top: 24px;
}
.city-tabs {
  display: flex;
  width: 100%;
  max-width: 460px;
  height: auto;
  gap: 5px;
  padding: 4px;
  margin: 0;
  border: 1px solid #5a626a;
  border-radius: 5px;
  background: rgba(36,42,49,.8);
  box-shadow: none;
}
.city-tabs button {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  height: auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 11px 15px;
  border: 0;
  border-radius: 3px;
  color: #d0d5da;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  transition: background-color var(--ipc-transition), color var(--ipc-transition);
}
.city-tabs button span {
  font-size: 18px;
  font-weight: 600;
  display: block;
  line-height: 1.15;
}
.city-tabs button small {
  display: block;
  margin: 0;
  color: #abb4bd;
  font-size: 14px;
  font-weight: 400;
}
.city-tabs button.is-active {
  background: var(--ipc-white);
  color: #282e34;
  box-shadow: none;
}
.city-tabs button.is-active small { color: #b55212; }
.city-tabs button:focus-visible {
  outline: 2px solid var(--ipc-orange);
  outline-offset: -2px;
}
.hero-quick-meta {
  display: grid;
  gap: 10px;
  min-width: min(100%, 360px);
  flex: none;
  padding-top: 2px;
}
.hero-quick-meta__city {
  display: none;
}
.hero-quick-meta__city.is-active {
  display: block;
}
.hero-quick-meta__schedule {
  display: flex;
  gap: 27px;
}
.hero-quick-meta__schedule > span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #ecedef;
  font-size: 14px;
}
.hero-quick-meta__location {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  color: var(--ipc-orange);
}
.hero-quick-meta__icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--ipc-orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-quick-meta__location strong {
  display: block;
  color: #ecedef;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}
.hero-quick-meta__location span {
  display: block;
  margin-top: 5px;
  color: #aeb6be;
  font-size: 14px;
  line-height: 1.35;
}
.hero-program-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 0 0;
  padding-bottom: 4px;
  color: #f6a36b;
  border-bottom: 1px solid rgba(246, 163, 107, .34);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: color var(--ipc-transition), border-color var(--ipc-transition);
}
.hero-program-link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  transition: transform var(--ipc-transition);
}
.hero-program-link:hover {
  color: var(--ipc-white);
  border-bottom-color: var(--ipc-orange);
}
.hero-program-link:hover svg { transform: translateY(3px); }
.hero-program-link:focus-visible {
  outline: 2px solid var(--ipc-orange);
  outline-offset: 4px;
}
.event-hero.event-hero--landing .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.event-hero.event-hero--landing .hero-actions .ipc-btn--secondary {
  color: var(--ipc-white);
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.04);
}
.event-hero.event-hero--landing .hero-actions .ipc-btn--secondary:hover { background: rgba(255,255,255,.10); }
.hero-signup-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.97);
  color: var(--ipc-text);
  padding: 32px;
  box-shadow: 0 28px 56px rgba(8,11,16,.30);
  align-self: start;
}
.hero-signup-card__eyebrow {
  color: var(--ipc-orange-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-signup-card h2 {
  margin: 18px 0 18px;
  font-size: clamp(34px, 2.6vw, 50px);
  line-height: .98;
  letter-spacing: -.04em;
}
.hero-signup-card__location {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e1e5ea;
  color: #68717c;
  font-size: 15px;
}
.hero-signup-card__pin {
  width: 13px;
  height: 13px;
  color: var(--ipc-orange);
  flex: 0 0 13px;
}
.hero-signup-form .form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}
.hero-signup-form .form-field { display: grid; min-width: 0; gap: 8px; }
.hero-signup-form .form-field--wide { grid-column: 1 / -1; }
.hero-signup-form label {
  font-size: 13px;
  font-weight: 800;
  color: #35404b;
}
.hero-signup-form input:not([type="checkbox"]) {
  width: 100%;
  min-width: 0;
  min-height: 20px;
  border: 1px solid #d9dfe5;
  padding: 8px 12px;
  background: #f8f9fb;
  color: var(--ipc-text);
  transition: border-color var(--ipc-transition), background var(--ipc-transition), box-shadow var(--ipc-transition);
}
.hero-signup-form input:not([type="checkbox"]):focus {
  border-color: rgba(245,130,32,.72);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(245,130,32,.12);
  outline: none;
}
.hero-signup-form .hero-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  grid-column: 1 / -1;
}
.hero-signup-card .form-consent {
  margin: 14px 0 18px;
  font-size: 12px;
  line-height: 1.55;
  color: #606872;
}
.hero-signup-card .form-consent label {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
.hero-signup-card .form-consent input {
  margin-top: 2px;
  accent-color: var(--ipc-orange);
}
.hero-signup-card .ipc-btn { width: 100%; min-height: 54px; font-size: 18px; }
.hero-signup-card .form-helper {
  margin-top: 14px;
  color: #7b838d;
  font-size: 13px;
  text-align: center;
}
.hero-signup-card .form-success {
  margin-top: 16px;
  padding: 16px;
  background: #edf7f2;
  color: #0b6f4d;
  font-weight: 700;
}
.hero-signup-card .form-success.is-error {
  background: #fff0ee;
  color: #a62b1f;
}
.hero-signup-card .ipc-btn:disabled {
  cursor: wait;
  opacity: .7;
  transform: none;
  box-shadow: none;
}
.hero-program { margin-top: 40px; }
.hero-program > br { display: none; }

@media (max-width: 1220px) {
  .event-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    gap: 26px;
  }
  .hero-signup-card { padding: 26px; }
}
@media (max-width: 1040px) {
  .event-hero__layout {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }
  .hero-signup-card {
    max-width: 620px;
    width: 100%;
  }
}
@media (max-width: 760px) {
  .event-hero__layout { padding-top: 34px; }
  .event-hero__eyebrow-note { font-size: 12px; }
  .event-hero__subtitle { font-size: 18px; }
  .hero-stage-card { min-height: 250px; }
  .hero-stage-card .hero-visual { min-height: 250px; }
  .hero-signup-form .form-grid,
  .hero-signup-form .hero-form-row {
    grid-template-columns: 1fr;
  }
  .event-hero__lower { gap: 16px; }
  .hero-signup-card { padding: 22px 18px; }
  .hero-signup-card h2 { font-size: 30px; }
  .hero-tag-links a { width: 100%; justify-content: center; }
  .hero-quick-meta__schedule { gap: 18px; }
}



/* === Program section: visual grid based on the supplied reference === */
.webinar-program {
  padding: 76px 0 54px;
  background: var(--ipc-white);
  border-bottom: 1px solid #e7eaee;
  scroll-margin-top: calc(var(--sticky-offset) + 18px);
}

.webinar-program__head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .55fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 34px;
}

.webinar-program__kicker {
  display: block;
  margin: 0 0 18px;
  color: var(--ipc-orange-dark);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.webinar-program__title {
  margin: 0;
  max-width: 790px;
  color: var(--ipc-graphite);
  letter-spacing: -1.3px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
}
.webinar-program__title--light { color: var(--ipc-white); }

.webinar-program__title span {
  display: block;
  color: #8a9199;
  font-weight: 750;
}

.webinar-program__intro {
  margin: 0 0 4px;
  max-width: 340px;
  color: #5e6670;
  font-size: 16px;
  line-height: 1.62;
}

.webinar-program__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.webinar-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe3e8;
  box-shadow: 0 8px 24px rgba(27, 32, 39, .025);
  transition: transform var(--ipc-transition), border-color var(--ipc-transition), box-shadow var(--ipc-transition);
}

.webinar-card:hover {
  transform: translateY(-3px);
  border-color: #c8ced5;
  box-shadow: 0 16px 36px rgba(27, 32, 39, .08);
}

.webinar-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  padding: 11px 16px 8px;
  background: #fff;
}

.webinar-card__num {
  color: var(--ipc-orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
}

.webinar-card__brand {
  color: #55606c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  text-align: right;
}

.webinar-card__media {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: #f8f9fa;
  border-bottom: 1px solid #e4e7eb;
}

.webinar-card__media::before,
.webinar-card__media::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  transform: skewX(-42deg);
  transform-origin: top left;
  pointer-events: none;
}

.webinar-card__media::before {
  left: 0;
  width: 42px;
  height: 18px;
  background: var(--ipc-orange);
}

.webinar-card__media::after {
  left: 47px;
  width: 20px;
  height: 8px;
  background: #5f656b;
}

.webinar-card__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

.webinar-card:hover .webinar-card__media img { transform: scale(1.018); }

.webinar-card__body {
  min-height: 128px;
  padding: 17px 18px 20px;
  background: #f8f9fa;
}

.webinar-card h3 {
  margin: 0 0 7px;
  color: var(--ipc-graphite);
  font-size: 17px;
  line-height: 1.28;
  font-weight: 850;
  letter-spacing: -.01em;
}

.webinar-card p {
  margin: 0;
  color: #69717a;
  font-size: 14px;
  line-height: 1.48;
}

.webinar-program__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 0 1px 20px;
  border-bottom: 1px solid #e2e6ea;
  color: #747c86;
  font-size: 12px;
}

.webinar-program__time {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.webinar-program__time svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--ipc-orange-dark);
}

.webinar-program__time strong {
  color: #39414a;
  font-weight: 850;
}

.webinar-program__link {
  color: var(--ipc-orange-dark);
  text-decoration: none;
  font-weight: 850;
  white-space: nowrap;
}

.webinar-program__link:hover { color: var(--ipc-orange); }

.seminar-info-section { padding-top: 54px; }

@media (max-width: 1040px) {
  .webinar-program__head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .webinar-program__intro { max-width: 680px; }
  .webinar-program__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .webinar-program { padding: 56px 0 38px; }
  .webinar-program__head { margin-bottom: 24px; }
  .webinar-program__title { font-size: clamp(32px, 10vw, 44px); }
  .webinar-program__intro { font-size: 14px; }
  .webinar-program__grid { grid-template-columns: 1fr; gap: 12px; }
  .webinar-card__media { height: 180px; }
  .webinar-card__body { min-height: 0; }
  .webinar-program__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .webinar-program__link { white-space: normal; }
  .seminar-info-section { padding-top: 42px; }
}
