/* ===========================
   HARMIX — GLOBAL STYLES
   =========================== */

:root {
  --bg: #0e0c0a;
  --bg-card: #161410;
  --bg-section: #12100e;
  --accent: #c8813a;
  --accent-dark: #a3652b;
  --accent-light: #e09c55;
  --blue: #3d6e94;
  --text: #e2dbd0;
  --text-muted: #8a7f70;
  --text-dim: #5a5248;
  --border: #2a2520;
  --radius: 8px;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-light);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background-color: var(--bg-section);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: normal;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: #fff;
}

/* ===========================
   NAVIGATION
   =========================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(14, 12, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text);
  font-weight: normal;
  letter-spacing: -0.02em;
}

.nav__logo span {
  color: var(--accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__cta {
  padding: 9px 22px;
  font-size: 0.875rem;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(14, 12, 10, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 99;
}

.nav__mobile.open {
  display: block;
}

.nav__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.nav__mobile ul a {
  color: var(--text);
  font-size: 1rem;
}

/* ===========================
   HERO
   =========================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.28);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 12, 10, 0.85) 0%,
    rgba(14, 12, 10, 0.4) 60%,
    rgba(14, 12, 10, 0.7) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.hero__tag {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(200, 129, 58, 0.4);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: normal;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 22px;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(226, 219, 208, 0.8);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  animation: bounce 2s infinite;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-dark), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* ===========================
   FOR WHOM
   =========================== */

.forwhom__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.forwhom__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.forwhom__card:hover {
  border-color: rgba(200, 129, 58, 0.3);
}

.forwhom__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), transparent);
}

.forwhom__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(200, 129, 58, 0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.forwhom__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.forwhom__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===========================
   WHAT YOU'LL LEARN
   =========================== */

.learn {
  background: var(--bg-section);
}

.learn__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.learn__image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.learn__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.85);
}

.learn__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  pointer-events: none;
}

.learn__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.learn__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.learn__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 6px;
  background: rgba(200, 129, 58, 0.1);
  border: 1px solid rgba(200, 129, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.learn__icon svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.learn__item-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}

.learn__item-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   COURSE FORMAT
   =========================== */

.format__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.format__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.format__item:hover {
  border-color: rgba(200, 129, 58, 0.3);
  transform: translateY(-4px);
}

.format__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: normal;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.format__unit {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.format__label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===========================
   LESSON PATH
   =========================== */

.path {
  background: var(--bg-section);
}

.path__steps {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.path__steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), var(--border), transparent);
}

.path__step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 0 0 44px 0;
  position: relative;
}

.path__step:last-child {
  padding-bottom: 0;
}

.path__step-num {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.path__step-body {
  padding-top: 10px;
}

.path__step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 8px;
}

.path__step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ===========================
   TEACHER
   =========================== */

.teacher__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}

.teacher__photo {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.teacher__photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.9) saturate(0.8);
}

.teacher__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  pointer-events: none;
}

.teacher__name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: normal;
  color: var(--text);
  margin-bottom: 6px;
}

.teacher__role {
  font-size: 0.875rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.teacher__bio {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.teacher__facts {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 8px;
}

.teacher__fact-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent);
}

.teacher__fact-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 2px;
}

/* ===========================
   FAQ
   =========================== */

.faq {
  background: var(--bg-section);
}

.faq__list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  gap: 16px;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.faq__question:hover {
  color: var(--accent-light);
}

.faq__question.open {
  color: var(--accent);
}

.faq__arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s, color 0.3s;
}

.faq__question.open .faq__arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__answer-inner {
  padding-bottom: 20px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===========================
   FORM
   =========================== */

.leadform {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 56px;
  max-width: 700px;
  margin: 0 auto;
}

.leadform__header {
  text-align: center;
  margin-bottom: 40px;
}

.leadform__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: normal;
  color: var(--text);
  margin-bottom: 10px;
}

.leadform__sub {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form__input {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 0.95rem;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color 0.2s;
  width: 100%;
  outline: none;
}

.form__input::placeholder {
  color: var(--text-dim);
}

.form__input:focus {
  border-color: var(--accent-dark);
}

.form__input.error {
  border-color: #c44;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__select {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 0.95rem;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color 0.2s;
  width: 100%;
  outline: none;
  cursor: pointer;
  appearance: none;
}

.form__select:focus {
  border-color: var(--accent-dark);
}

.form__select option {
  background: var(--bg-card);
}

.form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 20px 0;
}

.form__consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form__consent-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form__consent-text a {
  color: var(--accent);
}

.form__submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

.form__error-msg {
  font-size: 0.78rem;
  color: #e05555;
  margin-top: 4px;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  background: var(--bg);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 12px;
}

.footer__brand span {
  color: var(--accent);
}

.footer__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 280px;
}

.footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--text);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--text-dim);
  white-space: nowrap;
}

/* ===========================
   COOKIE BANNER
   =========================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #1a1714;
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.55;
}

.cookie-banner__text a {
  color: var(--accent);
}

.cookie-banner__btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ===========================
   LEGAL PAGES
   =========================== */

.legal-page {
  padding: 100px 0 80px;
  min-height: 100vh;
}

.legal-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 40px;
  transition: color 0.2s;
}

.legal-page__back:hover {
  color: var(--accent);
}

.legal-page__back svg {
  width: 16px;
  height: 16px;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: normal;
  color: var(--text);
  margin-bottom: 8px;
}

.legal-page__date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-body h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: normal;
  color: var(--text);
  margin: 36px 0 14px;
}

.legal-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
  max-width: 760px;
}

.legal-body ul, .legal-body ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-body li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 8px;
  max-width: 760px;
}

.legal-body a {
  color: var(--accent);
}

.legal-company {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
  max-width: 480px;
}

.legal-company p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   SUCCESS PAGE
   =========================== */

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}

.success-page__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(200, 129, 58, 0.12);
  border: 2px solid rgba(200, 129, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.success-page__icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.success-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: normal;
  color: var(--text);
  margin-bottom: 14px;
}

.success-page p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .forwhom__grid {
    grid-template-columns: 1fr;
  }

  .learn__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .learn__image img {
    height: 280px;
  }

  .format__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .teacher__inner {
    grid-template-columns: 1fr;
  }

  .teacher__photo img {
    height: 360px;
    object-position: center top;
  }

  .leadform {
    padding: 32px 24px;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .section { padding: 60px 0; }
}

@media (max-width: 600px) {
  .format__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .teacher__facts {
    flex-wrap: wrap;
    gap: 20px;
  }

  .section { padding: 48px 0; }
  .section-title { font-size: 1.6rem; }

  .leadform {
    padding: 24px 16px;
  }
}
