:root {
  --green-950: #071f18;
  --green-900: #0b3327;
  --green-800: #0f3d2e;
  --green-700: #15533f;

  --mint-50: #f4fbf7;
  --mint-100: #e8f6ef;

  --gold: #c3a56f;
  --gold-dark: #a78952;

  --ink: #14231f;
  --muted: #65746f;
  --line: rgba(15, 61, 46, 0.13);

  --white: #ffffff;
  --cream: #fbfaf5;

  --shadow: 0 24px 70px rgba(7, 31, 24, 0.14);
  --soft: 0 14px 36px rgba(7, 31, 24, 0.09);

  --container: min(1180px, calc(100vw - 40px));
  --header: 92px;

  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

/* Base */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 4% 12%, rgba(216, 238, 227, 0.8), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--cream) 42%, var(--mint-50) 100%);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  color: var(--green-950);
  font-size: clamp(2.8rem, 4.7vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  color: var(--green-950);
  font-size: clamp(2.1rem, 4.6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.052em;
}

h3 {
  margin-bottom: 10px;
  color: var(--green-950);
  font-size: 1.22rem;
  line-height: 1.18;
}

h4 {
  margin-bottom: 12px;
  color: var(--green-950);
  font-size: 1rem;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  max-width: 720px;
  font-size: clamp(1.08rem, 1.7vw, 1.36rem);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 108px;
  display: grid;
  grid-template-columns: 370px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 0 36px;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 61, 46, 0.08);
  backdrop-filter: blur(18px);
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.brand__logo {
  display: block;
  width: 345px;
  height: auto;
  max-height: 96px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.brand__text {
  display: none;
}

.nav {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 1.6vw, 32px);
  min-width: 0;
}

.nav a:not(.button) {
  color: rgba(20, 35, 31, 0.72);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: 0.18s;
}

.nav a:hover,
.nav a.is-active {
  color: var(--green-800);
  border-color: var(--green-800);
}

.lang-switch {
  display: inline-flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  white-space: nowrap;
}

.lang-switch__btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
}

.lang-switch__btn.is-active {
  background: var(--green-800);
  color: #ffffff;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 13px;
  border: 0;
  border-radius: 14px;
  background: var(--green-800);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #ffffff;
  border-radius: 99px;
  transition: 0.18s;
}

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

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

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

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 14px 24px;
  font-weight: 850;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #ffffff;
  background: var(--green-800);
  box-shadow: 0 16px 34px rgba(15, 61, 46, 0.18);
}

.button--gold {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  box-shadow: 0 18px 38px rgba(15, 61, 46, 0.24);
}

.button--glass {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.button--nav {
  min-height: 44px;
  padding: 12px 18px;
  white-space: nowrap;
}

/* Layout */

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) 0;
}

.section--tight {
  padding-top: clamp(48px, 6vw, 80px);
}

.section--stats {
  padding-top: 0;
  padding-bottom: clamp(44px, 5vw, 72px);
}

.section--soft {
  width: 100%;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, rgba(232, 246, 239, 0.78), rgba(255, 255, 255, 0));
}

.page-hero {
  padding-top: clamp(64px, 8vw, 112px);
  padding-bottom: clamp(40px, 6vw, 74px);
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero .lead {
  max-width: 820px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

/* Hero */

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
  background: var(--green-950);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--green-950);
}

.hero__media img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 31, 24, 0.92) 0%,
      rgba(7, 31, 24, 0.78) 28%,
      rgba(7, 31, 24, 0.42) 50%,
      rgba(7, 31, 24, 0.10) 100%
    );
}

.hero__inner {
  width: min(1180px, calc(100vw - 40px));
  max-width: 1180px;
  margin-left: max(32px, calc((100vw - 1180px) / 2 - 90px));
  margin-right: auto;
  padding-top: clamp(55px, 6vw, 95px);
  padding-bottom: clamp(55px, 6vw, 95px);
}

