:root {
  --orange: #ff7a1a;
  --orange-hover: #e96609;
  --orange-soft: #fff3e8;
  --text: #1f1f1f;
  --muted: #6b6b6b;
  --soft: #f7f7f7;
  --white: #ffffff;
  --green: #2ecc71;
  --line: #e9e9e9;
  --radius: 24px;
  --shadow: 0 18px 50px rgba(31, 31, 31, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
#form-section { scroll-margin-top: 80px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button { font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 88px 0; }
.section--soft { background: var(--soft); }
.section--orange-soft { background: var(--orange-soft); }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header p { margin: 0; color: var(--text); font-size: 21px; line-height: 1.25; font-weight: 800; }
.logo { display: inline-flex; align-items: center; gap: 12px; color: var(--text); text-decoration: none; }
.logo img { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; }
.logo span { max-width: 150px; font-size: 16px; line-height: 1.2; font-weight: 800; }
.button {
  position: relative;
  overflow: hidden;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border: 0;
  border-radius: 14px;
  color: white;
  background: var(--orange);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(255,122,26,.22);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.button--shine::after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -45%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transform: skewX(-18deg);
  animation: button-shine 5.5s ease-in-out infinite;
}
.button:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255,122,26,.28); }
.button:active { transform: scale(.99); }
.button svg { width: 20px; height: 20px; }
.button--small { min-height: 46px; padding: 0 18px; font-size: 15px; box-shadow: none; }

