:root {
  --bg: #f5fbfb;
  --bg-2: #ffffff;
  --panel: #ffffff;
  --panel-warm: #fff0bf;
  --ink: #17382b;
  --heading: #14543a;
  --muted: #607268;
  --muted-2: #87968d;
  --line: rgba(79, 93, 83, 0.16);
  --line-strong: rgba(79, 93, 83, 0.28);
  --forest: #1fa66a;
  --forest-deep: #146b45;
  --gold: #ffd34d;
  --amber: #ff8a1f;
  --terracotta: #ef6f24;
  --cream: #fff7dc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 107, 69, 0.16);
  --soft-shadow: 0 14px 38px rgba(20, 107, 69, 0.11);
  --ui-font: "Segoe UI", "Inter", Arial, sans-serif;
  --display-font: "Segoe UI", "Inter", Arial, sans-serif;
  font-family: var(--ui-font);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 0%, rgba(98, 210, 118, .30), transparent 31%),
    radial-gradient(circle at 86% 8%, rgba(255, 211, 77, .32), transparent 28%),
    linear-gradient(180deg, #f4fcf0 0%, #ffffff 38%, #fff8e5 76%, #f1fbec 100%);
  font-size: 17px;
  line-height: 1.58;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 44px)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 76px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(31, 166, 106, .16);
  box-shadow: 0 10px 34px rgba(20, 107, 69, .10);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-logo { width: clamp(132px, 15vw, 190px); height: auto; filter: none; }
.brand-mark { display: none; }
.nav-links { display: flex; gap: 30px; color: var(--forest-deep); font-size: 17px; font-weight: 850; }
.nav-links a:hover { color: var(--terracotta); }
.nav-cta {
  border: 1px solid rgba(240, 138, 36, .65);
  color: var(--forest-deep);
  background: linear-gradient(135deg, rgba(255,211,77,.48), rgba(255,255,255,.88));
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 850;
  font-size: 16px;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding: 136px clamp(22px, 6vw, 78px) 62px;
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 72%, rgba(255,248,234,.28));
  pointer-events: none;
}
/* <picture> убирается из потока, чтобы .hero-image позиционировался
   относительно .hero ровно так же, как до оборачивания в <picture>. */
.hero-picture { display: contents; }
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; filter: saturate(1.16) contrast(1.04) brightness(1.02); }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 88, 48, 0.76), rgba(31, 166, 86, 0.44) 48%, rgba(255, 211, 77, 0.14)),
    linear-gradient(0deg, rgba(16, 78, 42, .28), transparent 48%);
}
.hero-content { position: relative; z-index: 1; width: min(900px, 100%); }

.eyebrow, .section-kicker {
  margin: 0 0 13px;
  color: var(--terracotta);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .03em;
}
.hero .eyebrow { color: #ffe27a; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  display: grid;
  gap: 6px;
  margin-bottom: 28px;
  font-family: var(--display-font);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
  max-width: 980px;
  font-weight: 760;
}
h1 span { display: block; }
h2 {
  font-family: var(--display-font);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: 0;
  margin-bottom: 16px;
  color: var(--heading);
  font-weight: 740;
}
h3 { font-size: 20px; line-height: 1.25; margin-bottom: 10px; color: var(--heading); }
.lead {
  max-width: 980px;
  color: rgba(255,255,255,.93);
  margin-bottom: 12px;
  line-height: 1.42;
}
.lead-en {
  font-size: clamp(20px, 1.35vw, 25px);
  font-weight: 760;
  max-width: 1040px;
}
.lead-ru {
  font-size: clamp(18px, 1.12vw, 21px);
  color: rgba(255,255,255,.90);
  max-width: 980px;
}
.lead-strong {
  display: block;
  max-width: 880px;
  color: #ffe08b;
  font-size: clamp(20px, 1.35vw, 25px);
  font-weight: 850;
  line-height: 1.45;
  margin-top: 22px;
  margin-bottom: 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 19px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 18px 42px rgba(47,75,58,.18); }