.hero h1 {
  max-width: 590px;
  color: #ffffff;
  font-size: clamp(2.05rem, 3.25vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.hero .lead {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
  font-size: clamp(0.95rem, 1.12vw, 1.08rem);
}

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

.trust-line {
  display: inline-flex;
  max-width: 440px;
  margin-top: 20px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.hero__note {
  display: none;
}

/* Grids */

.services-grid,
.benefits-grid,
.team-grid,
.testimonial-grid,
.topic-grid,
.compare-grid,
.metrics-grid,
.process-row {
  display: grid;
  gap: 20px;
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.metrics-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.team-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.topic-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.process-row {
  grid-template-columns: repeat(5, 1fr);
}

/* Cards */

.service-card,
.benefit-card,
.testimonial-card,
.team-card,
.process-step,
.compare-card,
.metric-card,
.about-card,
.partner-mini,
.service-detail,
.topic-pill,
.contact-panel {
  border: 1px solid rgba(15, 61, 46, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft);
}

.service-card {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 6px;
  transition: 0.18s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(195, 165, 111, 0.55);
  box-shadow: 0 28px 70px rgba(7, 31, 24, 0.14);
}

.service-card__icon,
.benefit-card span,
.service-detail__head span,
.topic-pill .icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--green-700);
  background: var(--mint-100);
  border-radius: 18px;
  font-size: 1.45rem;
}

.service-card p {
  margin-bottom: 22px;
}

.card-link {
  margin-top: auto;
  color: var(--gold-dark);
  font-weight: 850;
}

.benefit-card,
.testimonial-card,
.compare-card,
.metric-card,
.process-step {
  padding: 30px;
  border-radius: 6px;
}

.benefit-card p,
.testimonial-card p,
.process-step p {
  margin-bottom: 0;
}

.benefit-card span {
  margin-bottom: 26px;
}

.testimonial-card span {
  display: block;
  height: 42px;
  color: var(--gold);
  font-size: 4rem;
  line-height: 0.8;
  font-family: Georgia, serif;
}

.testimonial-card strong {
  display: block;
  margin-top: 20px;
  color: var(--green-800);
}

.metric-card {
  min-height: 160px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(232, 246, 239, 0.58));
}

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-950);
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 0.95;
}

.metric-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--green-800);
  font-weight: 900;
}

.metric-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* About */

.about-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px;
  border-radius: 8px;
}

.about-card--large {
  grid-column: span 1;
}

.about-card img,
.team-card img,
.partner-mini img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
  background: var(--mint-100);
}

.about-card strong {
  display: block;
  color: var(--green-950);
  font-size: 1.5rem;
  line-height: 1.1;
}

.about-card span {
  display: block;
  margin: 6px 0 14px;
  color: var(--gold-dark);
  font-weight: 850;
}

/* Process */

.process-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green-700);
  font-weight: 900;
}

/* Compare and service details */

.compare-card ul,
.service-detail ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.compare-card li,
.service-detail li {
  position: relative;
  padding-left: 30px;
  color: #334942;
  line-height: 1.55;
}

.compare-card li::before,
.service-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.compare-card--muted {
  background: #f6f6f2;
}

.compare-card--accent {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
}

.compare-card--accent h3,
.compare-card--accent li {
  color: #ffffff;
}

.service-details {
  padding-top: 20px;
}

.service-detail-list {
  display: grid;
  gap: 20px;
}

.service-detail {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 8px;
  scroll-margin-top: calc(var(--header) + 24px);
}

.service-detail.is-selected {
  border-color: rgba(195, 165, 111, 0.9);
  box-shadow: 0 28px 80px rgba(132, 105, 56, 0.18);
}

.service-detail__head {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 24px;
}

.service-detail__head span {
  margin-bottom: 0;
}

.service-detail__body {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* Team */

.team-card {
  padding: 16px;
  border-radius: 8px;
}

.team-card img {
  margin-bottom: 18px;
}

.team-card strong {
  display: block;
  color: var(--gold-dark);
  line-height: 1.35;
  margin-bottom: 10px;
}

.team-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.partner-mini {
  align-self: stretch;
  padding: 18px;
  border-radius: 8px;
}

.partner-mini img {
  margin-bottom: 18px;
}

.partner-mini strong,
.partner-mini span {
  display: block;
}

.partner-mini strong {
  font-size: 1.2rem;
  color: var(--green-950);
}

.partner-mini span {
  margin-top: 6px;
  color: var(--muted);
}

/* Consultation */

.consultation-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.consultation-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.topic-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 18px;
  border-radius: 6px;
  font-weight: 850;
  transition: 0.18s;
}

.topic-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(195, 165, 111, 0.55);
}

.topic-pill .icon {
  flex: 0 0 34px;
  margin: 0;
  background: transparent;
}

/* Contact */

.contact-panel {
  width: var(--container);
  margin: 0 auto clamp(58px, 7vw, 92px);
  padding: clamp(34px, 7vw, 78px);
  text-align: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 31, 24, 0.95), rgba(21, 83, 63, 0.96)),
    var(--green-900);
}

