:root {
  --green-dark: #1e2f22;
  --green-accent: #466d4a;
  --green-light: #e6efe7;
  --green-chat: #c5d1b1;
  --border: #f1f0ef;
  --border-card: #dedddc;
  --text: #222;
  --text-muted: #6f6e6e;
  --text-soft: #666;
  --text-nav: #919191;
  --text-heading: #040a16;
  --white: #fff;
  --black: #000;
  --footer-bg: #f1f0ef;
  --cta-sub: rgba(230, 239, 231, 0.6);

  --font-sans: "Inter Tight", system-ui, sans-serif;
  --font-accent: "LeoHand", cursive;

  --radius-sm: 10px;
  --radius-md: 15px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-pill: 100px;

  --container: 1470px;
  --gutter: clamp(16px, 4.44vw, 65px);
  --section-pad: clamp(96px, 9vw, 120px);
  --block-gap: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.accent {
  font-family: var(--font-accent);
  font-weight: 300;
}

/* Section titles */
.section-title {
  margin: 0;
  text-align: center;
  letter-spacing: -0.01em;
}

.section-title__main {
  display: block;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.1;
  font-weight: 500;
}

.section-title__accent {
  display: block;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1;
}

.section-title--inline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.15em 0.35em;
}

.section-title--inline .section-title__main,
.section-title--inline .section-title__accent {
  display: inline;
}

/* Header */
.header {
  position: fixed;
  top: var(--gutter);
  left: var(--gutter);
  right: var(--gutter);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  min-height: 73px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 24px;
  font-weight: 400;
  flex-shrink: 0;
}

.header__logo img {
  width: 20px;
  height: 20px;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

.header__nav a {
  color: var(--white);
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}

.header__nav a:hover { opacity: 0.85; }

.header__nav-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-size: 15px;
}

.header__cta {
  padding: 12px 20px;
  background: var(--white);
  color: var(--black);
  border-radius: 50px;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
  flex-shrink: 0;
}

.header__burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  margin-left: auto;
}

.header__burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  margin: 0 var(--gutter);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  overflow: hidden;
  --hero-side-inset: clamp(24px, 4vw, 74px);
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, transparent 0%, rgba(0, 0, 0, 0.28) 60%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero__overlay > * { pointer-events: auto; }

.hero__social {
  position: absolute;
  left: var(--hero-side-inset);
  top: calc(50% - 36px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.hero__social-link {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero__social-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.hero__social-link img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.hero__scroll {
  position: absolute;
  left: calc(var(--hero-side-inset) + 22px);
  bottom: clamp(64px, 10vh, 120px);
  transform: translateX(-50%);
  color: var(--white);
  text-decoration: none;
}

.hero__scroll-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__scroll-label {
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  white-space: nowrap;
}

.hero__scroll-ring {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.2);
}

.hero__scroll-icon {
  transform: rotate(180deg);
}

.hero__content {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  bottom: clamp(64px, 10vh, 120px);
  max-width: min(780px, 88%);
  color: var(--white);
  text-align: left;
}

.hero__title {
  margin: 0 0 4px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero__title-line {
  display: block;
  font-size: clamp(42px, 7.5vw, 100px);
  line-height: 1.05;
}

.hero__title-line .accent {
  font-size: clamp(50px, 8vw, 108px);
  display: inline;
}

.hero__link {
  display: inline-block;
  margin-top: 0;
  font-size: clamp(16px, 2vw, 20px);
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* Topics */
.topics {
  padding: var(--section-pad) 0;
}

.topics__panel {
  margin: var(--block-gap) auto 0;
  display: grid;
  grid-template-columns: minmax(200px, 220px) 1.1fr 1fr 1fr;
  gap: 0;
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  min-height: 420px;
}

.topics__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 16px;
}

.topics__tab {
  text-align: left;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: background 0.2s;
}

.topics__tab.is-active { background: var(--white); }

.topics__switch { display: none; }

.topics__detail {
  background: #d4e4d6;
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}

.topics__detail-label {
  margin: 0;
  font-size: 20px;
  color: rgba(34, 34, 34, 0.5);
}

.topics__detail-text {
  margin: auto 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--text);
}

.topics__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
}

.topics__photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.topics__stat {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 360px;
}

.topics__stat-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--black);
}