.hero { position: relative; overflow: hidden; padding: 72px 0 60px; background: linear-gradient(135deg, #fff 42%, #fffaf5 72%, #fff3e8 100%); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 56px; }
.hero-decor { position: absolute; z-index: 0; color: var(--orange); opacity: .055; pointer-events: none; animation: gentle-float 16s ease-in-out infinite alternate; }
.hero-decor svg { width: 100%; height: 100%; stroke-width: 1.15; }
.hero-decor--coffee { width: 120px; height: 120px; left: 2%; top: 18%; transform: rotate(-9deg); }
.hero-decor--wheat { width: 150px; height: 150px; right: 2%; bottom: 2%; animation-delay: -5s; transform: rotate(12deg); }
.hero-decor--bean { width: 76px; height: 76px; left: 48%; bottom: 5%; animation-delay: -9s; transform: rotate(18deg); }
.eyebrow { margin-bottom: 24px; color: var(--orange); font-size: 15px; line-height: 1.55; font-weight: 800; letter-spacing: .05em; }
.hero__date { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 24px; padding: 12px 16px; border: 1px solid #ffc99f; border-radius: 13px; color: var(--text); background: white; box-shadow: 0 8px 22px rgba(255,122,26,.1); font-size: 21px; line-height: 1.3; font-weight: 800; }
.hero__date svg { width: 23px; height: 23px; color: var(--orange); }
h1 {
  max-width: 760px;
  margin-bottom: 27px;
  font-size: clamp(45px, 3.9vw, 58px);
  line-height: 1.04;
  letter-spacing: -.05em;
  font-weight: 800;
}
.hero__title-intro,
.hero__title-main { display: block; }
.hero__title-intro { margin-bottom: 7px; color: var(--text); font-size: .58em; line-height: 1.18; letter-spacing: -.025em; }
.hero__offer { max-width: 730px; margin-bottom: 23px; font-size: 25px; line-height: 1.4; font-weight: 700; }
.hero__lead { max-width: 700px; margin-bottom: 18px; color: #353535; font-size: 21px; line-height: 1.48; font-weight: 600; }
.hero__text { max-width: 700px; margin-bottom: 27px; color: #4f4f4f; font-size: 20px; line-height: 1.52; }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.date { display: flex; align-items: center; gap: 11px; padding: 11px 15px; border: 1px solid #ffd3b2; border-radius: 12px; color: var(--text); background: var(--orange-soft); font-size: 18px; font-weight: 800; }
.date svg { color: var(--orange); }
.hero__visual { position: relative; padding-bottom: 88px; }
.hero__photo {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(145deg, #fff8f1, #ffead9);
  box-shadow: 0 26px 65px rgba(255, 122, 26, .12);
}
.hero__photo::before { content:""; position:absolute; width:78%; height:70%; left:11%; top:10%; border-radius:45%; background:rgba(255,122,26,.12); filter:blur(50px); }
.hero__photo::after { content:""; position:absolute; left:10%; right:10%; bottom:0; height:1px; background:#f4c49e; }
.hero__photo img {
  position: absolute;
  width: 100%;
  max-width: 560px;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
}
.gift-card {
  position: absolute;
  z-index: 4;
  left: -38px;
  right: 22px;
  bottom: 18px;
  display: flex;
  gap: 16px;
  padding: 21px 22px;
  border: 1px solid #f2dfce;
  border-radius: 18px;
  background: white;
  box-shadow: 0 20px 46px rgba(57,34,17,.13);
}
.gift-card > svg { flex: 0 0 auto; width: 31px; height: 31px; color: var(--orange); }
.gift-card strong { display: block; margin-bottom: 7px; font-size: 19px; line-height: 1.35; }
.gift-card p { margin: 0; color: #4f4f4f; font-size: 17px; line-height: 1.5; }
.section--decorated { position: relative; overflow: hidden; }
.section--decorated > .container { position: relative; z-index: 2; }
.section-decor { position: absolute; z-index: 0; width: 125px; height: 125px; color: var(--orange); opacity: .04; pointer-events: none; }
.section-decor svg { width: 100%; height: 100%; stroke-width: 1.05; }
.section-decor--left { left: -32px; top: 70px; transform: rotate(-12deg); }
.section-decor--right { right: -30px; bottom: 55px; transform: rotate(14deg); }

.section-heading { max-width: 900px; margin-bottom: 38px; }
.section-heading h2,
.speaker h2,
.mentoring h2,
.registration h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.12;
  letter-spacing: -.045em;
  font-weight: 800;
}
.accent-text { color: var(--orange); }
.error-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.number-card {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 24px rgba(31,31,31,.035);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.number-card:hover { transform: translateY(-5px); border-color: #ffc99f; box-shadow: 0 18px 38px rgba(31,31,31,.09); }
.number-card span { width: 42px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: var(--orange); background: var(--orange-soft); font-size: 17px; font-weight: 800; }
.number-card p { margin: 24px 0 0; font-size: 19px; line-height: 1.42; font-weight: 700; }
.notice {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  padding: 26px 30px;
  border-radius: var(--radius);
  color: white;
  background: var(--orange);
}
.notice svg { flex: 0 0 auto; width: 34px; height: 34px; }
.notice p { margin: 0; font-size: 20px; line-height: 1.45; font-weight: 700; }

.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.info-card {
  min-height: 245px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.info-card:hover { transform: translateY(-4px); border-color: #ffd1ad; box-shadow: var(--shadow); }
.info-card > svg { width: 44px; height: 44px; margin-bottom: 36px; padding: 10px; border-radius: 12px; color: var(--orange); background: var(--orange-soft); }
.info-card h3 { margin-bottom: 12px; font-size: 25px; line-height: 1.25; letter-spacing: -.02em; }
.info-card p { margin: 0; color: var(--muted); font-size: 18px; }
.info-card--wide { grid-column: 1 / -1; min-height: auto; display: flex; align-items: flex-start; gap: 22px; background: var(--soft); }
.info-card--wide > svg { flex: 0 0 auto; margin: 0; }
.section-action { margin-top: 34px; text-align: center; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card { padding: 31px; border: 1px solid rgba(255,122,26,.1); border-radius: var(--radius); background: white; box-shadow: 0 8px 24px rgba(88,49,17,.035); transition: transform .25s ease, box-shadow .25s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(88,49,17,.09); }
.feature-card > svg { width: 44px; height: 44px; margin-bottom: 28px; color: var(--orange); stroke-width: 1.7; }
.feature-card h3 { margin-bottom: 13px; font-size: 27px; line-height: 1.25; letter-spacing: -.025em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 18px; }

.program-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.program-card { padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: var(--soft); transition: transform .25s ease, box-shadow .25s ease; }
.program-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.program-card--accent { color: white; border-color: var(--orange); background: var(--orange); }
.program-card h3 { min-height: 82px; margin-bottom: 26px; padding-bottom: 24px; border-bottom: 1px solid #dedede; font-size: 30px; line-height: 1.25; letter-spacing: -.025em; }
.program-card h3 span { color: var(--orange); }
.program-card--accent h3 span { color: white; text-decoration: underline; text-decoration-color: rgba(255,255,255,.55); text-underline-offset: 5px; }
.program-card--accent h3 { border-color: rgba(255,255,255,.35); }
.program-card ul,
.achievements,
.speaker__topics ul,
.mentoring__list ul { margin: 0; padding: 0; list-style: none; }
.program-card li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; padding: 14px 0; font-size: 18px; line-height: 1.45; }
.program-card li svg { width: 21px; color: var(--orange); }
.program-card--accent li svg { color: white; }

.results-layout > .section-heading { max-width: 720px; }
.results-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.results-list article { display: grid; grid-template-columns: 30px 1fr; gap: 15px; padding: 22px; border: 1px solid #ededed; border-radius: 18px; background: white; transition: transform .25s ease, box-shadow .25s ease; }
.results-list article:hover { transform: translateY(-4px); box-shadow: 0 15px 32px rgba(31,31,31,.07); }
.results-list svg { width: 27px; height: 27px; color: var(--green); }
.results-list p { margin: 0; font-size: 18px; line-height: 1.5; font-weight: 600; }

.speaker { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 72px; }
.speaker__photo { overflow: hidden; border: 1px solid var(--line); border-radius: 32px; background: var(--soft); box-shadow: 0 14px 36px rgba(31,31,31,.07); }
.speaker__photo img { width: 100%; height: auto; object-fit: contain; }
.speaker__content .eyebrow { margin-bottom: 14px; }
.speaker__content h2 { margin-bottom: 36px; }
.achievements { display: grid; gap: 0; }
.achievements li { display: grid; grid-template-columns: 38px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); font-size: 18px; line-height: 1.5; }
.achievements svg { width: 25px; color: var(--orange); }
.speaker__topics { margin-top: 26px; padding: 30px; border: 1px solid #f1dcca; border-radius: 22px; background: var(--orange-soft); box-shadow: 0 12px 30px rgba(87,48,16,.055); }
.speaker__topics h3 { margin-bottom: 18px; font-size: 28px; line-height: 1.25; font-weight: 800; }
.speaker__topics li { display: grid; grid-template-columns: 24px 1fr; gap: 13px; align-items: start; padding: 15px 0; border-top: 1px solid rgba(255,122,26,.18); color: var(--text); font-size: 19px; line-height: 1.45; }
.speaker__topics li:first-child { border-top: 0; }
.speaker__topics li svg { width: 21px; height: 21px; margin-top: 3px; color: var(--orange); stroke-width: 2.4; }

.story { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.story__text { padding: 48px; border: 1px solid #f0dccb; border-radius: 30px; background: var(--orange-soft); box-shadow: 0 14px 36px rgba(74,42,17,.055); }
.story__badge { display: inline-flex; margin-bottom: 22px; padding: 8px 12px; border-radius: 999px; color: var(--orange-hover); background: white; font-size: 15px; line-height: 1.2; font-weight: 800; letter-spacing: .04em; }
.story__text h2 { margin-bottom: 30px; font-size: clamp(38px, 3.6vw, 48px); line-height: 1.13; letter-spacing: -.04em; }
.story__text p { margin-bottom: 16px; color: #4f4f4f; font-size: 19px; line-height: 1.52; }
.story__text .story__strong { margin: 28px 0 0; padding-top: 25px; border-top: 1px solid #efc8a7; color: var(--text); font-size: 20px; line-height: 1.5; font-weight: 700; }
.story > img { width: 100%; height: auto; align-self: center; object-fit: contain; border: 1px solid #eee1d6; border-radius: 30px; background: white; box-shadow: 0 14px 36px rgba(74,42,17,.08); }

.mentoring { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mentoring__intro, .mentoring__list { padding: 38px; border-radius: 28px; }
.mentoring__intro { background: var(--orange-soft); }
.mentoring__intro > svg { width: 48px; height: 48px; margin-bottom: 34px; color: var(--orange); }
.mentoring__intro p { margin: 0; font-size: 26px; line-height: 1.45; font-weight: 700; }
.mentoring__list { border: 1px solid var(--line); background: white; }
.mentoring__list h2 { margin-bottom: 28px; font-size: 36px; }
.mentoring__list li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); font-size: 18px; }
.mentoring__list svg { width: 21px; color: var(--green); }

.registration { padding: 58px 0; background: var(--orange-soft); }
.registration__card { display: grid; grid-template-columns: 1.08fr .92fr; gap: 54px; align-items: center; padding: 46px 50px; border: 1px solid #f2dfce; border-radius: 30px; background: white; box-shadow: var(--shadow); }
.registration h2 { margin-bottom: 20px; font-size: clamp(38px, 4vw, 52px); }
.registration__offer > p { margin: 0; color: #555; font-size: 18px; line-height: 1.55; }
.registration__details ul { margin: 0 0 26px; padding: 0; list-style: none; }
.registration__details li { display: grid; grid-template-columns: 22px 1fr; gap: 11px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 17px; line-height: 1.45; }
.registration__details li svg { width: 20px; color: var(--green); }
.registration__details .button { width: 100%; }

.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: .2s ease; }
.modal.is-open { visibility: visible; opacity: 1; }
.modal__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(31,31,31,.68); }
.modal__panel { position: relative; z-index: 2; width: min(640px, 100%); max-height: calc(100vh - 30px); overflow: auto; padding: 36px; border-radius: 26px; background: white; box-shadow: 0 30px 90px rgba(0,0,0,.25); }
.modal__close { position: absolute; right: 18px; top: 18px; width: 42px; height: 42px; display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--soft); }
.widget-container { min-height: 220px; padding-top: 18px; }

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 46px; }
  .hero__content { max-width: 850px; }
  .hero__visual { width: min(620px, 100%); margin-inline: auto; }
  .gift-card { left: 18px; right: 18px; }
  .error-grid { grid-template-columns: repeat(2, 1fr); }
  .speaker { grid-template-columns: 1fr; }
  .speaker__photo { width: min(680px, 100%); }
  .story { grid-template-columns: 1fr; }
  .story > img { max-height: none; }
}

@media (max-width: 768px) {
  body { font-size: 17px; }
  .container { width: min(100% - 36px, 1180px); }
  .section { padding: 68px 0; }
  .header p { display: none; }
  .hero { padding: 62px 0 44px; }
  h1 { font-size: clamp(40px, 7.6vw, 54px); }
  .hero__offer { font-size: 23px; }
  .hero__lead { font-size: 20px; }
  .hero__text { font-size: 19px; }
  .hero__photo { min-height: 600px; }
  .error-grid, .feature-grid, .program-grid, .results-list, .mentoring { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .info-card--wide { grid-column: 1; }
  .program-card h3 { min-height: auto; }
  .registration__card { grid-template-columns: 1fr; gap: 34px; padding: 40px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; line-height: 1.55; }
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 56px 0; }
  .header__inner { min-height: 66px; }
  .header__inner { gap: 8px; }
  .logo img { width: 40px; height: 40px; }
  .logo span { max-width: 105px; font-size: 15px; }
  .button { width: 100%; min-height: 56px; padding-inline: 18px; font-size: 16px; }
  .button--small { width: auto; min-height: 42px; padding-inline: 13px; font-size: 15px; }
  .hero { padding-top: 44px; }
  .eyebrow { font-size: 15px; }
  .hero__date { width: 100%; justify-content: center; font-size: 20px; text-align: center; }
  h1 { font-size: clamp(35px, 9.5vw, 43px); line-height: 1.05; }
  .hero__title-intro { font-size: .56em; }
  .hero__offer { font-size: 21px; line-height: 1.4; }
  .hero__lead { font-size: 19px; }
  .hero__text { font-size: 18px; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .date { font-size: 16px; }
  .hero__visual { padding-bottom: 0; }
  .hero__photo { min-height: auto; padding: 18px 18px 0; border-radius: 24px 24px 0 0; }
  .hero__photo img { position: relative; width: 100%; max-width: 440px; left: auto; bottom: auto; margin: 0 auto; transform: none; }
  .gift-card { position: relative; left: auto; right: auto; bottom: auto; margin-top: 0; padding: 19px; border-radius: 0 0 24px 24px; box-shadow: 0 14px 30px rgba(57,34,17,.1); }
  .gift-card strong { font-size: 18px; }
  .gift-card p { font-size: 16px; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .speaker h2, .registration h2 { font-size: 36px; }
  .error-grid { grid-template-columns: 1fr; }
  .number-card { min-height: 150px; padding: 24px; }
  .number-card p { font-size: 18px; }
  .notice { align-items: flex-start; padding: 22px; }
  .notice p { font-size: 18px; }
  .info-card { min-height: auto; padding: 25px; }
  .info-card > svg { margin-bottom: 32px; }
  .info-card h3 { font-size: 23px; }
  .info-card p, .feature-card p, .program-card li, .results-list p, .achievements li, .speaker__topics li, .mentoring__list li { font-size: 17px; }
  .info-card--wide { display: block; }
  .info-card--wide > svg { margin-bottom: 28px; }
  .feature-card { padding: 26px; }
  .feature-card h3 { font-size: 24px; }
  .program-card { padding: 27px; }
  .program-card h3 { font-size: 26px; }
  .results-list article { padding: 20px; }
  .speaker__photo { border-radius: 24px; }
  .story { gap: 14px; }
  .story__text { padding: 28px; border-radius: 24px; }
  .story__badge { font-size: 15px; }
  .story__text h2 { font-size: 33px; }
  .story__text p { font-size: 18px; }
  .story__text .story__strong { font-size: 19px; }
  .story > img { border-radius: 24px; }
  .mentoring__intro, .mentoring__list { padding: 28px; border-radius: 24px; }
  .mentoring__intro p { font-size: 21px; }
  .mentoring__list h2 { font-size: 31px; }
  .registration { padding: 46px 0; }
  .registration__card { padding: 28px; border-radius: 24px; }
  .registration__offer > p { font-size: 17px; }
  .registration__details li { font-size: 16px; }
  .modal { padding: 10px; }
  .modal__panel { padding: 28px 18px; border-radius: 22px; }
}

@media (max-width: 350px) {
  .container { width: min(100% - 22px, 1180px); }
  .header__inner { flex-wrap: wrap; gap: 8px; padding: 10px 0; }
  .header .logo { width: 100%; justify-content: center; }
  .header .logo span { max-width: none; font-size: 15px; }
  .header .button--small { width: 100%; font-size: 15px; }
  h1 { font-size: 34px; }
  .hero__date { font-size: 18px; }
  .section-heading h2, .speaker h2, .registration h2 { font-size: 33px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

@keyframes gentle-float {
  0% { translate: 0 0; }
  100% { translate: 0 -14px; }
}

.will-reveal { opacity: 0; transform: translateY(18px); }
.will-reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1); }