.contact-panel h2 {
  color: #ffffff;
}

.contact-panel p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.76);
}

.telegram-handle {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

/* Footer */

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.75fr 1.35fr;
  gap: 32px;
  padding: 52px max(20px, calc((100vw - 1180px) / 2)) 34px;
  color: rgba(255, 255, 255, 0.78);
  background: #151d2b;
}

.site-footer h3 {
  color: var(--gold);
  font-size: 1rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 8px;
  font-size: 0.94rem;
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.footer__brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer__brand img {
  width: 180px;
  height: auto;
  border-radius: 0;
}

.footer__brand strong,
.footer__brand span {
  display: block;
}

.footer__telegram {
  font-weight: 900;
}

.footer__bottom {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

/* Animation */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s, transform 0.65s;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Tablet */

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    position: fixed;
    top: var(--header);
    left: 20px;
    right: 20px;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .menu-open .nav {
    display: grid;
  }

  .nav a:not(.button),
  .nav .button {
    justify-content: flex-start;
    width: 100%;
    min-height: 52px;
    padding: 15px 16px;
    border-radius: 4px;
  }

  .lang-switch {
    justify-self: end;
  }

  .menu-toggle {
    display: block;
  }

  .services-grid,
  .benefits-grid,
  .topic-grid,
  .metrics-grid,
  .process-row,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .consultation-hero,
  .service-detail__body {
    grid-template-columns: 1fr;
  }

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

/* Mobile */

@media (max-width: 720px) {
  :root {
    --container: min(calc(100% - 28px), 1180px);
    --header: 72px;
  }

  .site-header {
    gap: 10px;
  }

  .brand__logo {
    width: clamp(170px, 52vw, 230px);
    max-height: 56px;
  }

  .lang-switch {
    transform: scale(0.88);
    transform-origin: right center;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero__media img {
    width: 100%;
    object-position: 68% center;
  }

  .hero__shade {
    background:
      linear-gradient(
        180deg,
        rgba(7, 31, 24, 0.42),
        rgba(7, 31, 24, 0.93) 56%,
        rgba(7, 31, 24, 0.96)
      );
  }

  .hero__inner {
    width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding: 46vh 0 48px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 14vw, 4.2rem);
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .lead {
    font-size: 1.02rem;
  }

  .hero__actions {
    display: grid;
  }

  .services-grid,
  .benefits-grid,
  .topic-grid,
  .process-row,
  .team-grid,
  .testimonial-grid,
  .metrics-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .trust-line {
    width: 100%;
    border-radius: 6px;
    line-height: 1.45;
  }

  .section {
    padding: 58px 0;
  }

  .service-card {
    min-height: 220px;
    padding: 24px;
  }

  .about-card,
  .service-detail__head {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    margin-bottom: 48px;
    padding: 34px 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

/* Home rebuild sections */

.role-section,
.values-section,
.reviews-section {
  padding-top: clamp(70px, 8vw, 120px);
  padding-bottom: clamp(70px, 8vw, 120px);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.role-card {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(15, 61, 46, 0.12);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--soft);
}

.role-card h3 {
  margin-bottom: 20px;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

.role-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.role-card li {
  position: relative;
  padding-left: 28px;
  color: #334942;
  line-height: 1.55;
}

.role-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-700);
}

.role-card--muted {
  background: #f7fbf8;
}

.role-card--accent {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
}

.role-card--accent h3,
.role-card--accent li {
  color: #ffffff;
}

.role-card--accent li::before {
  background: var(--mint-100);
}

.values-section {
  width: 100%;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(244, 251, 247, 0.94), rgba(255, 255, 255, 0.92));
}

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

.value-card {
  min-height: 235px;
  padding: 30px;
  border: 1px solid rgba(15, 61, 46, 0.1);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--soft);
}

.value-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold-dark);
  font-weight: 950;
  letter-spacing: 0.12em;
}

.value-card p {
  margin-bottom: 0;
}

.reviews-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 370px);
  gap: 22px;
  overflow-x: auto;
  padding: 8px 4px 18px;
  scroll-snap-type: x mandatory;
}

.review-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(15, 61, 46, 0.1);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--soft);
  scroll-snap-align: start;
}

.stars {
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}

.review-card p {
  color: #334942;
  font-style: italic;
}

.review-card strong {
  display: block;
  margin-top: 18px;
  color: var(--green-800);
}

@media (max-width: 900px) {
  .role-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .reviews-row {
    grid-auto-columns: minmax(280px, 86vw);
  }
}
