:root {
  --bg: #f3f3f3;
  --card: #ffffff;
  --text: #0b0b0c;
  --muted: #6b6f76;
  --line: #e5e7eb;
  --black: #0b0b0c;
  --red: #e10b14;
  --radius: 14px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.top { background-image: url('images/dipfb-1.jpg'); min-height: 70vh; padding: 18px 0 22px;    background-position-x: 91px; }
.topbar { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; padding: 6px 0 10px; }
.brand { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.brand__img { height: 36px; width: auto; display: block; }
.brand__img--footer { filter: brightness(0) invert(1); }

.nav { display: flex; justify-content: center; gap: 28px; align-items: center; }
.nav a { font-size: 13px; font-weight: 500; color: var(--muted); }
.nav a:hover { color: var(--text); }
.topbar__actions { display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 34px; padding: 0 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; font-family: inherit;
}
.btn-dark { background: var(--black); color: #fff; }
.btn-outline { background: #fff; border-color: var(--line); color: var(--text); }
.btn-outline:hover { border-color: #d2d6de; }
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); height: 42px; padding: 0 18px; border-radius: 12px; }
.btn-primary:hover { filter: brightness(1.02); }
.btn-primary:active { transform: translateY(1px); }
.btn-white { background: #fff; color: var(--black); border-color: #fff; height: 48px; padding: 0 32px; border-radius: 12px; font-weight: 700; }
.btn-white:hover { background: #f0f0f0; }

.burger { display: none; height: 34px; padding: 0 12px; border-radius: 999px; border: 1px solid var(--line); background: #fff; cursor: pointer; color: var(--text); align-items: center; justify-content: center; }
.mnav { display: none; padding: 10px 0 0; }
.mnav a { display: block; padding: 10px 0; border-bottom: 1px solid var(--line); font-weight: 600; font-size: 14px; color: var(--text); }

.hero { margin-top: 60px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: center; padding: 34px 0 18px; }
.hero__left { max-width: 580px; }

.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 12px; font-weight: 600; color: #2b2f36; }
.pill__dot { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(225,11,20,.35); background: rgba(225,11,20,.08); position: relative; }
.pill__dot:after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--red); }

.hero__title { margin: 14px 0 12px; font-size: 38px; line-height: 1.1; letter-spacing: -0.03em; color: var(--text); }
.hero__accent { color: var(--red); }
.hero__desc { margin: 0 0 10px; font-size: 16px; line-height: 1.55; color: var(--text); font-weight: 700; }
.hero__subdesc { margin: 0 0 16px; font-size: 14px; line-height: 1.55; color: var(--muted); font-weight: 400; }
.hero__meta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-bottom: 22px; }
.hero__metaItem { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--text); }
.hero__metaItem svg { color: var(--red); }
.hero__cta { display: flex; gap: 14px; align-items: center; }
.hero__cta .btn-outline { height: 42px; padding: 0 18px; border-radius: 12px; }
.hero__right { display: flex; justify-content: flex-end; align-items: center; }

.hero__poster {
  width: 100%; max-width: 560px; border-radius: 24px;
  border: 1px solid rgba(0,0,0,.06);
  background: radial-gradient(900px 500px at 20% 20%, rgba(225,11,20,.10), transparent 55%), radial-gradient(700px 400px at 80% 70%, rgba(11,11,12,.08), transparent 55%), #fff;
  padding: 40px 28px; box-shadow: 0 18px 40px rgba(0,0,0,.06); text-align: center;
}
.hero__posterBadge { display: inline-block; padding: 4px 12px; border-radius: 999px; background: rgba(225,11,20,.08); border: 1px solid rgba(225,11,20,.15); font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; }
.hero__posterTitle { font-weight: 900; letter-spacing: -0.03em; font-size: 48px; line-height: 1.0; margin: 0 0 6px; }
.hero__posterSubtitle { font-size: 16px; font-weight: 700; color: #3b3f46; margin-bottom: 10px; }
.hero__posterText { color: #6b6f76; font-size: 12px; line-height: 1.55; }

.iconrow { background: white; }
.iconrow > .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 35px 0 10px; background: white; }
.iconrow__item { display: flex; gap: 12px; align-items: flex-start; }
.iconbox { width: 44px; height: 44px; border-radius: 14px; background: var(--black); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; color: white; }
.iconbox svg { width: 22px; height: 22px; }
.iconrow__text { font-size: 16px; line-height: 1.15; color: #2a2d33; font-weight: 500; margin-top: 2px; }

.inside { padding: 54px 0 64px; background: #fff; }
.inside__title { margin: 0 0 8px; text-align: center; font-size: 34px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; color: var(--text); }
.inside__subtitle { text-align: center; font-size: 16px; color: var(--muted); margin: 0 0 28px; max-width: 700px; margin-left: auto; margin-right: auto; }
.inside__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; align-items: stretch; }
.inside__card { background: #fbfbfb; border: 1px solid #efeff2; border-radius: 14px; padding: 18px; display: flex; gap: 18px; align-items: center; min-height: 118px; }
.inside__icon { width: 86px; height: 72px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; color: var(--red); }
.inside__content h3 { margin: 0 0 6px; font-size: 16px; line-height: 1.25; font-weight: 800; color: #0b0b0c; }
.inside__content p { margin: 0; font-size: 14px; line-height: 1.45; color: #6b6f76; max-width: 440px; }

.examsSec { padding: 54px 0 64px; background: #f5f5f5; }
.examsSec__title { margin: 0 0 8px; text-align: center; font-size: 32px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; color: var(--text); }
.examsSec__sub { text-align: center; font-size: 14px; color: var(--muted); margin: 0 0 32px; max-width: 640px; margin-left: auto; margin-right: auto; }

.examGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.examCard { background: #fff; border: 1px solid #efeff2; border-radius: 12px; padding: 16px; display: flex; gap: 14px; align-items: center; transition: box-shadow .15s; }
.examCard:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.examCard--active { border-color: var(--red); background: rgba(225,11,20,.02); }
.examCard__num { width: 36px; height: 36px; border-radius: 10px; background: rgba(225,11,20,.10); color: var(--red); font-weight: 900; font-size: 16px; display: flex; align-items: center; justify-content: center; flex: 0 0 36px; }
.examCard--active .examCard__num { background: var(--red); color: #fff; }
.examCard__body { flex: 1; }
.examCard__title { margin: 0; font-size: 15px; font-weight: 700; color: #0b0b0c; line-height: 1.3; }
.examCard__badge { display: inline-block; margin-top: 6px; padding: 2px 8px; border-radius: 999px; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; }

.examEthics { margin-top: 16px; display: flex; align-items: center; gap: 14px; background: var(--black); color: #fff; border-radius: 12px; padding: 14px 18px; }
.examEthics__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--red); display: flex; align-items: center; justify-content: center; flex: 0 0 40px; color: #fff; }
.examEthics__text { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85); }
.examEthics__text strong { color: #fff; }

.schedSec { padding: 54px 0 64px; background: #fff; }
.schedSec__title { margin: 0 0 8px; text-align: center; font-size: 32px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; color: var(--text); }
.schedSec__sub { text-align: center; font-size: 14px; color: var(--muted); margin: 0 0 28px; }

.schedCard { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; background: #fbfbfb; border: 1px solid #efeff2; border-radius: 16px; padding: 28px; max-width: 900px; margin: 0 auto; }
.schedCard__badge { display: inline-block; padding: 3px 10px; border-radius: 999px; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; margin-bottom: 12px; }
.schedCard__title { margin: 0 0 16px; font-size: 20px; font-weight: 800; color: #0b0b0c; line-height: 1.25; }
.schedCard__details { display: grid; gap: 10px; }
.schedCard__row { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; color: var(--muted); font-weight: 500; }
.schedCard__row svg { color: var(--red); flex: 0 0 16px; margin-top: 2px; }
.schedCard__right { display: flex; flex-direction: column; justify-content: center; }
.schedCard__priceBlock { display: grid; gap: 12px; margin-bottom: 16px; }
.schedCard__priceRow { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.schedCard__priceLabel { font-size: 13px; color: var(--muted); font-weight: 500; }
.schedCard__priceVal { font-size: 20px; font-weight: 900; color: var(--text); white-space: nowrap; }
.schedCard__priceVal--alt { font-size: 18px; color: var(--red); }
.schedCard__btn { width: 100%; }

.spikersec { padding: 54px 0 72px; background: #f5f5f5; }
.spikersec__title { margin: 0 0 40px; text-align: center; font-size: 34px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; color: var(--text); }
.spikersec__grid--wide { max-width: 700px; margin: 0 auto; }
.speakercard { background: #fff; border: 1px solid #efeff2; border-radius: 12px; padding: 18px; display: flex; flex-direction: column; }
.speakercard--wide { flex-direction: row; gap: 24px; align-items: center; }
.speakercard--wide .speakercard__placeholder { width: 200px; height: 200px; flex: 0 0 200px; margin-bottom: 0; }
.speakercard__placeholder { width: 100%; height: 160px; border-radius: 10px; margin-bottom: 16px; background: #f5f5f5; display: flex; align-items: center; justify-content: center; }
.speakercard__info { flex: 1; }
.speakercard__name { font-size: 22px; font-weight: 800; color: #0b0b0c; margin-bottom: 8px; }
.speakercard__desc { font-size: 14px; color: #6b6f76; line-height: 1.5; margin-bottom: 12px; }
.speakercard__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.speakercard__tag { display: inline-flex; padding: 4px 10px; border-radius: 999px; background: rgba(225,11,20,.08); border: 1px solid rgba(225,11,20,.15); font-size: 12px; font-weight: 600; color: var(--red); }

.profbukhSec { padding: 54px 0 64px; background: #fff; }
.profbukhSec__title { margin: 0 0 8px; text-align: center; font-size: 28px; line-height: 1.2; letter-spacing: -0.02em; font-weight: 800; color: var(--text); max-width: 700px; margin-left: auto; margin-right: auto; }
.profbukhSec__sub { text-align: center; font-size: 14px; color: var(--muted); margin: 0 0 28px; max-width: 640px; margin-left: auto; margin-right: auto; }

.profbukhGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.profbukhCard { background: #fbfbfb; border: 1px solid #efeff2; border-radius: 14px; padding: 20px; text-align: center; }
.profbukhCard__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--black); display: flex; align-items: center; justify-content: center; color: #fff; margin: 0 auto 12px; }
.profbukhCard__title { margin: 0 0 6px; font-size: 16px; font-weight: 800; color: #0b0b0c; }
.profbukhCard__text { margin: 0; font-size: 13px; line-height: 1.45; color: #6b6f76; }

.creditTable { background: #fbfbfb; border: 1px solid #efeff2; border-radius: 14px; padding: 24px; max-width: 900px; margin: 0 auto; }
.creditTable__title { margin: 0 0 16px; font-size: 18px; font-weight: 800; color: #0b0b0c; }
.creditTable__wrap { overflow-x: auto; }
.creditTable__tbl { width: 100%; border-collapse: collapse; font-size: 13px; }
.creditTable__tbl th { text-align: left; padding: 10px 12px; border-bottom: 2px solid #efeff2; font-weight: 700; color: #0b0b0c; font-size: 12px; white-space: nowrap; }
.creditTable__tbl td { padding: 10px 12px; border-bottom: 1px solid #efeff2; color: black;font-size: 14px; vertical-align: middle; }
.creditTable__tbl tr:last-child td { border-bottom: none; }
.creditTable__note { margin: 12px 0 0; font-size: 12px; color: black; font-style: italic; }

.priceSec { padding: 54px 0 58px; background: #f5f5f5; }
.priceSec__title { margin: 0 0 24px; text-align: center; font-size: 32px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; color: var(--text); }
.priceGrid { margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; align-items: stretch; }
.priceGrid--triple { max-width: 1000px; }
.priceCard { background: #fff; border: 1px solid #efeff2; border-radius: 12px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; }
.priceCard__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; color: var(--muted); }
.priceCard__price { font-size: 24px; font-weight: 900; letter-spacing: -0.02em; margin: 2px 0 12px; }
.priceCard__list { margin: 0 0 12px; padding-left: 16px; color: #6b6f76; }
.priceCard__list li { font-size: 14px; line-height: 1.45; margin: 4px 0; }
.priceCard__btn { margin-top: auto; display: flex; align-items: center; justify-content: center; height: 42px; border-radius: 10px; background: var(--red); color: #fff; font-weight: 800; font-size: 13px; text-decoration: none; }
.priceCard--dark { background: var(--black); color: #fff; border-color: var(--black); }
.priceCard--dark .priceCard__label { color: rgba(255,255,255,.5); }
.priceCard--dark .priceCard__price { color: #fff; }
.priceCard--dark .priceCard__list { color: rgba(255,255,255,.86); }
.priceCard--dark .priceCard__btn { background: #fff; color: var(--black); }

.lead2 { padding: 54px 0 64px; background: var(--black); }
.lead2__box { display: grid; grid-template-columns: 1fr .8fr; gap: 32px; align-items: center; }
.lead2__title { margin: 0 0 10px; font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -0.02em; line-height: 1.2; }
.lead2__desc { margin: 0 0 24px; font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.55; }
.lead2__form { display: grid; gap: 12px; max-width: 420px; }
.lead2__form input[type="text"],
.lead2__form input[type="tel"] { height: 44px; border-radius: 10px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.07); color: #fff; padding: 0 14px; font-size: 14px; font-family: inherit; outline: none; }
.lead2__form input::placeholder { color: rgba(255,255,255,.4); }
.lead2__check { display: flex; gap: 8px; align-items: flex-start; font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.4; }
.lead2__check a { text-decoration: underline; color: rgba(255,255,255,.7); }
.lead2__btn { width: 100%; height: 46px; font-size: 14px; font-weight: 800; border-radius: 12px; }

.lead2__illus {
  width: 100%; height: 100%; min-height: 220px; border-radius: 24px;
  background: radial-gradient(280px 220px at 20% 20%, rgba(225,11,20,.30), transparent 60%), radial-gradient(320px 240px at 80% 80%, rgba(255,255,255,.16), transparent 60%), rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.footer2 { background: #0b0b0c; color: #fff; padding: 32px 0 24px; }
.footer2__top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: start; }
.footer2__copy { margin: 10px 0 0; font-size: 12px; color: rgba(255,255,255,.45); }
.footer2__nav { display: flex; flex-direction: column; gap: 8px; }
.footer2__nav a { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 500; }
.footer2__nav a:hover { color: #fff; }
.footer2__contacts { display: flex; flex-direction: column; gap: 10px; }
.fContact { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.65); font-weight: 500; }
.fContact a { text-decoration: underline; color: rgba(255,255,255,.65); }
.fContact a:hover { color: #fff; }

@media (max-width: 1060px) {
  .nav { gap: 16px; }
  .nav a { font-size: 12px; }
  .iconrow > .container { grid-template-columns: repeat(2, 1fr); }
  .inside__grid { grid-template-columns: 1fr; }
  .profbukhGrid { grid-template-columns: 1fr; }
  .priceGrid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .topbar__actions .btn-outline, .topbar__actions .btn-dark { display: none; }
  .burger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero__right { display: none; }
  .examGrid { grid-template-columns: 1fr; }
  .schedCard { grid-template-columns: 1fr; }
  .lead2__box { grid-template-columns: 1fr; }
  .lead2__right { display: none; }
  .footer2__top { grid-template-columns: 1fr; gap: 20px; }
  .speakercard--wide { flex-direction: column; }
  .speakercard--wide .speakercard__placeholder { width: 100%; flex: auto; }
}

@media (max-width: 700px) {
  .hero__title { font-size: 28px; }
  .iconrow > .container { grid-template-columns: 1fr; }
  .inside__title, .spikersec__title { font-size: 28px; }
  .examsSec__title, .schedSec__title, .priceSec__title, .profbukhSec__title { font-size: 24px; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 520px) {
  .lead2__form { max-width: 100%; }
  .creditTable__tbl { font-size: 11px; }
  .creditTable__tbl th, .creditTable__tbl td { padding: 8px 6px; }
}

@media (max-width: 420px) {
  .hero__title { font-size: 24px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
}
.accaTableSec {
  padding: 54px 0 64px;
  background: #fff;
}

.accaTableSec__title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
}

.accaTable {
  background: #fbfbfb;
  border: 1px solid #efeff2;
  border-radius: 14px;
  padding: 20px;
}

.accaTable__wrap {
  overflow-x: auto;
}

.accaTable__tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.accaTable__tbl th {
  background: rgba(225,11,20,.08);
  color: var(--text);
  font-weight: 700;
  text-align: left;
  padding: 12px;
  border-bottom: 2px solid #efeff2;
}

.accaTable__tbl td {
  padding: 12px;
  border-bottom: 1px solid #efeff2;
  vertical-align: top;
}

.accaTable__tbl tr.group td:first-child {
  background: #fff;
  font-weight: 600;
}

.accaTable__tbl tr:hover {
  background: rgba(0,0,0,.02);
}

.accaTable__tbl .accent {
  color: var(--red);
  font-weight: 800;
}

.accaTable__tbl .note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.accaTable__tbl .note.red {
  color: var(--red);
}

.accaTable__tbl tr.final {
  background: rgba(225,11,20,.05);
  font-weight: 700;
}

@media (max-width: 700px) {
  .accaTable__tbl {
    font-size: 12px;
  }

  .accaTable__tbl td,
  .accaTable__tbl th {
    padding: 8px;
  }
}
.accaNotice {
  background: #f5f9ff;
  border: 1px solid #e3edf8;
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 20px;
  text-align: center;
}

.accaNotice__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
  margin: 0;
}

.accaNotice__text {
  font-size: 14px;
  color: #2a2d33;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}