@font-face {
  font-family: "Roboto";
  src: url("/assets/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ep-green: #2ca449;
  --ep-green-dark: #23853b;
  --ep-green-soft: #edf7ef;
  --ep-ink: #313335;
  --ep-muted: #6f7376;
  --ep-page: #e5e6e6;
  --ep-line: #d8dad9;
  --ep-white: #ffffff;
  --ep-shadow: 0 8px 24px rgba(49, 51, 53, 0.08);
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ep-ink);
  background: var(--ep-page);
  font-family: "Roboto", sans-serif, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

[v-cloak] {
  display: none;
}

a {
  color: inherit;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  color: var(--ep-ink);
  background: var(--ep-white);
}

.site-toolbar {
  width: min(1180px, calc(100% - 40px));
  min-height: 68px;
  margin-inline: auto;
  padding: 0;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--ep-green);
  text-decoration: none;
  line-height: 1.05;
}

.wordmark-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex: 0 0 auto;
}

.wordmark-copy {
  display: flex;
  flex-direction: column;
}

.wordmark-copy > span {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.wordmark-copy small {
  margin-top: 5px;
  color: var(--ep-muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  gap: 2px;
  margin-left: 54px;
}

.desktop-nav .q-btn {
  color: var(--ep-ink);
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav .q-btn:hover {
  color: var(--ep-green);
}

.language-toggle {
  border: 1px solid var(--ep-green);
  border-radius: 2px;
  overflow: hidden;
}

.language-toggle .q-btn {
  min-width: 52px;
  min-height: 34px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
}

.hero-section {
  padding-top: 34px;
  padding-bottom: 28px;
}

.hero-card,
.feature-card,
.summary-card,
.process-card,
.region-card {
  border-color: var(--ep-line);
  border-radius: 4px;
  background: var(--ep-white);
}

.hero-card {
  box-shadow: var(--ep-shadow);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 56px;
  align-items: center;
  min-height: 560px;
  padding: 52px 56px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--ep-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-eyebrow::before {
  width: 26px;
  height: 3px;
  background: var(--ep-green);
  content: "";
}

.section-eyebrow--light {
  color: rgba(255, 255, 255, 0.76);
}

.section-eyebrow--light::before {
  background: var(--ep-white);
}

.hero-copy h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(42px, 5.1vw, 68px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.045em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ep-muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions .q-btn {
  min-height: 44px;
  padding-inline: 22px;
  border-radius: 2px;
  font-weight: 500;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 24px;
}

.hero-tags .q-chip {
  border-radius: 2px;
  background: var(--ep-white);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid #dce9df;
  border-radius: 4px;
  background: #fafcfb;
}

.hero-visual::before {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--ep-green);
  content: "";
  z-index: 1;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.summary-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 72px;
}

.summary-card {
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.summary-card:hover {
  transform: translateY(-3px);
  border-color: var(--ep-green);
  box-shadow: var(--ep-shadow);
}

.summary-card .q-card__section {
  padding: 24px;
}

.summary-number {
  color: var(--ep-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.summary-card h2 {
  margin: 14px 0 10px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
}

.summary-card p,
.process-card p,
.audience-card p {
  margin: 0;
  color: var(--ep-muted);
}

.features-section {
  padding: 76px 0 84px;
  background: var(--ep-white);
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header h2,
.audience-title h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.section-header > p {
  margin: 16px 0 0;
  color: var(--ep-muted);
  font-size: 17px;
}

.feature-list {
  display: grid;
  gap: 24px;
}

.feature-card {
  overflow: hidden;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
  align-items: stretch;
}

.hero-copy,
.feature-content,
.feature-image-wrap,
.summary-card,
.process-card,
.region-card {
  min-width: 0;
}

.feature-grid--reverse .feature-image-wrap {
  order: 2;
}

.feature-image-wrap {
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 24px;
  background: #f7faf8;
  border-right: 1px solid var(--ep-line);
}

.feature-grid--reverse .feature-image-wrap {
  border-right: 0;
  border-left: 1px solid var(--ep-line);
}

.feature-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}

.feature-content {
  padding: 42px 46px;
}

.feature-content > .q-chip {
  min-width: 42px;
  justify-content: center;
  border-radius: 2px;
  font-weight: 700;
}

.feature-content h3 {
  margin: 17px 0 26px;
  font-size: clamp(28px, 3vw, 39px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.brief-block + .brief-block {
  margin-top: 22px;
}

.brief-label {
  display: block;
  margin-bottom: 8px;
  color: var(--ep-green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brief-block p {
  margin: 0;
  color: var(--ep-muted);
  font-size: 16px;
}

.brief-block ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brief-block li {
  position: relative;
  padding-left: 22px;
}

.brief-block li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ep-green);
  content: "";
  transform: translateY(-50%);
}

.result-banner {
  margin-top: 26px;
  border-left: 4px solid var(--ep-green);
  border-radius: 2px;
  color: var(--ep-ink);
  background: var(--ep-green-soft);
  font-size: 15px;
}

.process-section {
  padding-top: 82px;
  padding-bottom: 82px;
}

.section-header--compact {
  max-width: 720px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-card {
  position: relative;
  overflow: visible;
}

.process-card:not(:last-child)::after {
  position: absolute;
  top: 31px;
  right: -10px;
  color: var(--ep-green);
  content: "→";
  font-size: 18px;
  font-weight: 700;
  z-index: 2;
}

.process-card .q-card__section {
  padding: 22px 20px;
}

.process-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--ep-white);
  background: var(--ep-green);
  font-size: 13px;
  font-weight: 700;
}

.process-card h3 {
  min-height: 50px;
  margin: 18px 0 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.process-card p {
  font-size: 14px;
}

.audience-section {
  padding: 74px 0;
  color: var(--ep-white);
  background: var(--ep-green);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.audience-title {
  padding: 22px 20px 22px 0;
}

.audience-card {
  border-radius: 4px;
  color: var(--ep-ink);
  background: var(--ep-white);
}

.audience-card .q-card__section {
  padding: 26px;
}

.audience-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 500;
}

.regions-section {
  padding-top: 82px;
  padding-bottom: 84px;
}

.section-header--regions {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
}

.section-header--regions > p {
  max-width: 420px;
  margin: 0 0 5px;
  text-align: right;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.region-link {
  text-decoration: none;
}

.region-card {
  height: 100%;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.region-link:hover .region-card,
.region-link:focus-visible .region-card {
  transform: translateY(-3px);
  border-color: var(--ep-green);
  box-shadow: var(--ep-shadow);
}

.region-link:focus-visible {
  outline: 3px solid rgba(44, 164, 73, 0.28);
  outline-offset: 3px;
}

.region-card .q-card__section {
  position: relative;
  min-height: 150px;
  padding: 22px;
}

.region-code {
  color: var(--ep-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.region-card h3 {
  max-width: calc(100% - 28px);
  margin: 24px 0 7px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.region-domain {
  color: var(--ep-muted);
  font-size: 13px;
}

.region-arrow {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--ep-green);
  font-size: 22px;
}

.site-footer {
  border-top: 1px solid var(--ep-line);
  color: var(--ep-muted);
  background: var(--ep-white);
}

.footer-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 27px;
  padding-bottom: 30px;
  font-size: 13px;
}

.ai-credit {
  color: var(--ep-ink);
  font-weight: 500;
  text-align: right;
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 34px;
    min-height: 500px;
    padding: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(39px, 5.5vw, 58px);
  }

  .feature-grid {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  }

  .feature-image-wrap {
    min-height: 450px;
  }

  .feature-content {
    padding: 34px;
  }

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

  .process-card:not(:last-child)::after {
    display: none;
  }

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

  .audience-title {
    grid-column: 1 / -1;
    padding-bottom: 10px;
  }
}

@media (max-width: 760px) {
  .section-shell,
  .site-toolbar {
    width: min(100% - 24px, 1180px);
  }

  .site-toolbar {
    min-height: 62px;
  }

  .wordmark {
    gap: 7px;
  }

  .wordmark-icon {
    width: 31px;
    height: 31px;
  }

  .wordmark-copy > span {
    font-size: 21px;
  }

  .wordmark-copy small {
    display: none;
  }

  .language-toggle .q-btn {
    min-width: 46px;
    padding-inline: 8px;
  }

  .hero-section {
    padding-top: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
    padding: 24px 18px 18px;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 8.8vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  html[lang="ru"] .hero-copy h1 {
    font-size: clamp(27px, 8vw, 34px);
    letter-spacing: -0.025em;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.52;
  }

  .section-eyebrow {
    gap: 8px;
    margin-bottom: 11px;
    font-size: 10px;
    letter-spacing: 0.085em;
  }

  .section-eyebrow::before {
    width: 20px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .hero-actions .q-btn {
    min-width: 0;
    min-height: 40px;
    padding-inline: 8px;
    font-size: 12px;
  }

  .hero-actions .q-btn__content {
    white-space: normal;
    line-height: 1.2;
  }

  .hero-tags {
    gap: 2px;
    margin-top: 16px;
  }

  .hero-tags .q-chip {
    min-height: 25px;
    margin: 2px;
    padding-inline: 8px;
    font-size: 11px;
  }

  .hero-visual {
    width: min(238px, 100%);
    margin-inline: auto;
  }

  .summary-section {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 54px;
  }

  .features-section,
  .process-section,
  .regions-section {
    padding-top: 58px;
    padding-bottom: 60px;
  }

  .feature-grid,
  .feature-grid--reverse {
    grid-template-columns: 1fr;
  }

  .feature-grid--reverse .feature-image-wrap {
    order: 0;
  }

  .feature-image-wrap,
  .feature-grid--reverse .feature-image-wrap {
    min-height: 0;
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--ep-line);
    border-left: 0;
  }

  .feature-image-wrap img {
    width: min(270px, 100%);
    max-height: 270px;
    margin-inline: auto;
  }

  .feature-content {
    padding: 24px 18px 22px;
  }

  .feature-content h3 {
    margin: 14px 0 18px;
    font-size: 25px;
    line-height: 1.16;
  }

  .brief-block p,
  .brief-block li,
  .result-banner {
    font-size: 14px;
  }

  .brief-block ul {
    gap: 6px;
  }

  .summary-card .q-card__section,
  .process-card .q-card__section,
  .audience-card .q-card__section {
    padding: 19px 18px;
  }

  .summary-card h2 {
    margin-top: 10px;
    font-size: 20px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-card h3 {
    min-height: 0;
  }

  .audience-section {
    padding: 56px 0;
  }

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

  .audience-title {
    grid-column: auto;
    padding: 0 0 12px;
  }

  .section-header--regions {
    display: block;
  }

  .section-header--regions > p {
    max-width: none;
    margin-top: 14px;
    text-align: left;
  }

  .region-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .region-card .q-card__section {
    min-height: 128px;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