.button.primary { background: linear-gradient(135deg, var(--gold), var(--amber)); color: #231906; box-shadow: 0 18px 42px rgba(214,101,42,.22); }
.button.secondary { border-color: rgba(255,255,255,.72); color: var(--white); background: rgba(255,255,255,.18); }
.button.full { width: 100%; border: 0; font-size: 14px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, minmax(160px, 1fr)); gap: 10px; max-width: 940px; }
.hero-facts span {
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  background: rgba(20, 107, 69, .62);
  color: var(--white);
  font-size: 14px;
  backdrop-filter: blur(10px);
}

.format-strip { padding: 24px 0; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.92); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stat-grid article {
  min-height: 136px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff, #eefbf3);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}
.stat-grid strong { display: block; color: var(--forest-deep); font-size: 19px; line-height: 1.22; margin-bottom: 12px; }
.stat-grid span { color: #365f45; font-size: 15px; font-weight: 650; line-height: 1.45; }

.section-band { background: linear-gradient(180deg, rgba(239,251,252,.92), rgba(255,255,255,.92)); border-block: 1px solid var(--line); }
.intro, .program, .experts, .apply, .audience, .outcomes, .certificates, .day-program, .schedule, .venue, .prep-training, .main-result, .partners { padding: 90px 0; }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.intro-grid p:last-child { color: var(--muted); font-size: 19px; }
.section-heading { max-width: 820px; margin-bottom: 36px; }
.section-heading::before {
  content: "Bridge Consult";
  display: block;
  color: var(--terracotta);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .03em;
  margin-bottom: 14px;
}
.section-copy {
  display: grid;
  gap: 12px;
  color: #365f45;
  font-weight: 680;
  font-size: 18px;
  line-height: 1.55;
}
.section-copy p {
  margin: 0;
  color: #365f45 !important;
}
.emphasis-text {
  color: var(--forest-deep);
  font-weight: 850;
}
.section-heading.split { max-width: none; display: grid; grid-template-columns: 1fr .9fr; gap: 52px; align-items: end; }
.section-heading.split p:last-child { color: #365f45; margin-bottom: 20px; font-weight: 680; font-size: 18px; }

.main-result { padding-top: 0; }
.main-result-card {
  max-width: 980px;
  padding: 34px;
  border: 1px solid rgba(31,166,86,.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,211,77,.34), rgba(255,255,255,.94) 40%, rgba(31,166,86,.12)),
    #ffffff;
  box-shadow: var(--soft-shadow);
}
.main-result-card p { color: #365f45; font-weight: 670; font-size: 17px; line-height: 1.58; }
.main-result-card p:last-child {
  color: var(--forest-deep);
  font-weight: 850;
  margin-bottom: 0;
}
.prep-training { padding-top: 0; }
.prep-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 38px;
  align-items: start;
  padding: 32px;
  border: 1px solid rgba(240,138,36,.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(246,181,29,.28), rgba(255,255,255,.92) 42%, rgba(47,91,69,.07)),
    #fffaf0;
  box-shadow: var(--soft-shadow);
}
.prep-card p { color: var(--muted); }
.prep-card p:last-child { margin-bottom: 0; }
.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.module-card, .day-detail-card, .day-card, .expert-card, .outcome-grid article, .certificate-panel, .included-panel, .apply-form, .contact-box, .method-panel {
  background: linear-gradient(180deg, #ffffff, #f3fcf5);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}
.module-card { min-height: 270px; padding: 26px; }
.module-card.featured {
  border-color: rgba(240, 138, 36, .42);
  background: linear-gradient(135deg, rgba(255,211,77,.50), rgba(255,255,255,.96) 42%, rgba(31,166,106,.14));
}
.module-card span, .day-detail-card span, .day-label, .cert-card span {
  display: block;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .03em;
  margin-bottom: 16px;
}
.module-card p { color: #365f45; font-weight: 720; font-size: 16px; line-height: 1.55; }
.module-card ul, .day-detail-card ul { margin-top: 16px; padding-left: 18px; color: #4d6758; font-size: 15px; line-height: 1.55; font-weight: 560; }
.module-card li + li, .day-detail-card li + li { margin-top: 7px; }
.port-module { grid-column: span 2; display: grid; grid-template-columns: .95fr 1.05fr; gap: 22px; align-items: stretch; }
.module-photo { min-height: 220px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--cream); }
.module-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.02) contrast(1.03); }

.venue-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; align-items: center; }
.venue-media { border: 1px solid var(--line); background: var(--panel); box-shadow: var(--shadow); overflow: hidden; border-radius: 8px; }
.venue-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; filter: saturate(1.18) contrast(1.04) brightness(1.04); }
.venue-copy p { color: #365f45; font-weight: 670; font-size: 17px; line-height: 1.58; }
.venue-copy a { color: var(--forest-deep); font-weight: 850; border-bottom: 1px solid rgba(239,111,36,.45); }
.venue-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.venue-tags span {
  border: 1px solid rgba(240,138,36,.34);
  background: #fff3c4;
  color: var(--forest-deep);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 11px;
  border-radius: 999px;
}

.day-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.day-detail-card { padding: 26px; }
.day-detail-card p { color: #365f45; font-weight: 690; line-height: 1.55; }
.day-detail-card li { color: #4d6758; font-weight: 560; }
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-grid span {
  border: 1px solid rgba(240,138,36,.28);
  background: #fff3c4;
  border-radius: 999px;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 750;
  color: var(--forest-deep);
}
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.day-card { padding: 24px; min-height: 278px; position: relative; overflow: hidden; }
.day-card::before, .outcome-grid article::before, .expert-card::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  margin-bottom: 20px;
}
.day-card.wide { grid-column: span 4; min-height: 0; }
.day-card p, .expert-card p, .outcome-grid p, .certificate-panel li, .included-panel li { color: #4d6758; font-weight: 580; line-height: 1.5; }
.method-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 16px; }
.method-panel { padding: 26px; }
.role-line {
  color: var(--forest-deep) !important;
  font-weight: 850;
  line-height: 1.7;
  padding: 14px 16px;
  border: 1px solid rgba(31,166,86,.22);
  border-radius: 8px;
  background: rgba(255,211,77,.20);
}
.method-panel p { color: #365f45; font-weight: 680; line-height: 1.58; }
.method-panel li { color: #4d6758; font-weight: 560; line-height: 1.55; }
.method-panel ul { padding-left: 18px; margin: 0; }
.method-panel li + li { margin-top: 8px; }
.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.outcome-grid article, .expert-card { padding: 24px; }
.expert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.expert-grid-detailed { grid-template-columns: repeat(2, 1fr); }
.expert-meta { color: var(--terracotta) !important; font-size: 14px; font-weight: 750; line-height: 1.45; }

.certificate-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.certificate-panel, .included-panel { padding: 30px; }
.panel-lead { color: #365f45; margin-bottom: 20px; font-weight: 680; line-height: 1.55; }
.cert-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 22px 0; }
.cert-card { border: 1px solid rgba(240,138,36,.26); background: #fff3c4; padding: 18px; border-radius: 8px; }
.cert-card h3 { font-size: 17px; }
.cert-card p { color: #365f45; font-size: 15px; font-weight: 650; margin-bottom: 0; }
.certificate-note { color: #365f45; font-weight: 680; border-top: 1px solid var(--line); padding-top: 16px; margin-bottom: 0; }
.bridge-certificate-proof {
  display: grid;
  grid-template-columns: 1fr 132px;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.bridge-certificate-proof .certificate-note {
  border-top: 0;
  padding-top: 0;
}
.qr-card,
.telegram-qr {
  margin: 0;
  display: grid;
  gap: 8px;
  justify-items: center;
  align-content: start;
  padding: 10px;
  border: 1px solid rgba(31,166,106,.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(20,107,69,.08);
}
.qr-card img,
.telegram-qr img {
  width: 104px;
  height: 104px;
  object-fit: contain;
}
.telegram-qr img {
  width: 132px;
  height: 132px;
}
.qr-card figcaption,
.telegram-qr figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}
.telegram-qr {
  margin-top: 12px;
  justify-self: start;
}
.included-groups { display: grid; gap: 22px; }
.included-groups h3 { color: var(--forest-deep); font-size: 17px; margin-bottom: 10px; }
ul { margin: 0; padding-left: 20px; }
li + li { margin-top: 10px; }
li::marker { color: var(--terracotta); }

/* Ловушка для спам-ботов. Именно display:none, а не вынос за экран: уведённое
   за экран поле для браузера отрисовано, и автозаполнение его заполняет —
   16.07.2026 менеджер паролей клал сюда email живого человека, и заявка шла с
   пометкой "спам". display:none автозаполнение пропускает. В разметке поле
   стоит последним по той же причине: в первое текстовое поле формы менеджеры
   паролей суют логин. */
.hp-field { display: none; }

.partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 8px; }
.partner-card {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}
.partner-plaque {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 104px;
  padding: 18px 22px;
  border-radius: 8px;
  background: var(--forest-deep);
}
.partner-plaque img { max-height: 46px; width: auto; max-width: 100%; object-fit: contain; }
/* Логотипы на белой подложке (не прозрачные) — светлая плашка, иначе белый квадрат
   на тёмном. Круглая эмблема выше горизонтального леттеринга, отсюда max-height. */
.partner-plaque.is-light { background: var(--white); border: 1px solid var(--line); }
.partner-plaque.is-light img { max-height: 84px; }
.partner-wordmark { display: none; }
.partner-plaque.is-wordmark .partner-wordmark {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .02em;
  text-align: center;
}
/* Фолбэк на светлой плашке: белым по белому его не было бы видно. */
.partner-plaque.is-light .partner-wordmark { color: var(--heading); }
.partner-country {
  margin-bottom: 0;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.partner-card h3 { margin-bottom: 0; font-size: 17px; line-height: 1.35; color: var(--heading); }
.partner-card a { color: var(--terracotta); font-weight: 750; }

.apply-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: start; }
.apply-copy p { color: var(--muted); }
.contact-box { display: grid; gap: 6px; padding: 22px; margin-top: 24px; }
.contact-box a { color: var(--terracotta); font-weight: 750; }
.apply-form { display: grid; gap: 16px; padding: 28px; }
label { display: grid; gap: 7px; color: var(--ink); font-weight: 750; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  min-height: 48px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #ffffff;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(255,211,77,.34); border-color: var(--amber); }
input::placeholder, textarea::placeholder { color: var(--muted-2); }
.form-note { margin: 0; color: var(--muted); font-size: 14px; }
.legal { color: var(--muted-2); font-size: 14px; line-height: 1.6; padding: 90px 0; }
.site-footer { border-top: 1px solid var(--line); padding: 30px 0; background: #ffffff; }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-brand img { width: 118px; height: auto; filter: none; opacity: .9; }
.footer-inner a { color: var(--terracotta); font-weight: 800; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .intro-grid, .section-heading.split, .apply-grid, .certificate-layout, .venue-grid, .method-layout, .prep-card { grid-template-columns: 1fr; }
  .cert-card-grid { grid-template-columns: 1fr; }
  .bridge-certificate-proof { grid-template-columns: 1fr; }
  .stat-grid, .module-grid { grid-template-columns: repeat(2, 1fr); }
  .port-module { grid-column: span 2; grid-template-columns: 1fr; }
  .timeline, .outcome-grid, .expert-grid, .day-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .day-card.wide { grid-column: span 2; }
  .hero { min-height: 88vh; }
  .hero-facts { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { height: 66px; padding: 0 14px; }
  .brand-logo { width: 124px; }
  .nav-cta { padding: 9px 12px; }
  .hero { padding: 106px 14px 38px; min-height: 90vh; }
  .hero-overlay { background: linear-gradient(180deg, rgba(20,88,48,0.68), rgba(31,166,86,0.66)); }
  .hero-actions, .hero-actions .button { width: 100%; }
  .intro, .program, .experts, .apply, .audience, .outcomes, .certificates, .day-program, .venue, .prep-training, .main-result, .partners { padding: 60px 0; }
  .timeline, .outcome-grid, .expert-grid, .stat-grid, .module-grid, .day-detail-grid, .partner-grid { grid-template-columns: 1fr; }
  .port-module { grid-column: span 1; grid-template-columns: 1fr; }
  .day-card.wide { grid-column: span 1; }
  .day-card { min-height: 0; }
  .footer-inner { flex-direction: column; }
}