.topics__stat-arrow img {
  width: 30px;
  height: 30px;
  flex: none;
  transform: rotate(270deg);
}

.topics__stat-num {
  margin: 0;
  font-size: clamp(56px, 8vw, 80px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.topics__stat-desc {
  margin: 16px 0 0;
  font-size: 18px;
}

.topics__cards {
  margin-top: var(--block-gap);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.topic-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  padding: 28px 30px;
  border: none;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 4px 28px rgba(14, 30, 37, 0.07);
}

.topic-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topic-card__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.topic-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.topic-card__text {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* Roles */
.roles {
  padding: calc(var(--section-pad) / 2) 0 var(--section-pad);
  overflow: hidden;
}

.roles__brand {
  display: block;
  margin: 0 auto 20px;
}

.roles .section-title--stack {
  margin-bottom: 0;
}

.roles .section-title--stack .section-title__main,
.roles .section-title--stack .section-title__accent {
  line-height: 1.08;
}

.roles__grid {
  margin-top: var(--block-gap);
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(200px, 240px) 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.roles__grid > * {
  min-width: 0;
}

.roles__heading {
  margin: 0 0 24px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.roles__stat-big {
  margin: 0 0 12px;
  font-size: clamp(48px, 6vw, 60px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.roles__stat-desc {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 220px;
}

.roles__feature {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.roles__feature:first-child { border-top: none; padding-top: 0; }

.roles__feature-icon {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  object-fit: contain;
}

.roles__feature h4 {
  margin: 0 0 8px;
  font-size: 18px;
}

.roles__feature p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.roles__gallery {
  display: flex;
  gap: 24px;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.roles__gallery img {
  flex: 0 0 min(380px, 70vw);
  height: clamp(400px, 50vh, 563px);
  object-fit: cover;
  border-radius: var(--radius-xl);
  scroll-snap-align: start;
}

.roles__tagline {
  margin: 56px 0 0;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-dark);
}

/* Changes */
.changes { padding: var(--section-pad) 0; }

.changes__grid {
  margin-top: var(--block-gap);
  display: grid;
  grid-template-columns: 1fr minmax(280px, 416px) 1fr;
  gap: clamp(32px, 5vw, 83px);
  align-items: end;
  max-width: 1249.5px;
  margin-left: auto;
  margin-right: auto;
}

.changes__before {
  grid-column: 1;
  justify-self: end;
  width: min(250px, 100%);
  text-align: left;
  align-self: end;
}

.changes__before img {
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 250 / 275;
  object-fit: cover;
}

.changes__before p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}

.changes__center {
  grid-column: 2;
  justify-self: center;
  width: 100%;
  max-width: 416px;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  align-self: end;
}

.changes__center img {
  width: 100%;
  aspect-ratio: 416 / 458;
  object-fit: cover;
}

.changes__pill {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(358px, calc(100% - 32px));
  min-height: 59px;
  height: auto;
  padding: 12px 20px;
  background: var(--white);
  border-radius: var(--radius-pill);
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 2px 2px rgba(14, 30, 37, 0.12), 0 2px 5px rgba(14, 30, 37, 0.32);
  box-sizing: border-box;
}

.changes__pill span {
  flex: 1 1 auto;
  min-width: 0;
}

.changes__pill-icon {
  display: block;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px;
  max-width: 24px;
  flex: 0 0 24px;
  object-fit: contain;
}

.changes__steps {
  grid-column: 3;
  justify-self: start;
  width: min(250px, 100%);
  display: flex;
  flex-direction: column;
  align-self: end;
}

.changes__step {
  padding: 28px 0;
  text-align: left;
  border-top: 1px solid var(--border);
}

.changes__step:first-child { border-top: none; }

.changes__step h4 {
  margin: 0 0 8px;
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.changes__step p {
  margin: 0;
  font-size: 20px;
  color: var(--text-muted);
}

/* Formats */
.formats { padding: var(--section-pad) 0; }

.formats__block {
  background: var(--green-dark);
  border-radius: var(--radius-xl);
  overflow: visible;
}

.formats__head {
  position: relative;
  padding: clamp(32px, 8vw, 56px) clamp(20px, 6vw, 50px) 24px;
  overflow: visible;
}

.formats__title {
  margin: 0;
  color: var(--white);
  max-width: 560px;
}

.formats__title span:first-child {
  display: block;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.1;
  font-weight: 500;
}

.formats__title .accent {
  display: block;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1;
}

.decor-badge {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  display: block;
  flex: none;
  object-fit: contain;
  width: 120px;
  height: 120px;
  max-width: 180px;
  max-height: 180px;
}

.formats__badge {
  top: -90px;
  right: 40px;
  left: auto;
  width: 180px !important;
  height: 180px !important;
  min-width: 180px;
  max-width: 180px;
  min-height: 180px;
  max-height: 180px;
}

.formats__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 0 clamp(20px, 6vw, 50px) 24px;
}

.format-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 16px 28px;
  text-align: center;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.format-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(14, 30, 37, 0.1);
}

.format-card h4 {
  margin: 16px 0;
  font-size: 20px;
}

.format-card__arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f2f2f2;
  display: grid;
  place-items: center;
  color: var(--text-soft);
}

.formats__footer-bar {
  padding: 24px clamp(20px, 6vw, 50px) 32px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
}

.formats__footer-bar a {
  color: var(--white);
  text-decoration: underline;
}

.formats__faq {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.formats__faq-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(28px, 2.5vw, 47px) 22px 0;
  font-size: 24px;
  color: var(--green-dark);
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.formats__faq-item:hover {
  color: var(--green-accent);
}

.formats__faq-chevron {
  color: var(--green-accent);
  font-size: 28px;
  line-height: 1;
}

.formats__faq-col .formats__faq-item:last-child {
  border-bottom: none;
}

/* Process */
.process { padding: var(--section-pad) 0; }

.process__wrap {
  margin-top: var(--block-gap);
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--white), var(--green-light));
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.process-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px 32px;
}

.process-card__num {
  margin: 0 0 18px;
  font-size: 40px;
  font-weight: 700;
  color: var(--green-accent);
  line-height: 40px;
}

.process-card h4 {
  margin: 0 0 12px;
  font-size: 18px;
}

.process-card p {
  margin: 0;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Reviews */
.reviews { padding: var(--section-pad) 0; }

.reviews__layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 0;
}

.reviews__feature {
  position: relative;
  background: var(--green-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.reviews__screenshot {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  position: relative;
  z-index: 1;
}

.reviews__badge {
  display: none;
  position: absolute;
  z-index: 3;
  pointer-events: none;
  width: 120px !important;
  height: 120px !important;
  min-width: 120px;
  max-width: 120px;
  min-height: 120px;
  max-height: 120px;
}

.reviews__title {
  margin: 0;
  padding: 24px 32px 32px;
  color: var(--white);
  background: transparent;
  position: relative;
  z-index: 2;
}

.reviews__title span:first-child {
  display: block;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.05;
  font-weight: 500;
}

.reviews__title .accent {
  display: block;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.95;
  margin-top: -0.08em;
}

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

.review-item__head {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
}

.review-item__toggle {
  width: 43px;
  height: 43px;
  border-radius: 0;
  background: transparent;
  display: block;
  flex-shrink: 0;
  padding: 0;
}

.review-item__toggle img {
  width: 43px;
  height: 43px;
  display: block;
  object-fit: contain;
}

.review-item.is-open .review-item__toggle {
  background: transparent;
}

.review-item__meta {
  flex: 1;
  min-width: 0;
}

.review-item__tag {
  display: block;
  font-size: 18px;
  color: var(--green-accent);
  margin-bottom: 8px;
}

.review-item__title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}

.review-item__body {
  padding: 0 0 24px 59px;
}

.review-item__body p {
  margin: 0;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.review-item__body[hidden] {
  display: none;
}

/* Mission */
.mission { padding: var(--section-pad) 0; }

.mission__layout {
  margin-top: var(--block-gap);
  display: grid;
  grid-template-columns: minmax(120px, 195px) 1fr minmax(120px, 195px);
  gap: clamp(16px, 4vw, 48px);
  align-items: start;
}

.mission__photo {
  border-radius: var(--radius-md);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
}

.mission__photo--left {
  align-self: start;
  margin-top: -36px;
}

.mission__photo--right {
  align-self: end;
}

.mission__center { text-align: center; }

.mission__text {
  margin: 0 auto 24px;
  max-width: 720px;
  font-size: clamp(18px, 2.5vw, 20px);
  line-height: 1.8;
  color: var(--green-dark);
}

.mission__label {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mission__signature {
  margin: 28px auto 0;
  max-width: 246px;
}

/* CTA */
.cta { padding: var(--section-pad) 0; }

.cta__box {
  background: var(--green-dark);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 64px) clamp(24px, 6vw, 64px);
  text-align: center;
  color: var(--white);
}

.cta__title span:first-child {
  display: block;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.15;
  font-weight: 500;
}

.cta__title .accent {
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1.1;
}

.cta__desc {
  max-width: 640px;
  margin: 20px auto 32px;
  color: var(--cta-sub);
  font-size: 16px;
  line-height: 1.55;
}

.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-size: 18px;
}

.btn--dark { background: var(--black); color: var(--white); }
.btn--light { background: var(--white); color: var(--black); }

/* Blog */
.blog { padding: var(--section-pad) 0; overflow: hidden; }

.blog__track-wrap {
  margin-top: var(--block-gap);
  overflow: hidden;
}

.blog__track {
  display: flex;
  gap: 30px;
}

.blog-card {
  flex: 0 0 min(397px, 88vw);
  display: block;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  color: inherit;
  text-decoration: none;
}

.blog-card__img {
  position: relative;
  margin: 15px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
}

.blog-card__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__date {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--white);
  text-align: right;
  font-size: 11px;
  line-height: 1.2;
}

.blog-card__date strong {
  display: block;
  font-size: 24px;
  font-weight: 500;
}

.blog-card__by {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f1f1f1;
  font-size: 14px;
  font-weight: 400;
}

.blog-card__by img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-card__tag {
  margin: 0 15px 8px;
  font-size: 14px;
  color: var(--green-accent);
}

.blog-card h3 {
  margin: 0 15px 24px;
  font-size: 23px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.blog__nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.blog__nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-size: 22px;
}

/* Charity */
.charity {
  padding: 0 0 var(--section-pad);
  overflow: visible;
}

.charity .container {
  overflow: visible;
}

.charity__box {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  background: var(--green-dark);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 40px) clamp(28px, 5vw, 56px) 0;
  color: var(--white);
  overflow: visible;
}

.charity__media {
  flex: none;
  align-self: flex-end;
  margin: 0;
  line-height: 0;
}

.charity__media img {
  display: block;
  height: clamp(170px, 20vw, 240px);
  width: auto;
  object-fit: contain;
  object-position: bottom center;
}

.charity__content {
  flex: 1;
  max-width: 820px;
  padding-bottom: clamp(28px, 4vw, 40px);
}

.charity__title {
  margin: 0 0 clamp(16px, 2vw, 24px);
  text-align: left;
  color: var(--white);
}

.charity__title .section-title__main {
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.1;
  font-weight: 500;
  color: var(--white);
}

.charity__title .section-title__accent {
  font-size: clamp(34px, 3.8vw, 55px);
  line-height: 1;
  color: var(--white);
}

.charity__desc {
  margin: 0;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
  color: var(--white);
}

.charity__desc a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.charity__desc a:hover {
  opacity: 0.85;
}

/* Footer */
.footer {
  padding: var(--gutter);
  padding-bottom: 0;
  margin-bottom: 0;
}

.footer {
  background: var(--white);
}

.footer__shell {
  background: var(--footer-bg);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
}

.footer__cta-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 50px);
}

.footer__title span:first-child {
  display: block;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.1;
  font-weight: 500;
  color: var(--black);
}

.footer__title .accent {
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.footer__pill-btn {
  padding: 14px 40px;
  background: var(--white);
  border-radius: var(--radius-pill);
  font-size: 20px;
  color: var(--black);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 0 clamp(24px, 5vw, 50px) 40px;
}

.footer__col h4 {
  margin: 0 0 20px;
  font-size: 18px;
  color: var(--text-heading);
}

.footer__col a {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-nav);
}

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

.footer__contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__contact-icon {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: var(--text-soft);
  flex-shrink: 0;
}

.footer__copy {
  margin: 0;
  padding: 28px 50px 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 14px;
}

/* FAB */
.fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

.fab.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
  .topics__panel {
    grid-template-columns: 200px 1fr 1fr;
  }
  .topics__stat { grid-column: 2 / -1; }

  .roles__grid {
    grid-template-columns: 1fr 1fr;
  }
  .roles__gallery {
    grid-column: 1 / -1;
  }

  .formats__cards { grid-template-columns: repeat(3, 1fr); }

  .changes__grid {
    grid-template-columns: 1fr 1.2fr;
  }
  .changes__steps {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .changes__step {
    flex: 1 1 180px;
    border-top: none;
    border-left: 1px solid var(--border);
  }
  .changes__step:first-child { border-left: none; }
}

@media (max-width: 992px) {
  :root {
    --section-pad: clamp(56px, 8vw, 80px);
    --block-gap: 40px;
  }

  .header {
    flex-wrap: wrap;
    min-height: auto;
    padding: 16px 20px;
  }

  .header__nav,
  .header__cta { display: none; }

  .header__burger { display: flex; }

  .header.is-open .header__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    order: 4;
    margin: 12px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    justify-self: stretch;
  }

  .header.is-open .header__cta {
    display: inline-flex;
    order: 5;
    margin-top: 8px;
    justify-self: start;
  }

  .topics__panel { grid-template-columns: 1fr; padding: 16px; gap: 12px; }
  .topics__nav { display: none; }
  .topics__switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--white);
    border-radius: var(--radius-md, 16px);
    padding: 8px 8px 8px 20px;
  }
  .topics__switch-name {
    flex: 1;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text, #222);
  }
  .topics__arrow {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--black, #111);
    color: var(--white, #fff);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
  }
  .topics__arrow:active { transform: scale(0.92); }
  .topics__detail-label { display: none; }
  .topics__detail,
  .topics__photo,
  .topics__stat { grid-column: auto; }

  .formats__badge { display: none; }

  .roles__grid { grid-template-columns: 1fr; }
  .formats__cards { grid-template-columns: repeat(2, 1fr); }
  .formats__faq { display: none; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .reviews__layout { grid-template-columns: 1fr; }
  .mission__layout { grid-template-columns: 1fr; }
  .mission__photo { display: none; }
  .footer__links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 52px;
    --block-gap: 28px;
    --gutter: 16px;
  }

  .hero__content { left: 20px; right: 20px; }
  .hero__bg img { object-position: 38% center; }
  .hero__scroll { display: none; }
  .hero__social { left: 20px; gap: 10px; }
  .hero__social-link { width: 44px; height: 44px; border-radius: 50%; }
  .hero__title-line { font-size: clamp(32px, 10vw, 42px); }
  .hero__title-line .accent { font-size: clamp(38px, 11vw, 50px); }

  /* Section titles — smaller floor so headings don't dominate a phone screen */
  .section-title__main,
  .formats__title span:first-child,
  .reviews__title span:first-child,
  .cta__title span:first-child {
    font-size: clamp(24px, 7.5vw, 36px);
  }
  .section-title__accent,
  .formats__title .accent,
  .reviews__title .accent,
  .cta__title .accent {
    font-size: clamp(30px, 8.5vw, 44px);
  }
  .footer__title span:first-child { font-size: clamp(28px, 8.5vw, 40px); }
  .footer__title .accent { font-size: clamp(34px, 9.5vw, 46px); }

  /* Topics */
  .topics__panel { padding: 12px; gap: 10px; }
  .topics__nav { gap: 8px; padding-bottom: 4px; }
  .topics__tab { padding: 10px 16px; font-size: 14px; }
  .topics__detail { padding: 20px; min-height: auto; gap: 16px; }
  .topics__detail-label { font-size: 15px; }
  .topics__detail-text { font-size: 15px; margin-top: 0; }
  .topics__photo { min-height: 0; aspect-ratio: 4 / 3; }
  .topics__photo img { min-height: 0; height: 100%; }
  .topics__stat { padding: 22px 20px; min-height: auto; }
  .topics__stat-arrow { top: 20px; right: 20px; }
  .topics__stat-num { font-size: clamp(44px, 14vw, 60px); }
  .topics__stat-desc { font-size: 14px; margin-top: 10px; }
  .topics__cards { grid-template-columns: 1fr; margin-top: 28px; gap: 14px; }
  .topic-card { padding: 20px 22px; }
  .topic-card__icon { width: 32px; height: 32px; flex-basis: 32px; }
  .topic-card__title { font-size: 16px; }
  .topic-card__text { font-size: 13px; }

  /* Roles — drop the “Работаю с разными сферами” heading; keep three equal cards */
  .roles__brand { width: 140px; height: auto; margin-bottom: 12px; }
  .roles__grid { margin-top: 28px; gap: 12px; }
  .roles__heading { display: none; }
  .roles__col-text {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 16px;
    padding: 18px 20px;
    background: var(--green-light, #e6efe7);
    border-radius: 18px;
  }
  .roles__stat-big { grid-column: 1; align-self: center; margin: 0; font-size: clamp(40px, 12vw, 52px); line-height: 0.9; }
  .roles__stat-desc { grid-column: 2; align-self: center; margin: 0; font-size: 13px; line-height: 1.45; max-width: none; color: var(--text-soft); }
  .roles__col-features { display: grid; gap: 12px; }
  .roles__feature {
    padding: 16px 18px;
    border-top: none;
    background: var(--green-light, #e6efe7);
    border-radius: 18px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    row-gap: 5px;
    align-items: start;
  }
  .roles__feature:first-child { padding-top: 16px; }
  .roles__feature-icon { grid-row: 1 / span 2; width: 30px; height: 30px; margin: 2px 0 0; }
  .roles__feature h4 { grid-column: 2; margin: 0; font-size: 16px; }
  .roles__feature p { grid-column: 2; margin: 0; font-size: 12.5px; line-height: 1.45; color: var(--text-soft); }
  .roles__gallery img { flex-basis: min(280px, 72vw); height: clamp(260px, 62vw, 340px); }
  .roles__tagline { font-size: 12px; letter-spacing: 0.12em; margin-top: 28px; }

  /* Changes */
  .changes__before,
  .changes__center,
  .changes__steps {
    grid-column: 1 / -1;
    justify-self: center;
    align-self: auto;
    width: 100%;
    max-width: 300px;
  }
  .changes__before p { font-size: 13px; margin-top: 12px; }
  .changes__pill {
    width: calc(100% - 20px);
    min-height: auto;
    padding: 12px 18px;
    gap: 12px;
    font-size: 12.5px;
    line-height: 1.25;
  }
  .changes__pill-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    max-width: 18px;
    flex: 0 0 18px;
  }
  .changes__steps { flex-direction: column; max-width: 300px; }
  .changes__step { flex: 0 0 auto; border-left: none; border-top: 1px solid var(--border); padding: 14px 0; }
  .changes__step:first-child { border-top: none; padding-top: 0; }
  .changes__step:last-child { padding-bottom: 0; }
  .changes__step h4 { font-size: clamp(22px, 6.5vw, 26px); margin-bottom: 4px; }
  .changes__step p { font-size: 13px; line-height: 1.4; }

  /* Formats — the card grid duplicates the compact FAQ list below it, so drop it on phones */
  .formats__cards { display: none; }
  .formats__head { padding: 28px 20px 20px; }
  .formats__footer-bar { padding: 20px 20px 28px; font-size: 13px; text-align: left; }
  .formats__faq { display: grid; grid-template-columns: 1fr; margin-top: 8px; }
  .formats__faq-item { font-size: 16px; padding: 16px 20px; }
  .formats__faq-col .formats__faq-item:last-child { border-bottom: 1px solid var(--border); }
  .formats__faq-col:last-child .formats__faq-item:last-child { border-bottom: none; }
  .formats__faq-chevron { font-size: 20px; }

  .process__wrap { padding: 16px; }
  .process__grid { grid-template-columns: 1fr; gap: 12px; }
  .process-card { padding: 20px 22px; }
  .process-card__num { font-size: 32px; line-height: 1; margin-bottom: 10px; }

  .reviews__title { padding: 20px 20px 24px; }
  .review-item__head { gap: 12px; padding: 16px 0; }
  .review-item__body { padding-left: 55px; padding-bottom: 20px; }

  /* Mission — extra air after reviews + reintroduce the two photos at a small size */
  .mission { padding-top: calc(var(--section-pad) + 22px); }
  .mission__layout {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "l r" "c c";
    gap: 12px;
    align-items: stretch;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .mission__photo {
    display: block;
    width: 100%;
    margin: 0;
    aspect-ratio: 3 / 4;
    max-height: 178px;
  }
  .mission__photo--left { grid-area: l; margin-top: 0; align-self: stretch; }
  .mission__photo--right { grid-area: r; align-self: stretch; }
  .mission__center { grid-area: c; margin-top: 24px; }
  .mission__text { font-size: 16px; line-height: 1.7; margin-bottom: 18px; }
  .mission__signature { margin-top: 20px; max-width: 200px; }

  .blog__track { gap: 16px; }
  .blog-card__img { height: 300px; }
  .blog-card h3 { font-size: 19px; margin-bottom: 18px; }
  .blog__nav { margin-top: 20px; }

  .cta__buttons { flex-direction: column; align-items: stretch; }
  .charity__box {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 22px;
    padding: 30px 24px 0;
  }
  .charity__content { order: -1; padding-bottom: 0; max-width: none; }
  .charity__title { text-align: left; }
  .charity__desc { text-align: left; }
  .charity__media { order: 1; align-self: center; margin: 0; }
  .charity__media img { height: clamp(190px, 46vw, 240px); }

  /* Footer */
  .footer__cta-block { flex-direction: column; align-items: flex-start; padding: 32px 20px; gap: 16px; }
  .footer__pill-btn { font-size: 14px; padding: 12px 26px; }
  .footer__links { grid-template-columns: 1fr 1fr; gap: 28px 16px; padding: 0 20px 32px; }
  .footer__col { min-width: 0; }
  .footer__col h4 { font-size: 14px; margin-bottom: 10px; }
  .footer__col a { font-size: 13px; margin-bottom: 8px; overflow-wrap: break-word; }
  .footer__contact { font-size: 13px; }
  .footer__note { font-size: 13px; }
  .footer__copy { font-size: 11px; padding: 18px 20px 22px; }
}
